  /* ─── SHOP LAYOUT ─── */
  .shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 3rem;
    padding: 3rem 0 5rem;
    align-items: start;
    width: 100%;
  }

  /* ─── SIDEBAR ─── */
  .sidebar {
    position: sticky;
    top: var(--nav-h, 130px);
    max-height: calc(100vh - var(--nav-h, 130px));
    overflow-y: auto;
  }

  .sidebar-section {
    margin-bottom: 2rem;
  }

  .sidebar-title {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  a.sidebar-title-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s;
  }
  a.sidebar-title-link:hover { color: var(--deep-purple); }

  .cat-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.88rem;
    color: var(--text-mid);
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
  }

  .cat-filter-item:hover { background: rgba(124,92,153,0.08); color: var(--deep-purple); }

  .cat-filter-item.active {
    background: rgba(92,56,120,0.1);
    color: var(--deep-purple);
    font-weight: 700;
  }

  .cat-filter-item .cat-filter-icon { font-size: 1rem; flex-shrink: 0; }

  .cat-count {
    font-size: 0.72rem;
    background: rgba(124,92,153,0.12);
    color: var(--purple);
    border-radius: 50px;
    padding: 2px 8px;
    font-weight: 700;
  }

  .cat-filter-item.active .cat-count {
    background: var(--deep-purple);
    color: white;
  }

  /* Unavailable categories (AND-filter produced zero overlap) */
  .cat-unavailable {
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(124,92,153,0.22);
  }

  .cat-unavailable-label {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem;
  }

  .cat-unavailable-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .cat-unavailable-chip {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: var(--deep-purple);
    background: rgba(124,92,153,0.08);
    border: 1px solid rgba(124,92,153,0.18);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: background .15s, color .15s, border-color .15s;
  }
  .cat-unavailable-chip:hover,
  .cat-unavailable-chip:focus-visible {
    background: rgba(124,92,153,0.18);
    border-color: rgba(124,92,153,0.35);
    color: var(--deep-purple);
    outline: none;
  }

  /* Price filter */
  .price-range {
    padding: 0.5rem 0;
  }

  .price-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.75rem;
  }

  .price-input {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    border: 1.5px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.6rem;
    font-size: 0.82rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
  }

  .price-input:focus { border-color: var(--purple); }

  .price-sep {
    font-size: 0.8rem;
    color: var(--text-light);
    flex-shrink: 0;
  }

  /* Sort */
  .sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .sort-label {
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
  }

  .sort-select {
    border: 1.5px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 0.45rem 2rem 0.45rem 0.9rem;
    font-size: 0.78rem;
    color: var(--text-dark);
    outline: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b5060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.7rem center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
  }

  .sort-select:focus { border-color: var(--purple); }

  /* ─── PRODUCTS AREA ─── */
  .products-area { min-height: 80vh; min-width: 0; width: 100%; background: #f8f0f5; }

  .shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 1rem;
    position: sticky;
    top: var(--nav-h, 130px);
    background: inherit;
    z-index: 10;
    padding: 0.75rem 0;
  }
  .shop-topbar + * {
    margin-top: 1.75rem;
  }

  .shop-topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .shop-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 360px;
  }
  .shop-search-icon {
    position: absolute;
    left: 0.75rem;
    color: var(--text-light);
    pointer-events: none;
  }
  .shop-search-input {
    width: 100%;
    border: 1.5px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 0.5rem 2.2rem 0.5rem 2.2rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: white;
    outline: none;
    transition: border-color 0.2s;
  }
  .shop-search-input:focus { border-color: var(--purple); }
  .shop-search-input::-webkit-search-cancel-button { display: none; }
  .shop-search-clear {
    position: absolute;
    right: 0.5rem;
    width: 22px;
    height: 22px;
    border: none;
    background: rgba(92,56,120,0.1);
    color: var(--deep-purple);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .shop-search-clear:hover { background: rgba(92,56,120,0.2); }

  .results-count {
    font-size: 0.82rem;
    color: var(--text-light);
  }

  .active-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(92,56,120,0.1);
    color: var(--deep-purple);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
  }

  .filter-tag:hover { background: rgba(92,56,120,0.2); }
  .filter-tag .remove { font-size: 0.85rem; line-height: 1; }

  /* View toggle */
  .view-toggle {
    display: flex;
    gap: 4px;
  }

  .view-btn {
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    color: var(--text-light);
  }

  .view-btn.active { background: var(--deep-purple); color: white; border-color: var(--deep-purple); }

  /* Product grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: 100%;
  }

  .products-grid.list-view {
    grid-template-columns: 1fr;
  }

  .product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

  .product-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: linear-gradient(145deg, #f8eef5, #ede0f8);
  }

  .product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .product-card:hover .product-img img { transform: scale(1.06); }

  .product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92,56,120,0.35);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .product-card:hover .product-img-overlay { opacity: 1; }

  .overlay-hint {
    font-size: 0.75rem;
    color: white;
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 0.4rem;
    z-index: 1;
    flex-wrap: wrap;
  }

  .product-info { padding: 0.9rem 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }

  .product-cat-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.3rem;
  }

  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    line-height: 1.3;
  }

  .product-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }

  .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--deep-purple);
    font-weight: 700;
  }

  .product-price small {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
  }

  .product-delivery {
    font-size: 0.68rem;
    color: var(--text-light);
    margin-top: 0.3rem;
  }

  .product-delivery::before { content: '📦 '; font-size: 0.75rem; }

  .add-btn {
    position: absolute;
    bottom: 0; right: 0;
    width: 40px; height: 40px;
    border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
    background: var(--deep-purple);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
  }

  .add-btn svg { width: 16px; height: 16px; }
  .add-btn:hover { background: var(--rose); }
  .add-btn:disabled { background: var(--text-light); cursor: not-allowed; }

  /* List view card */
  .products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 160px 1fr;
  }

  .products-grid.list-view .product-img {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    min-width: 0;
    border-radius: 0;
  }

  .products-grid.list-view .product-info {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .products-grid.list-view .product-desc { -webkit-line-clamp: 3; }

  /* ─── EMPTY STATE ─── */
  .empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
    grid-column: 1 / -1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .empty-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
  .empty-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-mid); margin-bottom: 0.5rem; }
  .empty-sub { font-size: 0.85rem; }

  /* ─── LOAD MORE ─── */
  .load-more-wrap { text-align: center; margin-top: 3rem; }

  /* ─── PRODUCT MODAL ─── */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(45,34,40,0.6);
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
  }

  .product-modal {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 60px rgba(45,34,40,0.25);
    transform: scale(0.96) translateY(20px);
    transition: transform 0.3s;
    position: relative;
  }

  .modal-backdrop.open .product-modal {
    transform: scale(1) translateY(0);
  }

  .modal-gallery {
    position: relative;
    background: linear-gradient(145deg, #f8eef5, #ede0f8);
    display: flex;
    flex-direction: column;
    font-size: 6rem;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    overflow: hidden;
    max-height: 90vh;
  }

  .modal-gallery #mainMediaWrap {
    flex: 1;
    min-height: 0;
    aspect-ratio: 1;
  }

  .modal-gallery #mainMediaWrap img,
  .modal-gallery #mainMediaWrap video {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .modal-gallery-thumbs {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    padding: 0.6rem;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
    overflow-x: auto;
  }

  .gallery-thumb {
    width: 42px; height: 42px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    background: rgba(255,255,255,0.8);
  }

  .gallery-thumb.active { border-color: var(--deep-purple); }

  .modal-close {
    position: absolute;
    top: 0; right: 0;
    width: 40px; height: 40px;
    border-radius: 0 var(--radius-xl) 0 var(--radius-lg);
    background: rgba(92,56,120,0.08);
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    line-height: 1;
    color: var(--text-mid);
  }

  .modal-close:hover { background: var(--deep-purple); color: white; }

  /* Product lightbox */
  .product-lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
  }
  .product-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); object-fit: contain; }
  .plb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none; color: white;
    font-size: 2rem; width: 48px; height: 48px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .plb-nav:hover { background: rgba(255,255,255,0.3); }
  .plb-prev { left: 1.5rem; }
  .plb-next { right: 1.5rem; }

  .modal-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
  }

  .modal-badges { display: flex; gap: 0.4rem; margin-bottom: 1rem; flex-wrap: wrap; }

  .modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-purple);
    font-weight: 700;
    margin-bottom: 1.25rem;
  }

  .modal-price small {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
  }

  .modal-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex: 1;
  }

  .modal-meta {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
  }

  .modal-meta-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
  }

  .modal-meta-row:last-child { border-bottom: none; }
  .modal-meta-row span:first-child { color: var(--text-light); }

  .modal-qty {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .qty-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0.3rem 0.5rem;
  }

  .qty-btn {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: none;
    background: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--deep-purple);
    transition: background 0.2s;
    line-height: 1;
  }

  .qty-btn:hover { background: rgba(92,56,120,0.08); }
  .qty-num { font-size: 0.9rem; font-weight: 700; min-width: 24px; text-align: center; color: var(--text-dark); }

  .modal-cta { display: flex; gap: 0.75rem; }

  .modal-cta .btn { flex: 1; justify-content: center; }

  /* ─── Configurable products — buyer configurator ─── */
  .cfg-buyer { margin: 1rem 0 1.25rem; display: flex; flex-direction: column; gap: 0.85rem; }
  .cfg-buyer-label { font-size: 0.7rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.4rem; }
  .cfg-buyer-select { width: 100%; padding: 0.65rem 0.85rem; border: 1.5px solid #e0d4e8; border-radius: 8px; font-size: 0.92rem; font-family: 'Lato', sans-serif; background: #fff; color: var(--text-dark); }
  .cfg-buyer-select:focus { border-color: var(--deep-purple); outline: none; }
  .cfg-buyer-vdesc { font-size: 0.82rem; color: var(--text-mid); margin-top: 0.4rem; line-height: 1.4; font-style: italic; }
  .cfg-buyer-incl { background: #faf6fb; border: 1px solid #ecdef0; border-radius: 10px; padding: 0.7rem 0.85rem; margin-top: 0.7rem; }
  .cfg-buyer-incl-head { font-size: 0.72rem; font-weight: 700; color: var(--deep-purple); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
  .cfg-buyer-incl-row { display: grid; grid-template-columns: 36px 1fr auto; gap: 0.55rem; align-items: center; padding: 0.3rem 0; border-bottom: 1px dashed #ecdef0; }
  .cfg-buyer-incl-row:last-child { border-bottom: none; }
  .cfg-buyer-incl-thumb { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; background: #f0e6f5; }
  .cfg-buyer-incl-thumb-empty { display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #c9a8e0; }
  .cfg-buyer-incl-name { font-size: 0.85rem; color: var(--text-dark); }
  .cfg-buyer-incl-qty { font-size: 0.78rem; color: var(--text-mid); font-weight: 600; }
  .cfg-buyer-pick { background: #faf6fb; border: 1px solid #ecdef0; border-radius: 10px; padding: 0.7rem 0.85rem; margin-top: 0.7rem; }
  .cfg-buyer-pick-head { font-size: 0.72rem; font-weight: 700; color: var(--deep-purple); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.55rem; display: flex; justify-content: space-between; align-items: center; }
  .cfg-buyer-pick-count { font-weight: 600; color: var(--rose); text-transform: none; letter-spacing: 0; }
  .cfg-buyer-pick-empty { font-size: 0.8rem; color: var(--text-light); font-style: italic; padding: 0.5rem 0; }
  .cfg-buyer-pick-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 0.7rem; align-items: center; padding: 0.55rem 0; border-bottom: 1px dashed #ecdef0; }
  .cfg-buyer-pick-row:last-child { border-bottom: none; }
  .cfg-buyer-pick-thumb { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: #f0e6f5; }
  .cfg-buyer-pick-thumb-empty { display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #c9a8e0; }
  .cfg-buyer-pick-name { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
  .cfg-buyer-pick-desc { font-size: 0.76rem; color: var(--text-mid); margin-top: 0.15rem; line-height: 1.35; }
  .cfg-buyer-pick-stock { font-size: 0.7rem; color: var(--gold); margin-top: 0.2rem; font-weight: 600; }
  .cfg-buyer-pick-qty { display: flex; align-items: center; gap: 0.45rem; }
  .cfg-buyer-pick-qty .qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--deep-purple); background: #fff; color: var(--deep-purple); cursor: pointer; font-size: 1rem; line-height: 1; padding: 0; display: flex; align-items: center; justify-content: center; }
  .cfg-buyer-pick-qty .qty-btn:hover { background: rgba(92,56,120,0.08); }
  .cfg-buyer-addons { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.6rem; }
  .cfg-buyer-addon-row { display: grid; grid-template-columns: 22px 44px 1fr auto; gap: 0.6rem; align-items: center; padding: 0.55rem 0.75rem; background: #fff; border: 1.5px solid #ecdef0; border-radius: 10px; cursor: pointer; transition: border-color 0.15s, background 0.15s; }
  .cfg-buyer-addon-row:hover { border-color: #c9a8e0; background: #fbf6fc; }
  .cfg-buyer-addon-row input[type="checkbox"] { accent-color: var(--deep-purple); width: 18px; height: 18px; margin: 0; }
  .cfg-buyer-addon-thumb { width: 44px; height: 44px; border-radius: 7px; object-fit: cover; background: #f0e6f5; }
  .cfg-buyer-addon-thumb-empty { display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #c9a8e0; }
  .cfg-buyer-addon-name { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
  .cfg-buyer-addon-desc { font-size: 0.74rem; color: var(--text-mid); margin-top: 0.15rem; line-height: 1.3; }
  .cfg-buyer-addon-price { font-size: 0.85rem; font-weight: 700; color: var(--rose); }
  .cfg-buyer-validation { font-size: 0.78rem; color: #b94a6c; min-height: 1.1em; }


  /* Custom order notice in modal */
  .custom-notice {
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .custom-notice strong { color: var(--gold); }

  /* Custom disclaimer checkbox */
  .disclaimer-wrap {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(158,76,90,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(158,76,90,0.15);
  }

  .disclaimer-wrap input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--deep-purple);
    width: 16px; height: 16px;
    cursor: pointer;
  }

  .disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  /* ─── MOBILE FILTER TOGGLE ─── */
  .mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
  }

  .mobile-filter-btn:hover { border-color: var(--purple); color: var(--deep-purple); }

  .sidebar-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45,34,40,0.5);
    z-index: 450;
  }

  .sidebar-mobile-overlay.open { display: block; }

  /* ─── SKELETON LOADING ─── */
  .skeleton-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .skeleton-img {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #f0e8f0 25%, #e8dce8 50%, #f0e8f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
  }

  .skeleton-body { padding: 1.1rem 1.4rem 1.4rem; }
  .skeleton-line { height: 12px; border-radius: 6px; background: linear-gradient(90deg, #f0e8f0 25%, #e8dce8 50%, #f0e8f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; margin-bottom: 8px; }
  .skeleton-line.wide { width: 85%; }
  .skeleton-line.mid { width: 60%; }
  .skeleton-line.short { width: 40%; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1280px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 1024px) {
    .shop-layout { grid-template-columns: 220px 1fr; gap: 2rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .shop-layout { grid-template-columns: 1fr; }
    .sidebar {
      position: fixed;
      top: 0; left: 0;
      width: 280px;
      max-height: 100vh;
      background: var(--warm-white);
      z-index: 460;
      padding: 1.5rem 1.5rem 2rem;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform 0.3s;
      box-shadow: 4px 0 20px rgba(45,34,40,0.15);
      border-radius: 0 0 var(--radius-xl) 0;
    }
    .sidebar.mobile-open { transform: translateX(0); }
    .mobile-filter-btn { display: flex; }
    .topbar-sort-view { display: none !important; }
    .sidebar-sort-view { display: block !important; }
    .results-count { display: none; }
    .product-modal { grid-template-columns: 1fr; }
    .modal-gallery { border-radius: var(--radius-xl) var(--radius-xl) 0 0; aspect-ratio: 4/3; }
    .products-grid.list-view .product-card { grid-template-columns: 120px 1fr; }
  }

  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .products-grid.list-view .product-card { grid-template-columns: 1fr; }
    .products-grid.list-view .product-img { aspect-ratio: 16/9; border-radius: var(--radius-lg) var(--radius-lg) 0 0; height: auto; }
  }

/* ─── CATEGORY LANDING ─── shown on /shop with no filter so the visitor
   picks a doorway before the full catalog floods them. Mirrors the
   "Explore the Collection" tiles on the homepage. */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-tile {
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  min-height: 140px;
}
.category-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--deep-purple);
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 4px rgba(255,255,255,0.8);
}
.cat-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; text-shadow: 0 1px 3px rgba(255,255,255,0.7); }
.ct1 { background: linear-gradient(145deg, #f8f0f5, #f0e4ed); }
.ct2 { background: linear-gradient(145deg, #ece8f4, #e2dcee); }
.ct3 { background: linear-gradient(145deg, #f5f0e8, #ede6d8); }
.ct4 { background: linear-gradient(145deg, #e8edf5, #dde4f0); }

.cat-landing-all {
  display: inline-block;
  padding: .7rem 1.5rem;
  border: 1.5px solid var(--deep-purple);
  border-radius: 8px;
  color: var(--deep-purple);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: .9rem;
  transition: background .15s, color .15s;
}
.cat-landing-all:hover { background: var(--deep-purple); color: #fff; }

@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; gap: 1rem; }
  .category-tile { padding: 1.5rem 1.25rem; min-height: 120px; }
}
