/** Shopify CDN: Minification failed

Line 609:0 Expected "}" to go with "{"

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

:root {
  --white:    #ffffff;
  --gray-50:  #f7f4f7;
  --gray-100: #ede8ed;
  --gray-200: #d9cfd9;
  --gray-400: #9a8a9a;
  --gray-600: #7a677a;
  --gray-900: #2d142b;
  --black:    #2d142b;
  --accent:   #ed5b6a;
  --accent-h: #d94a59;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 3px; }

/* ── Announcement Bar ── */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 201;
  background: var(--black);
  color: rgba(255,255,255,.75);
  text-align: center;
  font-size: .78rem;
  padding: 8px 16px;
  letter-spacing: .04em;
}
.announcement-bar a { color: var(--accent); text-decoration: none; }

/* ── Navbar ── */
.nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 200;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(0,0,0,.1);
}
.nav-logo {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  background: #fff;
  border-radius: 50%;
  width: 52px; height: 52px;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  transform: scale(1.0) translateY(2%);
  transform-origin: center center;
  display: block;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .84rem; color: rgba(255,255,255,.85);
  text-decoration: none; transition: color .2s;
}
.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--gray-900); }
.nav-btn {
  background: #25d366; color: var(--white) !important;
  padding: 7px 18px; border-radius: 980px;
  font-weight: 500; font-size: .82rem !important;
  transition: background .2s, transform .2s;
}
.nav-btn:hover { background: #1ebe5b !important; transform: scale(1.03); }
@media (max-width: 700px) { .nav-links { display: none; } }
.nav-cart {
  position: relative; display: flex; align-items: center;
  color: rgba(255,255,255,.85); text-decoration: none;
  margin-left: 8px; transition: color .2s;
}
.nav.scrolled .nav-cart { color: var(--gray-600); }
.nav-cart:hover { color: var(--white); }
.nav.scrolled .nav-cart:hover { color: var(--gray-900); }
.nav-cart-count {
  position: absolute; top: -7px; right: -9px;
  background: var(--accent); color: #fff;
  font-size: .62rem; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ── Hero ── */
.hero {
  height: 100vh; min-height: 640px;
  padding-top: 96px;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 0 24px;
}
.hero-image-layer {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  animation: cinematicMove 10s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  filter: contrast(1.02) brightness(0.75);
}
@keyframes cinematicMove {
  0%   { transform: scale(1.08) translate3d(0px,0px,0px); }
  30%  { transform: scale(1.14) translate3d(-1.5%,0px,0px); }
  60%  { transform: scale(1.14) translate3d(1.5%,0px,0px); }
  100% { transform: scale(1.03) translate3d(0px,0px,0px); }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(45,20,43,.55) 0%, rgba(45,20,43,.35) 50%, rgba(45,20,43,.72) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 40%, rgba(0,0,0,.30) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 3; }
.hero-logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%;
  width: 240px; height: 240px;
  overflow: hidden; margin-bottom: 28px;
}
@media (max-width: 600px) {
  .hero-logo-badge { width: 140px; height: 140px; margin-bottom: 20px; }
}
.hero-logo-badge img {
  width: 100%; height: 100%; object-fit: contain;
  transform: scale(1.0) translateY(2%);
  transform-origin: center center; display: block;
}
.hero-slogan {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.025em; color: var(--white); margin-bottom: 18px;
}
.hero-slogan .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 500px; margin: 0 auto 40px;
  line-height: 1.6; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; text-decoration: none; border-radius: 980px; font-weight: 500; transition: all .22s; }
.btn-primary { background: var(--accent); color: var(--white); padding: 13px 26px; font-size: .95rem; }
.btn-primary:hover { background: var(--accent-h); transform: scale(1.03); }
.btn-ghost { color: var(--accent); border: 1px solid rgba(237,91,106,.45); padding: 13px 26px; font-size: .95rem; }
.btn-ghost:hover { border-color: var(--accent); background: rgba(237,91,106,.1); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  animation: hint-bob 2.2s ease-in-out infinite;
}
.hero-scroll-hint span { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); }
@keyframes hint-bob {
  0%,100% { opacity:.8; transform: translateX(-50%) translateY(0); }
  50%      { opacity:.4; transform: translateX(-50%) translateY(7px); }
}

