:root{--card-bg:#fff;--muted:#666;--accent:#ff6600}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;background:#f3f4f6;margin:0;color:#222}.container{max-width:1100px;margin:20px auto;padding:16px}.head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}.view-cart{text-decoration:none;padding:6px 10px;background:var(--accent);color:#fff;border-radius:6px}.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:14px}.product-card{background:var(--card-bg);border-radius:8px;padding:12px;box-shadow:0 2px 8px rgba(0,0,0,0.05)}.title{font-size:16px;margin:0 0 8px 0}.product-body{display:flex;flex-direction:column;gap:10px}.selected-area{display:flex;gap:10px;align-items:center}.selected-area img.selectedImg{width:100px;height:100px;object-fit:cover;border-radius:6px;border:1px solid #ddd}.summary{font-size:14px;color:var(--muted)}.price-ranges{display:flex;flex-wrap:wrap;gap:6px}.range-line{font-size:13px;color:var(--muted);background:#fafafa;padding:6px;border-radius:6px;border:1px solid #eee;display:flex;gap:8px;align-items:center}.thumbs{display:flex;gap:10px;flex-wrap:wrap}.imaginfd{border:1px solid #ddd;padding:8px;border-radius:6px;text-align:center;transition:all .18s ease;background:#fff;display:flex;width:95%;justify-content: space-between}.imaginfd.active{border:2px solid var(--accent);box-shadow:0 6px 14px rgba(255,102,0,0.08)}.thumb-imgs{width:100px;height:100px;object-fit:cover;display:block;margin-bottom:6px}.quantity-box { display: flex;gap: 6px;align-items: center;justify-content: center;border: 1px solid #ccc; height: 23px;}.qty-btn{border:none;background:#f0f0f0;padding:4px 8px;border-radius:4px;cursor:pointer;font-weight:700}.qty-btn:active{transform:translateY(1px)}.bulk-actions{margin-top:14px;text-align:right}button.primary{background:var(--accent);color:#fff;border:none;padding:9px 14px;border-radius:6px;cursor:pointer}button.primary.disabled{opacity:.5;cursor:not-allowed}.no-range,.no-image{color:var(--muted);font-size:13px;padding:6px}
input.quantity {
    width: 26px;
    border: none;
}

/* Mobile + tablet pe sticky bottom */
@media (max-width: 1024px) {
  .bulk-actions {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom, 0);
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 10px 15px calc(env(safe-area-inset-bottom, 0) + 10px);
    z-index: 9999;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  }
.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 16px;
    margin-bottom: 98px;
}
  .bulk-actions button.primary {
    width: 100%;
    max-width: 760px;  /* optional max-width for tablets */
    margin: 0 auto;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
  }

  .bulk-actions button.primary:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
}
/* Sticky header */
.head {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  padding: 10px 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.head .view-cart {
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    background-color: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
    margin-left: auto;
    margin-right: 43px;
}

.head .view-cart:hover {
  background-color: #0056b3;
}

/* Optional: adjust for small mobile screens */
@media (max-width: 480px) {
  .head {
    padding: 8px 10px;
justify-content: space-between;
  }

  .head .view-cart {
    font-size: 14px;
    padding: 6px 12px; 
margin-left: 65px;
}
}
.head {
    height: 42px;
    border-radius: 5px;
}
