/* ── Variables (mirrors style.css) ── */
: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;
    --r: 6px;
}

  /* ── 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); }

  /* ── Product layout ── */
  .product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 13px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  /* ── Image gallery ── */
  .gallery { position: sticky; top: 88px; }
  .main-image {
    background: var(--gp-light);
    border-radius: 16px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    padding: 16px;
  }
  .img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gp-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
	z-index: 9;
  }
  .thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
  }
  .thumb {
    background: var(--gp-light);
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gp-muted);
    overflow: hidden;
  }
  .thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
  .thumb.active { border-color: var(--gp); }
  .thumb:hover { border-color: var(--gp); }

  /* ── Product info ── */
.product-info { padding-top: 8px; }
.prod-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #27723c;
    margin-bottom: 10px;
}
.prod-title {
	font-family: "Work Sans", sans-serif;
	font-size: 38px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--gp);
	margin-bottom: 6px;
}
.prod-tagline {
    font-size: 14px;
    color: var(--gp-muted);
    font-style: italic;
    margin-bottom: 12px;
}
  .stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }
  .stars { color: var(--gp-gold); font-size: 14px; letter-spacing: 1px; }
  .review-count {
    font-size: 12px;
    color: var(--gp-muted);
    text-decoration: underline;
    cursor: pointer;
  }
  .ingredients-preview {
    font-size: 12px;
    color: var(--gp-muted);
    line-height: 1.6;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gp-border);
    margin-bottom: 20px;
  }
  .ingredients-preview strong { color: var(--gp-dark); font-weight: 500; }

  /* ── Size selector ── */
  .option-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gp-muted);
    margin-bottom: 10px;
  }
  .size-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .size-pill {
    border: 1.5px solid var(--gp-border);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gp-text);
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    position: relative;
  }
  .size-pill:hover { border-color: var(--gp-accent); }
  .size-pill.active {
    border-color: var(--gp-dark);
    background: var(--gp-dark);
    color: #fff;
  }
  .size-pill .pill-save {
    font-size: 10px;
    display: block;
    opacity: 0.75;
    margin-top: 1px;
  }