/* ── Proof Band ── */
.proof-band {
  background: var(--white); padding: 44px 0;
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.proof-track {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap; animation: ticker 22s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.proof-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--gray-600); flex-shrink: 0; }
.proof-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── Sections comunes ── */
section { padding: 100px 24px; }
.container { max-width: 1160px; margin: 0 auto; }
.sec-eye { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.sec-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; color: var(--gray-900); margin-bottom: 14px; }
.sec-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 540px; line-height: 1.65; }
.sec-header { text-align: center; margin-bottom: 60px; }
.sec-header .sec-sub { margin: 0 auto; }

/* ── Productos ── */
#productos { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 880px) { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .collection-grid { grid-template-columns: repeat(2,1fr); gap: 10px; padding: 40px 12px 80px; } }


.product-card {
  background: var(--gray-50); border-radius: 22px; overflow: hidden;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
  border: 1px solid transparent; text-decoration: none; display: block; color: inherit;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 24px 64px rgba(0,0,0,.11); border-color: rgba(0,0,0,.06); }
.prod-img { height: 210px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.prod-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.product-card:hover .prod-img img { transform: scale(1.05); }
.prod-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 72px; }
.prod-img { background: var(--white); }
.prod-body { padding: 22px 24px 24px; }
.prod-cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.prod-name { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; letter-spacing: -.01em; }
.prod-desc { font-size: .84rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 18px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); letter-spacing: -.02em; }
.prod-cta {
  display: inline-block; text-decoration: none;
  background: var(--accent); color: var(--white);
  padding: 8px 18px; border-radius: 980px;
  font-size: .8rem; font-weight: 500; transition: background .2s, transform .2s;
}
.prod-cta:hover { background: var(--accent-h); transform: scale(1.05); }

/* ── Features ── */
#nosotros { background: var(--gray-50); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 768px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--white); border-radius: 22px; padding: 40px 28px; text-align: center;
  transition: box-shadow .3s, transform .3s; border: 1px solid var(--gray-100);
}
.feat-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.feat-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.feat-title { font-size: 1.05rem; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
.feat-text { font-size: .88rem; color: var(--gray-600); line-height: 1.65; }

/* ── CTA dark ── */
.cta-dark {
  background: var(--black); padding: 110px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(237,91,106,.15), transparent 70%);
}
.cta-dark .sec-eye { position: relative; }
.cta-dark .sec-title { color: var(--white); position: relative; }
.cta-dark .sec-sub { color: rgba(255,255,255,.55); margin: 0 auto 44px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: var(--white);
  padding: 13px 26px; border-radius: 980px; font-size: .95rem;
  font-weight: 500; text-decoration: none; transition: background .2s, transform .2s;
}
.btn-wa:hover { background: #1da851; transform: scale(1.03); }
.btn-ig {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--white);
  padding: 13px 26px; border-radius: 980px; font-size: .95rem;
  font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,.3); transition: border-color .2s, background .2s;
}
.btn-ig:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Footer ── */
footer {
  background: #1e0d1c; border-top: 1px solid rgba(255,255,255,.08);
  padding: 44px 24px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-logo-img { height: 40px; width: auto; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .8rem; color: var(--gray-400); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.3); text-align: center; }
.footer-policies { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; margin-top: 4px; }

/* ── Reviews ── */
.reviews-section { background: var(--gray-50); }
.reviews-carousel { position: relative; display: flex; flex-direction: column; align-items: stretch; }
.reviews-track-wrap { overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.reviews-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-100);
  font-size: 1.8rem; line-height: 1; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-900); box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: box-shadow .2s, background .2s;
}
.reviews-nav-btn:hover { background: var(--gray-50); box-shadow: 0 4px 18px rgba(0,0,0,.13); }
.reviews-prev { left: -22px; }
.reviews-next { right: -22px; }
@media (max-width: 600px) {
  .reviews-prev { left: 4px; }
  .reviews-next { right: 4px; }
}
.review-card {
  min-width: 100%; padding: 48px 40px;
  background: var(--white); border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.review-stars { font-size: 1.4rem; color: #f5a623; letter-spacing: 3px; }
.review-text {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--gray-600); line-height: 1.75;
  max-width: 680px; font-style: italic;
}
.review-author {
  font-size: .95rem; font-weight: 700; color: var(--gray-900);
}
.review-author span {
  font-weight: 400; color: var(--gray-400); margin-left: 6px;
}
.reviews-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.review-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: background .3s, transform .3s; padding: 0;
}
.review-dot.active { background: var(--accent); transform: scale(1.3); }

