:root {
    --gp-dark:   #1a3a2a;
    --gp-mid:    #2a5a3f;
    --gp-accent: #4a9e6f;
    --gp-light:  #e8f0e9;
    --gp-cream:  #faf8f4;
    --gp-gold:   #c8a84b;
    --gp-text:   #1c1c1c;
    --gp-muted:  #6b7280;
    --gp-border: #e2e8e4;
}


  /* ── Category nav strip ── */
  .cat-nav-strip {
    background: #fff;
    border-bottom: 1px solid var(--gp-border);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .cat-nav-strip::-webkit-scrollbar { display: none; }
  .cat-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 13px;
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
  }
  .cat-pill {
    white-space: nowrap;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    color: var(--gp-muted);
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all .2s;
    flex-shrink: 0;
  }
  .cat-pill:hover { color: var(--gp-dark); border-color: var(--gp-border); }
  .cat-pill.active {
    background: var(--gp-dark);
    color: #fff;
    border-color: var(--gp-dark);
    font-weight: 500;
  }

  /* ── Hero banner ── */
  .cat-hero {
    background: var(--gp-dark);
    padding: 60px 24px;
  }
  .cat-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
	padding: 0 13px;
  }
  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a8d8bc;
    margin-bottom: 12px;
  }
  .hero-title {
    font-family: "Work Sans", sans-serif;
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    color: #6b9e80;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 24px;
  }
  .hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-badge {
    font-size: 12px;
    border: 1px solid #2a5a3f;
    color: #a8d8bc;
    padding: 7px 16px;
    border-radius: 20px;
  }
  .hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 300px;
  }
  .hero-img-block {
    background: #2a5a3f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
  }
  .hero-img-block img { width: 100%; height: 100%; object-fit: cover; }
  .hero-img-block.tall { grid-row: span 2; }
  
	.breadcrumb-bar {
		border-bottom: 1px solid var(--gp-border);
		padding: 14px 0;
	}
  /* ── Breadcrumb ── */
  .breadcrumb {
    /*max-width: 1200px;
    margin: 0 auto;
    padding: 14px 13px;*/
    font-size: 12px;
    color: var(--gp-muted);
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .breadcrumb a { color: var(--gp-muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--gp-dark); }
  .breadcrumb span { color: var(--gp-border); }

  /* ── Main body: sidebar + grid ── */
  .shop-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 13px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
  }

  /* ── Sidebar ── */
  .sidebar { position: sticky; top: 124px; }
  .sidebar-section { margin-bottom: 28px; }
  .sidebar-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gp-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gp-border);
  }
  .filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--gp-text);
    user-select: none;
  }
  .filter-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gp-dark);
    cursor: pointer;
    flex-shrink: 0;
  }
  .filter-check .count {
    margin-left: auto;
    font-size: 11px;
    color: var(--gp-muted);
  }
  .sort-select {
    width: 100%;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 13px;
    font-family: inherit;
    color: var(--gp-text);
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }
  .clear-btn {
    width: 100%;
    background: none;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    padding: 9px;
    font-size: 12px;
    color: var(--gp-muted);
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    margin-top: 8px;
  }
  .clear-btn:hover { border-color: var(--gp-dark); color: var(--gp-dark); }

  /* ── Product main area ── */
  .main-area {}
  .main-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gp-border);
    flex-wrap: wrap;
    gap: 10px;
  }
  .prod-count { font-size: 13px; color: var(--gp-muted); }
  .active-filters { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
  .af-tag {
    font-size: 11px;
    background: var(--gp-light);
    color: var(--gp-dark);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .2s;
  }
  .af-tag:hover { background: #d0e4d4; }
  .af-tag .af-x { font-size: 14px; line-height: 1; }
  .af-clear { font-size: 11px; color: var(--gp-muted); cursor: pointer; text-decoration: underline; }
  .af-clear:hover { color: var(--gp-dark); }

  /* ── Product grid ── */
  .prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .prod-card {
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
  }
  .prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,58,42,.08);
  }
  .prod-card[data-visible="false"] { display: none; }

  .prod-img-wrap {
    background: var(--gp-light);
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    overflow: hidden;
  }
  .prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .prod-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gp-dark);
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
    z-index: 2;
  }
  .prod-badge.new { background: var(--gp-gold); color: #fff; }
  .prod-badge.subscribe { background: var(--gp-accent); }
.quick-view-btn {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(28, 26, 22, .82);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 10px;
	text-align: center;
	border: none;
	width: 100%;
	opacity: 0;
	transition: opacity .2s;
}
.prod-card:hover .quick-view-btn {
    opacity: 1;
}

  .prod-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
  .prod-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-dark);
    margin-bottom: 4px;
  }
  .prod-ingr {
    font-size: 11px;
    color: var(--gp-muted);
    margin-bottom: 8px;
    line-height: 1.5;
    flex: 1;
  }
  .prod-stars {
    color: var(--gp-gold);
    font-size: 11px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .prod-stars span { font-size: 11px; color: var(--gp-muted); }

  .pack-pills {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .pack-pill {
    border: 1px solid var(--gp-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 10px;
    cursor: pointer;
    transition: all .15s;
    color: var(--gp-text);
    background: #fff;
  }
  .badge-out-stock {
    background-color: var(--wc-red);
    color: var(--gp-light);
}
  .pack-pill.active {
    background: var(--gp-dark);
    color: #fff;
    border-color: var(--gp-dark);
  }
  .pack-pill:hover:not(.active) { border-color: var(--gp-accent); }

  .prod-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .price-block {}
  .prod-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--gp-dark);
  }
  .prod-price-sub {
    font-size: 10px;
    color: var(--gp-accent);
    margin-top: 1px;
  }
  .qty-add-row {
    display: flex;
    align-items: center;
    gap: 6px;
  }
.qty-ctrl {
	display: flex;
    align-items: center;
    gap: 0;
}
.qty-btn {
	width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #EDE9DF;
    background: #fff;
    color: #4A4840;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .22s ease;
}
.qty-btn:hover { background: var(--gp-light); }
.qty-num {
    font-size: 13px;
    font-weight: 500;
    color: #1C1A16;
    min-width: 22px;
    text-align: center;
}
  .add-btn, .add-btn-link, .out-stock-btn {
    height: 34px;
    background: var(--gp-dark);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
  }
  .add-btn:hover, .add-btn-link:hover, .out-stock-btn:hover { background: var(--gp-mid); }
  .add-btn.added { background: var(--gp-accent); }
  
  .out-stock-btn {
	  background-color: #a00;
  }
  .out-stock-btn:hover {
	  background-color: #6B7F5E;
  }
.add-btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
}
  /* no results state */
  .no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    display: none;
  }
  .no-results.show { display: block; }
  .no-results h3 { font-size: 18px; color: var(--gp-dark); margin-bottom: 8px; }
  .no-results p { font-size: 14px; color: var(--gp-muted); }

  /* ── SEO section ── */
  .seo-section {
    background: var(--gp-light);
    border-top: 1px solid var(--gp-border);
    padding: 64px 24px;
  }
  .seo-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .seo-block h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--gp-dark);
    margin-bottom: 14px;
  }
  .seo-block p {
    font-size: 14px;
    color: var(--gp-muted);
    line-height: 1.8;
    margin-bottom: 12px;
  }
  .wellness-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .wellness-tag {
    font-size: 12px;
    border: 1px solid var(--gp-border);
    color: var(--gp-dark);
    padding: 6px 14px;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
  }
  .wellness-tag:hover { background: var(--gp-dark); color: #fff; border-color: var(--gp-dark); }

  /* ── Related categories ── */
  .related-section {
    padding: 60px 0px;
    border-top: 1px solid var(--gp-border);
  }
  .related-inner { max-width: 1200px; margin: 0 auto; padding: 0 13px; }
  .section-heading {
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--gp-dark);
    margin-bottom: 6px;
  }
  .section-sub { font-size: 14px; color: var(--gp-muted); margin-bottom: 32px; }
  .rel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .rel-cat-card {
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    display: block;
  }
  .rel-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,58,42,.08);
  }
  .rel-cat-img {
    background: var(--gp-light);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }
  .rel-cat-img img { width: 100%; height: 100%; object-fit: cover; }
  .rel-cat-info { padding: 14px 16px; }
  .rel-cat-name { font-size: 14px; font-weight: 500; color: var(--gp-dark); margin-bottom: 3px; }
  .rel-cat-count { font-size: 12px; color: var(--gp-muted); }

  /* ── Quick view modal ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-img {
    background: var(--gp-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    min-height: 280px;
  }
  .modal-img img { width: 100%; height: 100%; object-fit: cover; }
  .modal-info { padding: 28px 24px; }
  .modal-category { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gp-accent); margin-bottom: 6px; }
  .modal-title { font-family: "Work Sans", sans-serif; font-size: 26px; font-weight: 600; color: var(--gp-dark); margin-bottom: 6px; }
  .modal-stars { color: var(--gp-gold); font-size: 13px; margin-bottom: 10px; }
  .modal-ingr { font-size: 12px; color: var(--gp-muted); margin-bottom: 16px; line-height: 1.5; }
  .modal-price { font-size: 22px; font-weight: 500; color: var(--gp-dark); margin-bottom: 16px; }
  .modal-add {
    width: 100%;
    height: 46px;
    background: var(--gp-dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background .2s;
  }
  .modal-add:hover { background: var(--gp-mid); }
  .modal-link { display: block; text-align: center; font-size: 12px; color: var(--gp-muted); text-decoration: underline; cursor: pointer; }
  .modal-link:hover { color: var(--gp-dark); }

  .btn-gp {
    background: var(--gp);
    color: #fff;
    border: none;
}
.btn-gp:hover {
    background: var(--gp-mid);
}
.category-dropdown-wrapper {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}
.cat-dropdown {
    width: 100%;
    border: 1px solid var(--gp-border);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 11px;
    font-family: inherit;
    color: var(--gp-text);
    background-color: #fff;
    cursor: pointer;
}
.cat-dropdown:focus-visible {
    outline: unset;
    border-color: var(--gp);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .cat-hero-inner { grid-template-columns: 1fr; }
    .hero-images { display: none; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .shop-body { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .sidebar-section { display: none; }
    .sidebar-section.mobile-show { display: block; }
    .seo-inner { grid-template-columns: 1fr; gap: 32px; }
    .modal-box { grid-template-columns: 1fr; }
    .modal-img { min-height: 200px; }
    .hero-title { font-size: 36px; }
	.prod-bottom {
		flex-wrap: wrap;
	}
	.breadcrumb-bar {
		padding: 10px 0;
	}
	.shop-body {
		padding-top: 20px;
		padding-bottom: 20px;
		gap: 10px;
	}
	.sidebar-label, .sidebar-section {
		margin-bottom: 8px;
	}
	.related-section {
		padding: 20px 0;
	}
	.section-heading {
		font-size: 28px;
		margin-bottom: 6px;
		line-height: normal;
	}
	.section-sub {
		font-size: 12px;
		margin-bottom: 8px;
	}
	.category-dropdown-wrapper {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
	}
}
@media (max-width: 560px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .rel-grid { grid-template-columns: repeat(2, 1fr); }
}