.quantity {
	display: none !important;
}
  /* ── Purchase type ── */
  .purchase-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .purchase-opt {
    border: 1.5px solid var(--gp-border);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    position: relative;
  }
  .purchase-opt:hover { border-color: var(--gp-accent); }
  .purchase-opt.active { border-color: var(--gp-dark); background: var(--gp-cream); }
  .purchase-opt .po-radio {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid var(--gp-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all .2s;
  }
  .purchase-opt.active .po-radio {
    border-color: var(--gp-dark);
    background: var(--gp-dark);
  }
  .purchase-opt.active .po-radio::after {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
  }
  .po-title { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
  .po-sub { font-size: 11px; color: var(--gp-muted); }
  .po-save { font-size: 11px; color: var(--gp-accent); font-weight: 500; }
  .po-price { font-size: 20px; font-weight: 500; color: var(--gp-dark); margin-top: 6px; }
  .po-price .po-original {
    font-size: 13px;
    color: var(--gp-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 4px;
  }
  .frequency-select {
    width: 100%;
    border: 1px solid var(--gp);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 11px;
    font-family: inherit;
    color: var(--gp-text);
    background: #fff;
    margin-top: 8px;
    cursor: pointer;
  }

  /* ── Qty + Add ── */
  .cart-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
  }
.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 {
    flex: 1;
    height: 50px;
    background-color: var(--gp);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .1s;
    letter-spacing: 0.02em;
  }
  .add-btn:hover { background-color: #000; }
  .add-btn:active { transform: scale(0.98); }
  .add-btn.added { background-color: #000; }

  .wishlist-btn {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--gp-border);
    border-radius: 50px;
    background: #fff;
    font-size: 13px;
    color: var(--gp-text);
    font-family: inherit;
    cursor: pointer;
    transition: border-color .2s;
    margin-bottom: 20px;
  }
  .wishlist-btn:hover { border-color: var(--gp-dark); }

  /* ── Trust badges ── */
  .trust-badges {
    display: flex;
    gap: 0;
    border: 1px solid var(--gp-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .trust-badge {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    font-size: 11px;
    color: var(--gp-muted);
    border-right: 1px solid var(--gp-border);
    line-height: 1.4;
  }
  .trust-badge:last-child { border-right: none; }
  .trust-badge .tb-icon { font-size: 18px; margin-bottom: 4px; display: block; }
  .trust-badge strong { display: block; font-size: 11px; font-weight: 500; color: var(--gp-dark); }

  /* ── Divider ── */
  .prod-divider { border: none; border-top: 1px solid var(--gp-border); margin: 20px 0; }

  /* ── Below fold: tabs ── */
  .below-fold {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 13px;
    border-top: 1px solid var(--gp-border);
  }
  .tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--gp-border);
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
  }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 18px 24px;
    font-size: 13px;
    font-family: inherit;
    font-weight: 400;
    color: var(--gp-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    margin-bottom: -1px;
  }
  .tab-btn.active {
    color: var(--gp);
    border-bottom-color: var(--gp);
    font-weight: 500;
  }
  .tab-btn:hover { color: var(--gp); }
  .tab-panel { display: none; padding: 48px 0 0; }
  .tab-panel.active { display: block; }

  /* ── Star Ingredients tab ── */
  .ingr-intro {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
  }
  .ingr-intro h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--gp-dark);
    margin-bottom: 10px;
  }
  .ingr-intro p { font-size: 14px; color: var(--gp-muted); }
  .ingr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .ingr-card {
    border: 1px solid var(--gp-border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    background: var(--gp-cream);
    transition: transform .2s, box-shadow .2s;
  }
  .ingr-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,58,42,.07); }
  .ingr-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gp-light);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
  }
  .ingr-name {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gp-dark);
    margin-bottom: 8px;
  }
  .ingr-benefit { font-size: 12px; color: var(--gp-muted); line-height: 1.6; }

  /* ── Benefits tab ── */
  .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .benefit-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--gp-border);
    border-radius: 12px;
    background: var(--gp-cream);
    align-items: flex-start;
  }
  .benefit-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--gp-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .benefit-text h4 { font-size: 14px; font-weight: 500; color: var(--gp-dark); margin-bottom: 4px; }
  .benefit-text p { font-size: 12px; color: var(--gp-muted); line-height: 1.5; }

  /* ── Nutrition tab ── */
  .nutrition-wrap {
    max-width: 520px;
    border: 3px solid var(--gp-text);
    border-radius: 4px;
    padding: 20px;
  }
  .nutr-title { font-size: 28px; font-weight: 700; border-bottom: 8px solid var(--gp-text); padding-bottom: 4px; margin-bottom: 4px; }
  .nutr-serving { font-size: 12px; border-bottom: 3px solid var(--gp-text); padding-bottom: 8px; margin-bottom: 8px; }
  .nutr-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 3px 0;
    border-bottom: 0.5px solid #ccc;
  }
  .nutr-row.bold { font-weight: 700; }
  .nutr-row.indented { padding-left: 14px; font-size: 12px; }
  .nutr-row.thick { border-bottom: 5px solid var(--gp-text); }
  .nutr-footer { font-size: 10px; color: var(--gp-muted); margin-top: 10px; line-height: 1.5; }

  /* ── Delivery tab ── */
  .delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .delivery-card {
    padding: 24px;
    border: 1px solid var(--gp-border);
    border-radius: 12px;
    background: var(--gp-cream);
  }
  .delivery-card h4 { font-size: 14px; font-weight: 500; color: var(--gp-dark); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
  .delivery-card p { font-size: 13px; color: var(--gp-muted); line-height: 1.6; }

  /* ── FAQ tab ── */
  .faq-list { max-width: 760px; }
  .faq-item { border-bottom: 1px solid var(--gp-border); }
  .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    color: var(--gp-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color .2s;
  }
  .faq-q:hover { color: var(--gp-accent); }
  .faq-icon { font-size: 20px; transition: transform .3s; flex-shrink: 0; color: var(--gp-muted); }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    font-size: 14px;
    color: var(--gp-muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding-bottom .35s;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

  /* ── Reviews tab ── */
  .reviews-summary {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 32px;
    background: var(--gp-cream);
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .reviews-score-big { font-family: "Work Sans", sans-serif; font-size: 72px; font-weight: 600; color: var(--gp-dark); line-height: 1; }
  .reviews-meta { display: flex; flex-direction: column; gap: 4px; }
  .reviews-meta .big-stars { color: var(--gp-gold); font-size: 22px; }
  .reviews-meta p { font-size: 13px; color: var(--gp-muted); }
  .rating-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
  .rating-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gp-muted); }
  .rating-bar-track { flex: 1; height: 6px; background: var(--gp-border); border-radius: 3px; overflow: hidden; }
  .rating-bar-fill { height: 100%; background: var(--gp-gold); border-radius: 3px; transition: width 1s ease; }
  .review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .review-card {
    border: 1px solid var(--gp-border);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
  }
  .rc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
  .rc-stars { color: var(--gp-gold); font-size: 13px; }
  .rc-date { font-size: 11px; color: var(--gp-muted); }
  .rc-title { font-size: 14px; font-weight: 500; color: var(--gp-dark); margin-bottom: 6px; }
  .rc-body { font-size: 13px; color: var(--gp-muted); line-height: 1.6; margin-bottom: 10px; }
  .rc-author { font-size: 12px; color: var(--gp-dark); font-weight: 500; }
  .rc-verified { font-size: 10px; color: var(--gp-accent); margin-left: 6px; }

  /* ── Related products ── */
  .related-section {
    background: #e8f0e9;
    padding: 60px 0;
    margin-top: 60px;
    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: 32px;
    font-weight: 600;
    color: var(--gp-dark);
    margin-bottom: 6px;
	    
  }
  .section-sub { font-size: 14px; color: var(--gp-muted); margin-bottom: 32px; }
  .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .rel-card {
    background: #fff;
    border: 1px solid var(--gp-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .rel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,42,.08); }
  .rel-img {
    background: var(--gp-light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gp-muted);
    position: relative;
  }
  .rel-img img { width: 100%; height: 100%; object-fit: cover; }
  .rel-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--gp-dark);
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .rel-info { padding: 14px 16px 16px; }
  .rel-name { font-size: 14px; font-weight: 500; color: var(--char); margin-bottom: 3px; }
  .rel-ingr { font-size: 11px; color: var(--gp-muted); margin-bottom: 10px; line-height: 1.4; }
  .rel-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
  .rel-price { font-size: 15px; font-weight: 500; color: var(--gp); }
  .rel-add, .rel-add-link {
    background: var(--gp);
    color: #fff;
    border: none;
    border-radius: 20px;
	padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
	width: 100%;
    display: inline-flex;
    justify-content: center;
  }
  .rel-add-disabled {
    background: #a00;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
    display: inline-flex;
    justify-content: center;
}
.rel-add-disabled:hover {
    background-color: #6B7F5E;
}
  .rel-add:hover, .rel-add-link:hover { background: #000; }
.rel-card .qty-ctrl {
    height: 29px;
}
.rel-img a {
    display: block;
    height: 100%;
}
.rel-card .qty-num {
    font-size: 12px;
	line-height: 29px;
}
  
.comment_container img.avatar {
    display: none;
}
.woocommerce-Reviews-title, .tab-panel h2 {
    margin-bottom: 20px;
}

.commentlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.woocommerce #reviews #comments ol.commentlist li {
    margin: 0;
	border: 1px solid var(--gp-border);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0;
    border: unset;
    border-radius: unset;
    padding: unset;
}
.woocommerce #reviews #comments ol.commentlist::after, .woocommerce #reviews #comments ol.commentlist::before, .woocommerce #reviews #comments .commentlist>li::before, .woocommerce #reviews #comments ol.commentlist li .comment-text::after, .woocommerce #reviews #comments ol.commentlist li .comment-text::before, .woocommerce #reviews #comments ol.commentlist li .comment-text::after {
	content: unset;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
	margin: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p:not(:last-child) {
    margin: 0 0 1em;
}
strong.woocommerce-review__author {
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-dark);
    margin-bottom: 6px;
}
.woocommerce-review__published-date {
    font-size: 11px;
    color: var(--gp-muted);
}
.description {
    font-size: 13px;
    color: var(--gp-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}
#description-panel p {
    margin: 0;
}
#description-panel p:not(:last-child), #description-panel ul {
    margin-bottom: 1rem;
}
#description-panel {
	font-size: 14px;
    color: var(--gp-muted);
}
p.woocommerce-verification-required {
	margin-top: 20px;
}
.ingredients-preview p:not(:last-child) {
    margin-bottom: 10px;
}
.load-more-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 26px;
    border-radius: 100px;
    font-family: "Work Sans", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .02em;
    transition: all .22s ease;
    background: #298350;
    color: #fff;
    border: none;
    margin-top: 20px;
}
.load-more-reviews-btn:hover {
    background: #3BA068;
}
.woocommerce-Reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Responsive ── */
  @media (max-width: 900px) {
    .product-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .gallery { position: static; }
    .ingr-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: 1fr; }
    .reviews-summary { flex-direction: column; gap: 24px; }
  }
  