/* ── Reveal animations ── */
.reveal, .reveal-up { opacity: 0; transform: translateY(36px); transition: opacity .75s cubic-bezier(.25,.46,.45,.94), transform .75s cubic-bezier(.25,.46,.45,.94); }
.reveal.vis, .reveal-up.vis { opacity: 1; transform: none; }
.sd-1 { transition-delay: .08s; } .sd-2 { transition-delay: .16s; }
.sd-3 { transition-delay: .24s; } .sd-4 { transition-delay: .32s; }
.sd-5 { transition-delay: .40s; } .sd-6 { transition-delay: .48s; }

/* ── Product & Collection pages ── */
.page-hero { background: var(--gray-50); padding: 120px 24px 60px; text-align: center; }
.page-hero .sec-title { margin-bottom: 8px; }
.collection-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding: 60px 24px 100px; max-width: 1160px; margin: 0 auto; }
@media (max-width: 880px) { .collection-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .collection-grid { grid-template-columns: 1fr; } }

/* Product detail */
.product-page { max-width: 1160px; margin: 0 auto; padding: 100px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .product-page { grid-template-columns: 1fr; gap: 32px; } }
.product-gallery img { width: 100%; border-radius: 22px; }
.product-info-page .prod-cat { margin-bottom: 8px; }
.product-info-page h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 16px; }
.product-info-page .price { font-size: 2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 24px; }
.product-info-page .desc { font-size: .95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.btn-buy-now {
  width: 100%; padding: 16px; background: var(--black); color: var(--white);
  border: none; border-radius: 980px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .2s; margin-bottom: 12px;
  margin-top: 20px;
}
.btn-buy-now:hover { background: #1a0a19; transform: scale(1.01); }
.btn-add-cart {
  width: 100%; padding: 16px; background: var(--accent); color: var(--white);
  border: none; border-radius: 980px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .2s; margin-bottom: 12px;
}
.btn-add-cart:hover { background: var(--accent-h); transform: scale(1.01); }
.btn-wa-product {
  width: 100%; padding: 14px; background: #25D366; color: var(--white);
  border: none; border-radius: 980px; font-size: .95rem; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; transition: background .2s;
}
.btn-wa-product:hover { background: #1da851; }

/* Product gallery with arrows */
.prod-gallery-wrap {
  position: relative; margin-bottom: 12px;
}
.prod-main-img {
  border-radius: 22px; overflow: hidden;
  height: 440px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.prod-main-img img {
  width: 100%; height: 100%;
  object-fit: contain; border-radius: 22px;
  display: block;
}
@media (max-width: 768px) { .prod-main-img { height: 300px; } }
.prod-gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 1px solid var(--gray-100);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-900); z-index: 2;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.prod-gallery-btn:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.prod-gallery-prev { left: 12px; }
.prod-gallery-next { right: 12px; }
.prod-gallery-dots {
  display: flex; justify-content: center; gap: 7px; margin-top: 12px;
}
.prod-gdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: background .2s, transform .2s; padding: 0;
}
.prod-gdot.active { background: var(--accent); transform: scale(1.3); }

/* Stars + social proof */
.prod-stars-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.prod-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.prod-reviews-count { font-size: .82rem; color: var(--gray-600); font-weight: 500; }

/* Benefits list */
.prod-benefits {
  list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px;
}
.prod-benefits li {
  font-size: .92rem; color: var(--gray-900); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.benefit-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: #e8f7ef; color: #1a7a4a;
  font-size: .75rem; font-weight: 700; flex-shrink: 0;
}

/* Quantity selector */
.prod-qty-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.prod-qty-label { font-size: .88rem; font-weight: 600; color: var(--gray-900); }
.prod-qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--gray-200); border-radius: 980px; overflow: hidden;
}
.prod-qty-control button {
  width: 36px; height: 36px; background: none; border: none;
  font-size: 1.2rem; cursor: pointer; color: var(--gray-900);
  transition: background .15s;
}
.prod-qty-control button:hover { background: var(--gray-100); }
.prod-qty-control input {
  width: 40px; text-align: center; border: none;
  font-size: .95rem; font-weight: 600; color: var(--gray-900);
  background: none; -moz-appearance: textfield;
}
.prod-qty-control input::-webkit-outer-spin-button,
.prod-qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Product description */
.prod-description {
  margin-bottom: 28px;
  font-size: .93rem; color: var(--gray-600); line-height: 1.75;
  border-top: 1px solid var(--gray-100); padding-top: 24px;
}
.prod-description h3 {
  font-size: 1rem; font-weight: 700; color: var(--gray-900);
  margin: 20px 0 12px;
}
.prod-description ul { list-style: none; padding: 0; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.prod-description ul li { display: flex; align-items: flex-start; gap: 10px; }
.prod-description ul li::before { content: none; }
.prod-description p { margin-bottom: 12px; }
.prod-description .feat-emoji { font-size: 1.1rem; flex-shrink: 0; line-height: 1.6; }

/* Related products */
.related-products-section {
  max-width: 1160px; margin: 0 auto; padding: 60px 24px 0;
}
.related-products-header { text-align: center; margin-bottom: 40px; }
.related-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 768px) { .related-products-grid { grid-template-columns: 1fr; } }
.related-product-card {
  background: var(--gray-50); border-radius: 20px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid var(--gray-100);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.related-product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.related-prod-img {
  height: 180px; background: var(--white);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.related-prod-img img { width: 100%; height: 100%; object-fit: contain; }
.related-prod-info { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.related-prod-name { font-size: .95rem; font-weight: 600; color: var(--gray-900); }
.related-prod-price { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.related-prod-cta {
  display: inline-block; margin-top: 8px;
  background: var(--accent); color: var(--white);
  padding: 8px 18px; border-radius: 980px;
  font-size: .8rem; font-weight: 500; text-align: center;
  transition: background .2s;
}
.related-product-card:hover .related-prod-cta { background: var(--accent-h); }

/* Product page reviews */
.prod-reviews-section {
  max-width: 1160px; margin: 0 auto; padding: 60px 24px 100px;
}
.prod-reviews-header { text-align: center; margin-bottom: 40px; }
.prod-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) { .prod-reviews-grid { grid-template-columns: 1fr; } }
.prod-review-card {
  background: var(--gray-50); border-radius: 20px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--gray-100);
}
.prc-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
.prc-text {
  font-size: .9rem; color: var(--gray-600);
  line-height: 1.7; font-style: italic; flex: 1;
}
.prc-author {
  font-size: .85rem; font-weight: 700; color: var(--gray-900);
}
.prc-author span { font-weight: 400; color: var(--gray-400); margin-left: 5px; }

/* Video strip */
.prod-media-strip {
  display: flex; gap: 10px; overflow-x: auto; padding: 16px 0;
  scrollbar-width: none; margin-top: 16px;
}
.prod-media-strip::-webkit-scrollbar { display: none; }
.prod-media-thumb {
  position: relative; flex-shrink: 0;
  width: 140px; height: 140px; border-radius: 12px; overflow: hidden;
  background: var(--gray-100);
}
.prod-media-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-mute-btn {
  position: absolute; top: 6px; right: 6px;
  background: rgba(0,0,0,.55); border: none; border-radius: 50%;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
}

/* Guarantee strip */
.prod-guarantees {
  display: flex; gap: 0; margin-top: 24px;
  border: 1px solid var(--gray-100); border-radius: 14px; overflow: hidden;
}
.prod-guarantee-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 16px 8px; text-align: center;
  font-size: .75rem; color: var(--gray-600); font-weight: 500;
  border-right: 1px solid var(--gray-100);
}
.prod-guarantee-item:last-child { border-right: none; }
.pg-icon { font-size: 1.3rem; }

/* Cart */
.cart-page { max-width: 800px; margin: 0 auto; padding: 100px 24px; }
.cart-page h1 { font-size: 2.2rem; font-weight: 700; letter-spacing: -.03em; margin-bottom: 40px; }
.cart-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray-100); align-items: center; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; background: var(--gray-50); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-price { color: var(--accent); font-weight: 700; }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-size: 1.2rem; font-weight: 700; }
.btn-checkout { width: 100%; padding: 16px; background: var(--accent); color: var(--white); border: none; border-radius: 980px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.btn-checkout:hover { background: var(--accent-h); }
@media (max-width: 520px) {
 @media (max-width: 520px) {
  .products-grid { grid-template-columns: repeat(2,1fr) !important; gap: 10px; }
  .prod-img { height: 140px; }
  .prod-body { padding: 10px 12px 12px; }
  .prod-desc { display: none; }
  .prod-name { font-size: .9rem; margin-bottom: 6px; }
  .prod-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .prod-price { font-size: .95rem; }
  .prod-cta { font-size: .7rem; padding: 6px 14px; width: 100%; text-align: center; box-sizing: border-box; }
}

