:root{
  --bg:#ffffff;
  --txt:#111111;
  --muted:#6b7280;
  --header:#0b0b0b;
  --line:rgba(255,255,255,.08);
  --white:#ffffff;
  --red:#d3043c;
  --shadow:0 10px 30px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--txt);font-family:Inter,Arial,sans-serif}

/* ===== HEADER DESKTOP / TABLET HORIZONTAL / TV ===== */
.md-header{
  position:fixed;
  top:18px;
  left:0;
  width:100%;
  z-index:1000;
  padding:0 14px;
}

.md-header-wrap{
  max-width:1180px;
  margin:0 auto;
  min-height:68px;
  background:rgba(26, 26, 26, 0.218);
  backdrop-filter:blur(22px) saturate(180%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.22);
  padding:10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.md-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
  flex:0 0 auto;
}

.md-logo img{
  height:34px;
  width:auto;
  display:block;
}

.md-nav-desktop{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex:1 1 auto;
}

.md-nav-desktop a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

.md-nav-desktop a:hover{
  color:#fff;
}

.md-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.md-login{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

.md-login:hover{
  color:#fff;
}

.md-btn-service{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#000;
  text-decoration:none;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
}

.md-cart{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  text-decoration:none;
}

.md-cart svg{
  width:20px;
  height:20px;
  fill:#fff;
}

.md-cart-badge{
  position:absolute;
  top:-5px;
  right:-4px;
  min-width:18px;
  height:18px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-size:10px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 5px;
  line-height:1;
}

.md-cart-badge.is-hidden{
  display:none;
}

.md-menu-toggle{
  display:none;
  width:42px;
  height:42px;
  padding:0;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  border-radius:50%;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}

.md-menu-toggle span{
  width:16px;
  height:2px;
  background:#fff;
  display:block;
  border-radius:10px;
}

.md-mobile-panel{
  max-width:1180px;
  margin:10px auto 0;
  background:rgba(0,0,0,.96);
  border-radius:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
  max-height:0;
  opacity:0;
  pointer-events:none;
  transition:max-height .35s ease, opacity .25s ease;
}

.md-mobile-panel.is-open{
  max-height:420px;
  opacity:1;
  pointer-events:auto;
}

.md-nav-mobile{
  display:flex;
  flex-direction:column;
  padding:12px;
}

.md-nav-mobile a{
  color:#fff;
  text-decoration:none;
  padding:14px 10px;
  border-radius:12px;
}

.md-mobile-divider{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:8px 0;
}

/* ===== HERO ===== */
.md-hero,.pf-hero,.gl-hero,.bio-hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.md-hero picture,.md-hero img,
.pf-hero picture,.pf-hero img,
.gl-hero picture,.gl-hero img,
.bio-hero picture,.bio-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.md-hero-overlay,.pf-hero-overlay,.gl-hero-overlay,.bio-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.65),rgba(0,0,0,.2),rgba(0,0,0,.1));
}

.md-hero-content,.pf-hero-content,.gl-hero-content,.bio-hero-content{
  position:absolute;
  bottom:12%;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  color:#fff;
  max-width:700px;
  padding:0 20px;
  width:100%;
}

.md-hero-content h1,.pf-hero-content h1,.gl-hero-content h1,.bio-hero-content h1{
  font-size:48px;
  margin-bottom:10px;
}

.md-hero-content p,.pf-hero-content p{
  font-size:16px;
  opacity:.9;
  margin-bottom:20px;
}