@media (max-width: 768px) {
	.commentlist {
		grid-template-columns: repeat(1, 1fr);
	}
	.product-wrapper {
		padding-bottom: 0;
	}
	.tab-panel {
		padding: 10px 0 0;
	}
	.breadcrumb {
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.product-wrapper {
        gap: 0;
    }
	.prod-category {
		margin-bottom: 6px;
	}
	.prod-title {
        font-size: 22px;
    }
	.stars-row {
		margin-bottom: 8px;
	}
	.po-price {
		font-size: 18px;
		margin: 0 0 6px;
		line-height: normal;
	}
	.ingredients-preview {
		padding-bottom: 12px;
		margin-bottom: 12px;
	}
	.woocommerce div.product form.cart {
		margin: 0;
	}
	span.wc-points-rewards-product-message {
		margin-bottom: 8px;
		font-size: 12px;
		line-height: normal;
	}
	.cart-row {
		margin-bottom: 12px;
	}
	.qty-ctrl {
		height: 34px;
	}
	.qty-num {
		line-height: 34px;
	}
	.add-btn {
		height: 34px;
		font-size: 13px;
	}
	.woocommerce-Reviews-title, .tab-panel h2 {
		margin-bottom: 10px;
		font-size: 18px;
	}
	.commentlist {
		gap: 10px;
	}
	.woocommerce #reviews #comments ol.commentlist li {
		padding: 12px;
	}
	.related-section {
		padding: 20px 0;
		margin-top: 20px;
	}
	.section-heading {
		font-size: 22px;
		line-height: normal;
	}
	.section-sub {
		font-size: 12px;
		margin-bottom: 6px;
	}
}
@media (max-width: 600px) {
    .ingr-grid { grid-template-columns: 1fr; }
    .purchase-options { grid-template-columns: 1fr; }
    .thumbs { grid-template-columns: repeat(4, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .delivery-grid { grid-template-columns: 1fr; }
    .tab-btn { padding: 8px; font-size: 12px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .trust-badge .tb-icon { font-size: 14px; }
	.rel-name {
    font-size: 12px;
	}
}