.product-card .button {
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
}

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --orange: #E85D26;
    --orange-light: #F47A45;
    --orange-pale: #FFF0E8;
    --dark: #1A1A1A;
    --gray-dark: #3D3D3D;
    --gray-mid: #6B6B6B;
    --gray-light: #B0B0B0;
    --gray-bg: #F4F4F2;
    --white: #FFFFFF;
    --border: #E8E8E4;
    --sale-green: #2A9D59;
    --badge-hot: #E03030;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.07);
    --shadow-hover: 0 8px 32px rgba(232,93,38,0.18);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--gray-bg);
    color: var(--dark);
  }

  /* ── PAGE WRAPPER ── */
  .shop-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 64px;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 55px;
  }
  .breadcrumb a { color: var(--gray-mid); text-decoration: none; }
  .breadcrumb a:hover { color: var(--orange); }
  .breadcrumb span { color: var(--gray-light); }

  /* ── PAGE TITLE ── */
  .page-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
  }

  /* ── LAYOUT ── */
  .shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
  }

  /* ══════════════════════════
     SIDEBAR
  ══════════════════════════ */
  .sidebar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--border);
    position: sticky;
    top: 24px;
  }

  .sidebar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 16px;
  }

  .filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .filter-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
  }

  .filter-list li a:hover,
  .filter-list li.active a {
    background: var(--orange-pale);
    color: var(--orange);
  }

  .filter-list li.active a { font-weight: 700; }

  .filter-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
  }

  .filter-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
  }

  /* ══════════════════════════
     MAIN CONTENT
  ══════════════════════════ */
  .shop-main {}

  /* Toolbar */
  .shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
  }

  .results-count {
    font-size: 13px;
    color: var(--gray-mid);
  }

  .results-count strong { color: var(--dark); }

  .sort-select {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 28px 7px 12px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
  }

  /* ── PRODUCT GRID ── */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* ── PRODUCT CARD ── */
  .product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
  }

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

  /* Badge */
  .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 20px;
    z-index: 2;
  }

  .badge-sale { background: var(--sale-green); color: #fff; }
  .badge-hot  { background: var(--badge-hot); color: #fff; }
  .badge-new  { background: var(--orange); color: #fff; }

  /* Stars */
  .card-stars {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    padding: 3px 8px;
    font-size: 11px;
  }

  .star { color: #F5A623; }
  .star-count { color: var(--gray-mid); font-size: 10px; font-weight: 600; }

  /* Image area */
  .card-img-wrap {
    background: #F9F7F4;
    padding: 28px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    position: relative;
  }

  .card-img-wrap img {
    width: 90px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.10));
    transition: transform var(--transition);
  }

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

  /* Multi-product stacked */
  .card-img-stack {
    position: relative;
    width: 140px;
    height: 110px;
  }

  .card-img-stack img {
    position: absolute;
    width: 70px;
    height: 90px;
  }

  .card-img-stack img:nth-child(1) { left: 0; top: 10px; z-index: 1; }
  .card-img-stack img:nth-child(2) { left: 35px; top: 5px; z-index: 2; }
  .card-img-stack img:nth-child(3) { left: 70px; top: 10px; z-index: 1; }

  /* Card body */
  .card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
  }

  .card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    min-height: 36px;
  }

  .card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
  }

  .card-price .original {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-light);
    text-decoration: line-through;
    margin-right: 6px;
  }

  .card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
  }

  .btn-cart {
    flex: 1;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 9px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .filter-icon-img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
}

  .btn-cart:hover {
    background: #C94E1A;
    box-shadow: 0 4px 14px rgba(232,93,38,0.35);
  }

  .btn-learn {
    background: transparent;
    color: var(--gray-dark);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
    white-space: nowrap;
  }

  .btn-learn:hover {
    border-color: var(--orange);
    color: var(--orange);
  }

  /* ── BANNER (5th position) ── */
  .banner-card {
		grid-column: span 2;
		border-radius: 20px;
		padding: 50px;
		min-height: 320px;
		display: flex;
		align-items: center;
		position: relative;
		overflow: hidden;

		/* BACKGROUND IMAGE */
		background-size: 320px;
		border: 1px solid #a14242;
  }

  .banner-content {
 position: relative;
  z-index: 2;
  max-width: 520px;
}

.banner-title {
  font-size: 34px;
  font-weight: 700;
  color: #0b2c3d;
  margin-bottom: 12px;
}

.banner-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.banner-image {
  position: absolute;
  right: 40px;
  bottom: 0;
}

.banner-image img {
  width: 260px;
  height: auto;
  object-fit: contain;
}

  .banner-card::before {
     content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245,245,245,1) 40%,
    rgba(245,245,245,0.8) 60%,
    rgba(245,245,245,0) 100%
  );
  }

  .banner-card::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(232,93,38,0.15);
    pointer-events: none;
  }

  .banner-vials {
    display: flex;
    align-items: flex-end;
    gap: -8px;
    flex-shrink: 0;
    z-index: 1;
  }

  .banner-vials img {
    width: 54px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)) brightness(1.15);
  }

  .banner-vials img:nth-child(2) { transform: translateY(-8px); }

  .banner-text { z-index: 1; }

  .banner-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 8px;
  }

  .banner-headline {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .banner-subtext {
    font-size: 14px;
    color: #BDBDBD;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 20px;
  }

  .banner-qr-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .banner-qr {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
  }

  .banner-qr svg { width: 40px; height: 40px; }

  .banner-qr-label {
    font-size: 12px;
    color: #BDBDBD;
    line-height: 1.5;
  }

  .banner-qr-label strong { color: var(--white); display: block; }

  .banner-cta {
    margin-left: auto;
    z-index: 1;
    flex-shrink: 0;
  }

  .btn-banner {
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 13px 26px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
    white-space: nowrap;
  }

  .btn-banner:hover {
    background: #C94E1A;
    box-shadow: 0 6px 20px rgba(232,93,38,0.4);
  }

  /* ── PAGINATION ── */
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
  }

  .page-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--gray-dark);
    transition: all var(--transition);
    text-decoration: none;
  }

  .page-btn:hover { border-color: var(--orange); color: var(--orange); }
  .page-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }
  .page-btn.arrow { font-size: 16px; }

  /* SVG placeholder vial */
  .vial-svg { width: 80px; height: 100px; }

  /* Responsive */
  @media (max-width: 960px) {
    .shop-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-card { grid-column: span 2; flex-direction: column; text-align: center; }
    .banner-cta { margin: 0 auto; }
    .banner-qr-row { justify-content: center; }
  }

  @media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
    .banner-card { grid-column: span 1; }
  }