.md-hero-btn,.pf-cta-btn,.gl-cta-btn,.bio-cta-btn{
  display:inline-block;
  background:#fff;
  color:#000;
  padding:12px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.md-footer-index{
  width:100%;
  text-align:center;
  padding:20px 15px;
  font-size:12px;
  color:#9ca3af;
  background:transparent;
}

.md-footer-index a{
  color:#111;
  text-decoration:none;
  margin-left:6px;
}

/* ===== BANNERS ===== */
.md-banners-wrap{
  padding:34px 20px 10px;
}

.md-banners-stack{
  max-width:1170px;
  margin:0 auto;
  display:grid;
  gap:18px;
}

.md-banner-box{
  border-radius:22px;
  overflow:hidden;
  background:#f3f4f6;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.md-banner-link{
  display:block;
}

.md-banner-box picture,
.md-banner-box img{
  display:block;
  width:100%;
}

.md-banner-box picture img{
  width:100%;
  display:block;
  object-fit:cover;
  aspect-ratio:1170/200;
}

/* ===== SLOT ROTATIVO NUEVO ===== */
.md-banner-box-rotative{
  position:relative;
  overflow:hidden;
}

.md-banner-rotator-group{
  position:relative;
  width:100%;
}

.md-banner-group-slide{
  display:none;
  width:100%;
}

.md-banner-group-slide.is-active{
  display:block;
}

.md-banner-group-slide picture,
.md-banner-group-slide img{
  display:block;
  width:100%;
}

.md-banner-group-slide picture img{
  width:100%;
  display:block;
  object-fit:cover;
  aspect-ratio:1170/200;
}

/* ===== PORTAFOLIO ===== */
.pf-scroll-link{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  opacity:.88;
}

.pf-search-wrap{
  padding:24px 20px 10px;
}

.pf-search-box{
  max-width:1170px;
  margin:0 auto;
  position:relative;
}

.pf-search-box input{
  width:100%;
  height:56px;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:0 50px 0 18px;
  font-size:15px;
  outline:none;
}

#pfClearSearch{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:transparent;
  font-size:18px;
  cursor:pointer;
  color:#6b7280;
}

.pf-grid-wrap,.gl-grid-wrap,.bio-grid-wrap{
  padding:20px;
}

.pf-grid,.gl-grid,.bio-grid{
  column-count:1;
  column-gap:18px;
  max-width:1170px;
  margin:0 auto;
}

.pf-card,.gl-item,.gl-item-link,.bio-item{
  position:relative;
  display:block;
  margin:0 0 18px;
  border-radius:18px;
  overflow:hidden;
  break-inside:avoid;
  background:#f3f4f6;
  text-decoration:none;
}

.pf-card img,.gl-item img,.gl-item-link img,.bio-item img{
  width:100%;
  display:block;
}

.pf-card-overlay,.bio-caption{
  position:absolute;
  inset:auto 0 0 0;
  padding:18px 16px 16px;
  color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.12), transparent);
}

.pf-card-title{
  display:block;
  font-size:16px;
  font-weight:600;
}

.pf-card-cat{
  display:block;
  margin-top:5px;
  font-size:12px;
  opacity:.88;
}

.pf-hidden-card{
  display:none;
}

.pf-loadmore-wrap{
  max-width:1170px;
  margin:18px auto 0;
  text-align:center;
}

.pf-loadmore-btn{
  border:0;
  background:#111;
  color:#fff;
  border-radius:999px;
  padding:14px 22px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}

/* ===== ARTICLE / COPY ===== */
.gl-article,.bio-copy-section{
  padding:56px 20px 20px;
}

.gl-article-wrap,.bio-copy-wrap{
  max-width:900px;
  margin:0 auto;
}

.gl-article-wrap h2,.bio-copy-wrap h2{
  margin:0 0 18px;
  font-size:30px;
  line-height:1.15;
}

.gl-copy,.bio-copy{
  color:#4b5563;
  font-size:16px;
  line-height:1.85;
}

.gl-video,.bio-video{
  padding:20px;
}

.gl-video-wrap,.bio-video-wrap{
  max-width:1100px;
  margin:0 auto;
  border-radius:24px;
  overflow:hidden;
  background:#000;
}

.gl-video-wrap iframe,.bio-video-wrap iframe{
  width:100%;
  aspect-ratio:16 / 9;
  display:block;
}

/* ===== CTA ===== */
.pf-cta-final,.gl-cta-final,.bio-cta-final{
  padding:60px 20px 30px;
}

.pf-cta-box,.gl-cta-box,.bio-cta-box{
  max-width:1170px;
  margin:0 auto;
  background:#0b0b0b;
  color:#fff;
  border-radius:28px;
  padding:42px 28px;
  text-align:center;
}

.pf-cta-box small,.gl-cta-box small,.bio-cta-box small{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.68);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.pf-cta-box h2,.gl-cta-box h2,.bio-cta-box h2{
  margin:0 0 10px;
  font-size:36px;
}

.pf-cta-box p,.gl-cta-box p,.bio-cta-box p{
  margin:0 0 18px;
  color:rgba(255,255,255,.82);
}

/* ===== FOOTERS ===== */
.pf-footer,.gl-footer,.bio-footer{
  padding:20px 20px 40px;
  text-align:center;
}

