*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --forest:       #2D4A2D;
      --forest-mid:   #3E6B3E;
      --forest-light: #5A8F5A;
      --forest-pale:  #C5D9C0;
      --beige:        #F5F0E8;
      --beige-warm:   #EDE5D5;
      --beige-deep:   #D4C4A8;
      --accent:       #8B6914;
      --accent-light: #C9A84C;
      --cream:        #FAF7F2;
      --text-dark:    #1A2A1A;
      --text-mid:     #3D5C3D;
      --text-muted:   #7A8C7A;
      --white:        #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    
    /* ── SHOP HERO ── */
    .shop-hero {
      background: var(--beige);
      padding: 9rem 2rem 5rem;
      text-align: center;
    }
    .shop-hero-inner { max-width: 640px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--forest-mid);
      margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.75rem;
      justify-content: center;
    }
   

    .shop-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 600; line-height: 1.12;
      color: var(--text-dark); margin-bottom: 1.25rem;
    }
    .shop-hero p {
      font-size: 1.05rem; line-height: 1.8;
      color: var(--text-mid); font-weight: 300;
    }

    /* ── FILTER BAR ── */
    .filter-bar {
  position: static;
  background: var(--white);
  border-bottom: 1px solid rgba(45,74,45,0.1);
  box-shadow: 0 4px 20px rgba(45,74,45,0.06);
}
    .filter-bar-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 2rem;
    }
    .filter-bar-top {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.85rem 0 0;
      border-bottom: 1px solid rgba(45,74,45,0.07);
    }
    .filter-bar-label {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .filter-sort {
      display: flex; align-items: center; gap: 0.75rem;
    }
    .filter-results-count {
      font-size: 0.8rem; color: var(--text-muted); font-weight: 400;
    }
    .sort-select {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem; color: var(--text-mid);
      border: 1px solid var(--beige-deep); border-radius: 0.5rem;
      padding: 0.4rem 0.75rem; background: var(--cream);
      cursor: pointer; outline: none;
    }

    .filter-rows { padding: 0.75rem 0 0.85rem; display: flex; flex-direction: column; gap: 0.6rem; }

    .filter-row {
      display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
    }
    .filter-row-label {
      font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-muted);
      min-width: 82px; flex-shrink: 0;
    }
    .filter-btn {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; font-weight: 400;
      color: var(--text-mid);
      padding: 0.38rem 1rem;
      border-radius: 3rem;
      border: 1px solid var(--beige-deep);
      background: transparent;
      cursor: pointer;
      transition: all 0.18s ease;
      white-space: nowrap;
    }
    .filter-btn:hover {
      border-color: var(--forest);
      color: var(--forest);
    }
    .filter-btn.active {
      background: var(--forest);
      color: var(--white);
      border-color: var(--forest);
    }
    .filter-btn.active:hover {
      background: var(--forest-mid);
      border-color: var(--forest-mid);
    }

    /* ── SHOP BODY ── */
    .shop-body {
      max-width: 1200px; margin: 0 auto;
      padding: 3rem 2rem 6rem;
    }

    /* ── PRODUCT GRID ── */
    .shop-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
    }

    .product-card {
      background: var(--white);
      border-radius: 1.5rem;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      cursor: pointer;
      display: flex; flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(45,74,45,0.12);
    }
    .product-card[style*="display: none"] { display: none !important; }

    .product-image {
      aspect-ratio: 1;
      background: var(--beige-warm);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .product-image img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .product-image-placeholder {
      width: 72px; height: 112px; border-radius: 1rem;
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .product-image-placeholder::after {
      content: '';
      position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
      width: 18px; height: 12px;
      background: var(--beige-deep); border-radius: 4px 4px 0 0;
    }

    .product-badge {
      position: absolute; top: 1rem; left: 1rem;
      font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.3rem 0.85rem;
      border-radius: 2rem;
    }
    .badge-new     { background: var(--forest); color: var(--white); }
    .badge-decant  { background: var(--accent-light); color: var(--white); }
    .badge-preloved { background: var(--beige-deep); color: var(--text-dark); }

    .product-info {
      padding: 1.25rem 1.5rem 1.5rem;
      display: flex; flex-direction: column; flex: 1;
    }
    .product-brand {
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 0.3rem;
    }
    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; color: var(--text-dark);
      margin-bottom: 0.45rem; line-height: 1.3;
    }
    .product-desc {
      font-size: 0.82rem; color: var(--text-muted);
      line-height: 1.65; margin-bottom: 1rem; flex: 1;
    }
    .product-footer {
      display: flex; justify-content: space-between;
      align-items: center; margin-top: auto;
    }
    .product-meta { display: flex; flex-direction: column; gap: 0.1rem; }
    .product-size {
      font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em;
    }
    .product-price {
      font-size: 1.1rem; font-weight: 500; color: var(--forest);
    }
    .add-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--forest); color: var(--white);
      border: none; cursor: pointer; font-size: 1.25rem;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.15s;
      flex-shrink: 0;
    }
    .add-btn:hover { background: var(--forest-mid); transform: scale(1.08); }

    /* ── EMPTY STATE ── */
    .no-results {
      display: none;
      text-align: center; padding: 5rem 1rem;
      grid-column: 1 / -1;
    }
    .no-results.visible { display: block; }
    .no-results h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.75rem;
    }
    .no-results p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

    /* ── LOAD MORE ── */
    .shop-footer {
      text-align: center; margin-top: 3.5rem;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--forest); color: var(--cream);
      padding: 0.9rem 2rem; border-radius: 3rem; font-size: 0.95rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500; text-decoration: none; transition: all 0.25s;
      cursor: pointer; border: none;
    }
    .btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: var(--forest);
      padding: 0.9rem 2rem; border-radius: 3rem; font-size: 0.95rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500; text-decoration: none; transition: all 0.25s;
      border: 1.5px solid var(--forest);
    }
    .btn-outline:hover { background: var(--forest-pale); }

    /* ── BOTTOM BANNER ── */
    .shop-banner {
      background: var(--forest);
      padding: 5rem 2rem;
      text-align: center;
    }
    .shop-banner-inner { max-width: 560px; margin: 0 auto; }
    .shop-banner .section-eyebrow { color: var(--forest-pale); justify-content: center; }
    .shop-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--white); line-height: 1.2; margin-bottom: 1rem;
    }
    .shop-banner p {
      font-size: 1rem; color: var(--forest-pale);
      line-height: 1.8; margin-bottom: 2rem; font-weight: 300;
    }
    .shop-banner .btn-primary {
      background: var(--white); color: var(--forest);
    }
    .shop-banner .btn-primary:hover { background: var(--forest-pale); }

   
    /* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .filter-bar { top: 56px; }
  .filter-row { gap: 0.4rem; }
  .filter-row-label { min-width: 60px; font-size: 0.63rem; }
  .filter-btn { font-size: 0.72rem; padding: 0.32rem 0.8rem; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .product-info { padding: 1rem; }
  .product-name { font-size: 1rem; }
  .product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
  }
  .product-price { font-size: 0.95rem; }
  .product-size { font-size: 0.68rem; }
  .add-btn { width: 32px; height: 32px; font-size: 1.1rem; }
}