.pf-socials,.gl-socials,.bio-socials{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.pf-socials a,.gl-socials a,.bio-socials a,
.pf-footer a,.gl-footer a,.bio-footer a{
  color:#111;
  text-decoration:none;
}

.pf-footer p,.gl-footer p,.bio-footer p{
  margin:8px 0;
  color:#6b7280;
  font-size:13px;
}

.pf-verse,.gl-verse,.bio-verse{
  font-style:italic;
}

/* ===== MASONRY ===== */
@media (min-width:768px){
  .pf-grid,.gl-grid,.bio-grid{column-count:2}
}

@media (min-width:1100px){
  .pf-grid,.gl-grid,.bio-grid{column-count:3}
}

@media (min-width:1800px){
  .pf-grid,.gl-grid,.bio-grid{column-count:4}
}

/* ===== TABLET VERTICAL + MOBILE ===== */
@media (max-width:980px){
  .md-header{
    top:12px;
    padding:0 12px;
  }

  .md-header-wrap{
    max-width:100%;
    min-height:auto;
    background:transparent;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    border:0;
    box-shadow:none;
    border-radius:0;
    padding:0;
  }

  .md-nav-desktop,
  .md-login,
  .md-btn-service{
    display:none;
  }

  .md-logo img{
    height:30px;
  }

  .md-actions{
    gap:10px;
  }

  .md-cart{
    width:40px;
    height:40px;
    background:rgba(26, 26, 26, 0.218);
    backdrop-filter:blur(22px) saturate(180%);
    -webkit-backdrop-filter:blur(18px) saturate(160%);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:
      0 10px 30px rgba(0,0,0,.12),
      inset 0 1px 0 rgba(255,255,255,.22);
  }

  .md-menu-toggle{
    display:flex;
    width:42px;
    height:42px;
    background:rgba(26, 26, 26, 0.218);
    backdrop-filter:blur(22px) saturate(180%);
    -webkit-backdrop-filter:blur(18px) saturate(160%);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:
      0 10px 30px rgba(0,0,0,.12),
      inset 0 1px 0 rgba(255,255,255,.22);
  }

  .md-mobile-panel{
    margin:12px 0 0;
    border-radius:18px;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
}

/* ===== TEXTOS RESPONSIVE ===== */
@media (max-width:768px){
  .md-hero-content h1,
  .pf-hero-content h1,
  .gl-hero-content h1,
  .bio-hero-content h1{
    font-size:34px;
  }

  .gl-article-wrap h2,
  .bio-copy-wrap h2{
    font-size:24px;
  }

  .pf-cta-box h2,
  .gl-cta-box h2,
  .bio-cta-box h2{
    font-size:28px;
  }
}

/* ===== MOBILE PEQUEÑO ===== */
@media (max-width:640px){
  .md-header{
    top:12px;
    padding:0 10px;
  }

  .md-logo img{
    height:28px;
  }

  .md-cart{
    width:38px;
    height:38px;
  }

  .md-menu-toggle{
    width:38px;
    height:38px;
  }
}

/* ===== TABLET HORIZONTAL / LAPTOP CHICO ===== */
@media (min-width:981px) and (max-width:1180px){
  .md-header{
    padding:0 12px;
  }

  .md-header-wrap{
    max-width:100%;
  }

  .md-nav-desktop{
    gap:18px;
  }
}
/* ===== Boton Rapido / Store ===== */

.pf-add-btn{
  margin-top:10px;
  background:#fff;
  color:#000;
  border:none;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  cursor:pointer;
}

/* ===== CART ===== */
.cart-shell{
  padding:140px 20px 60px;
}

.cart-wrap{
  max-width:1170px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr .8fr;
  gap:24px;
  align-items:start;
}

.cart-head h1{
  margin:0 0 8px;
  font-size:38px;
  line-height:1.05;
}

.cart-head p{
  margin:0 0 24px;
  color:var(--muted);
  font-size:15px;
}

.cart-list{
  display:grid;
  gap:18px;
}

.cart-item{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:18px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.cart-item-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cart-item-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
}

.cart-item-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
}

.cart-item-top h3{
  margin:0 0 10px;
  font-size:22px;
}

.cart-variants{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.cart-variant{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:#f3f4f6;
  color:#4b5563;
  font-size:12px;
}

.cart-remove-btn{
  border:0;
  background:transparent;
  color:#b91c1c;
  font-size:13px;
  cursor:pointer;
}

.cart-item-bottom{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
}

.cart-qty{
  display:flex;
  align-items:center;
  gap:10px;
}

.cart-qty-btn{
  width:34px;
  height:34px;
  border:1px solid #d1d5db;
  background:#fff;
  border-radius:50%;
  cursor:pointer;
  font-size:18px;
  line-height:1;
}

.cart-prices{
  text-align:right;
}

.cart-prices small{
  display:block;
  color:var(--muted);
  margin-bottom:4px;
}

.cart-prices strong{
  font-size:20px;
}

.cart-summary-card{
  position:sticky;
  top:120px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.cart-summary-card h3{
  margin:0 0 18px;
  font-size:24px;
}

.cart-summary-row,
.cart-summary-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.cart-summary-row{
  padding:10px 0;
  color:#4b5563;
  border-bottom:1px solid #f1f5f9;
}

.cart-summary-total{
  padding:18px 0 10px;
  font-size:18px;
}

.cart-summary-total strong{
  font-size:26px;
}

.cart-summary-actions{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.cart-primary-btn,
.cart-secondary-btn,
.cart-back-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.cart-primary-btn{
  background:#111;
  color:#fff;
}

.cart-secondary-btn,
.cart-back-btn{
  background:#f3f4f6;
  color:#111;
}

.cart-empty{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:34px 24px;
  text-align:center;
}

.cart-empty h2{
  margin:0 0 10px;
}

.cart-empty p{
  margin:0 0 18px;
  color:var(--muted);
}

.is-hidden{
  display:none !important;
}

@media (max-width: 980px){
  .cart-wrap{
    grid-template-columns:1fr;
  }

  .cart-summary-card{
    position:static;
  }
}

@media (max-width: 680px){
  .cart-shell{
    padding:120px 14px 40px;
  }

  .cart-item{
    grid-template-columns:1fr;
  }

  .cart-item-top,
  .cart-item-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .cart-prices{
    text-align:left;
  }

  .cart-head h1{
    font-size:30px;
  }
}

/* ===== CHECKOUT ===== */
.checkout-shell{
  padding:140px 20px 60px;
}

.checkout-wrap{
  max-width:1170px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:start;
}

.checkout-head h1{
  margin:0 0 8px;
  font-size:38px;
  line-height:1.05;
}

.checkout-head p{
  margin:0 0 24px;
  color:var(--muted);
  font-size:15px;
}

.checkout-form{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:24px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
  display:grid;
  gap:16px;
}

.checkout-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.checkout-form label{
  display:grid;
  gap:8px;
}

.checkout-form span{
  font-size:14px;
  font-weight:600;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea{
  width:100%;
  border:1px solid #d1d5db;
  border-radius:16px;
  background:#fff;
  padding:14px 16px;
  outline:none;
  font:inherit;
}

.checkout-form textarea{
  resize:vertical;
  min-height:130px;
}

.checkout-summary-card{
  position:sticky;
  top:120px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.checkout-summary-card h3{
  margin:0 0 18px;
  font-size:24px;
}

.checkout-items{
  display:grid;
  gap:14px;
  margin-bottom:18px;
}

.checkout-item{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid #f1f5f9;
}

.checkout-item-media img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

.checkout-item-body h4{
  margin:0 0 8px;
  font-size:16px;
}

.checkout-variants{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:10px;
}

.checkout-variant{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#f3f4f6;
  color:#4b5563;
  font-size:12px;
}

.checkout-item-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:#4b5563;
}

.checkout-item-meta strong{
  color:#111;
  font-size:15px;
}

.checkout-summary-row,
.checkout-summary-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.checkout-summary-row{
  padding:10px 0;
  color:#4b5563;
  border-bottom:1px solid #f1f5f9;
}

.checkout-summary-total{
  padding:18px 0 10px;
  font-size:18px;
}

.checkout-summary-total strong{
  font-size:26px;
}

.checkout-actions{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.checkout-primary-btn,
.checkout-secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  border:0;
  cursor:pointer;
  font:inherit;
}

.checkout-primary-btn{
  background:#111;
  color:#fff;
}

.checkout-secondary-btn{
  background:#f3f4f6;
  color:#111;
}

.checkout-empty{
  display:grid;
  gap:10px;
}

.checkout-empty p{
  margin:0;
  color:var(--muted);
}

@media (max-width: 980px){
  .checkout-wrap{
    grid-template-columns:1fr;
  }

  .checkout-summary-card{
    position:static;
  }
}

@media (max-width: 680px){
  .checkout-shell{
    padding:120px 14px 40px;
  }

  .checkout-grid{
    grid-template-columns:1fr;
  }

  .checkout-head h1{
    font-size:30px;
  }
}

/* ===== PRODUCTO ===== */
.product-shell{
  padding:140px 20px 60px;
}

.product-wrap{
  max-width:1170px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:start;
}

.product-main-image{
  background:#f3f4f6;
  border-radius:24px;
  overflow:hidden;
}

.product-main-image img{
  width:100%;
  display:block;
  object-fit:cover;
}

.product-thumbs{
  display:flex;
  gap:12px;
  margin-top:14px;
  flex-wrap:wrap;
}

.product-thumb{
  width:84px;
  height:84px;
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  padding:0;
  cursor:pointer;
}

.product-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-category{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:#f3f4f6;
  color:#4b5563;
  font-size:12px;
  margin-bottom:12px;
}

.product-info h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
}

.product-price{
  font-size:30px;
  font-weight:700;
  margin-bottom:16px;
}

.product-short{
  color:#4b5563;
  font-size:15px;
  line-height:1.8;
  margin:0 0 16px;
}

.product-stock{
  margin-bottom:18px;
  font-size:14px;
  font-weight:600;
}

.product-stock.is-in{
  color:#166534;
}

.product-stock.is-out{
  color:#b91c1c;
}

.product-form{
  display:grid;
  gap:16px;
}

.product-form label{
  display:grid;
  gap:8px;
}

.product-form label span{
  font-size:14px;
  font-weight:600;
}

.product-form select,
.product-form input[type="number"]{
  width:100%;
  border:1px solid #d1d5db;
  border-radius:16px;
  background:#fff;
  padding:14px 16px;
  outline:none;
  font:inherit;
}

.product-qty{
  display:grid;
  grid-template-columns:44px 1fr 44px;
  gap:10px;
  align-items:center;
}

.product-qty-btn{
  width:44px;
  height:44px;
  border:1px solid #d1d5db;
  border-radius:50%;
  background:#fff;
  cursor:pointer;
  font-size:20px;
}

.product-actions{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
}

.product-add-btn,
.product-cart-link{
  min-height:50px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:600;
}

.product-add-btn{
  border:0;
  background:#111;
  color:#fff;
  cursor:pointer;
  padding:0 18px;
}

.product-add-btn:disabled{
  opacity:.5;
  cursor:not-allowed;
}

.product-cart-link{
  padding:0 18px;
  background:#f3f4f6;
  color:#111;
}

.product-description{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid #e5e7eb;
}

.product-description h2{
  margin:0 0 12px;
  font-size:24px;
}

.product-description div{
  color:#4b5563;
  line-height:1.9;
}

@media (max-width: 980px){
  .product-wrap{
    grid-template-columns:1fr;
  }
}

@media (max-width: 680px){
  .product-shell{
    padding:120px 14px 40px;
  }

  .product-info h1{
    font-size:32px;
  }

  .product-actions{
    grid-template-columns:1fr;
  }
}

.store-hero-short{
  padding:140px 20px 30px;
}

.store-hero-short__inner{
  max-width:1170px;
  margin:0 auto;
}

.store-hero-short h1{
  margin:0 0 8px;
  font-size:42px;
  line-height:1.05;
}

.store-hero-short p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.store-card{
  position:relative;
}

.store-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.store-card-actions{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  gap:10px;
  z-index:3;
}

.pf-add-btn,
.store-view-btn{
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:0;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:600;
}

.pf-add-btn{
  background:#fff;
  color:#000;
  cursor:pointer;
}

.store-view-btn{
  background:rgba(255,255,255,.18);
  color:#fff;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.store-card .pf-card-overlay{
  padding-bottom:74px;
}

.store-badge-new{
  position:absolute;
  top:14px;
  left:14px;
  z-index:4;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#d3043c;
  color:#fff;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  box-shadow:0 8px 18px rgba(211,4,60,.25);
}

/* ===== New Menu ===== */
.md-store-link,
.md-store-link-mobile{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.md-store-badge-new{
  min-height:20px;
  padding:0 8px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#d3043b;
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:.06em;
  line-height:1;
}

.md-store-link-mobile{
  justify-content:space-between;
}