*{box-sizing:border-box}
:root{
    --primary:#111111;
    --secondary:#ffffff;
    --text:#111111;
    --muted:#667085;
    --line:#e5e7eb;
    --surface:#ffffff;
    --background:#f7f7f8;
    --cashea:#FFFF45;
}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:var(--background);
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif
}
a{color:inherit}
img{max-width:100%}
button,input{font:inherit}
.site-shell{
    width:min(1120px,100%);
    margin:0 auto;
    background:var(--surface);
    min-height:100vh
}
.store-header{
    position:sticky;
    top:0;
    z-index:30;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line)
}
.header-inner{
    min-height:68px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:10px 18px
}
.store-logo{
    display:flex;
    align-items:center;
    min-width:0;
    text-decoration:none
}
.store-logo img{
    display:block;
    max-width:190px;
    max-height:48px;
    object-fit:contain
}
.store-name{
    font-size:19px;
    font-weight:900;
    letter-spacing:.4px
}
.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex:1;
    justify-content:flex-end
}
.about-link{
    flex:0 0 auto;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    padding:10px 12px;
    border-radius:999px
}
.search-form{
    display:flex;
    align-items:center;
    gap:7px;
    width:min(430px,100%)
}
.search-form input{
    width:100%;
    min-height:42px;
    border:1px solid #d0d5dd;
    border-radius:999px;
    padding:0 15px;
    background:#fff;
    font-size:14px
}
.search-form button{
    min-height:42px;
    border:0;
    border-radius:999px;
    background:var(--primary);
    color:#fff;
    padding:0 16px;
    font-weight:800;
    cursor:pointer
}
main{padding-bottom:46px}
.preview-alert{
    padding:9px 14px;
    background:#fff7d6;
    border-bottom:1px solid #f0df9f;
    text-align:center;
    font-size:11px;
    line-height:1.4;
    color:#594b00;
    font-weight:800
}
.banner-section{padding:14px 0 4px}
.banner-track{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    gap:10px;
    padding:0 14px
}
.banner-track::-webkit-scrollbar{display:none}
.banner-slide{
    flex:0 0 calc(100% - 22px);
    scroll-snap-align:center;
    border-radius:16px;
    overflow:hidden;
    background:#f2f4f7;
    border:1px solid var(--line)
}
.banner-slide a{display:block;text-decoration:none}
.banner-slide img{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:12/5;
    object-fit:contain
}
.categories{padding:18px 14px 8px}
.categories-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:12px
}
.section-title{margin:0;font-size:19px}
.clear-filter{
    color:var(--muted);
    font-size:12px;
    font-weight:800;
    text-decoration:none
}
.story-row{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:2px 0 7px
}
.story-row::-webkit-scrollbar{display:none}
.story{
    flex:0 0 76px;
    text-align:center;
    text-decoration:none
}
.story-ring{
    width:68px;
    height:68px;
    margin:0 auto 7px;
    padding:3px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#c4c4c4)
}
.story.active .story-ring{box-shadow:0 0 0 2px var(--primary)}
.story-ring img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #fff;
    background:#f2f4f7
}
.story span{
    display:block;
    font-size:11px;
    font-weight:800;
    line-height:1.2;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis
}
.brand-intro{
    margin:12px 14px 20px;
    padding:24px;
    border-radius:18px;
    background:#111;
    color:#fff;
    overflow:hidden
}
.brand-eyebrow{
    margin:0 0 8px;
    font-size:11px;
    letter-spacing:1.5px;
    font-weight:900
}
.brand-intro h1{
    margin:0;
    max-width:720px;
    font-size:clamp(26px,4vw,42px);
    line-height:1.03;
    letter-spacing:-1px
}
.brand-intro p{
    max-width:720px;
    margin:14px 0 0;
    color:#d0d5dd;
    font-size:14px;
    line-height:1.55
}
.brand-intro strong{color:var(--cashea)}
.brand-intro a{
    display:inline-flex;
    margin-top:17px;
    padding:10px 14px;
    background:#fff;
    color:#111;
    border-radius:999px;
    text-decoration:none;
    font-size:12px;
    font-weight:900
}
.results-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:12px;
    padding:18px 14px 12px;
    border-top:1px solid #f0f0f0
}
.results-head p{
    margin:4px 0 0;
    color:var(--muted);
    font-size:12px
}
.product-feed{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    padding:0 14px
}
.product-card{
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    background:#fff
}
.product-link{
    display:block;
    text-decoration:none
}
.product-photo{
    position:relative;
    background:#fff;
    aspect-ratio:1/1;
    overflow:hidden
}
.product-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    padding:8px;
    background:#fff
}
.product-body{padding:14px}
.product-category{
    color:var(--muted);
    font-size:10px;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:.6px
}
.product-name{
    margin:5px 0;
    font-size:17px;
    line-height:1.18
}
.inspiration{
    color:var(--muted);
    font-size:12px;
    line-height:1.4;
    min-height:17px
}
.price-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:10px;
    margin-top:12px
}
.usd{
    font-size:21px;
    font-weight:900
}
.ves{
    color:var(--muted);
    font-size:11px;
    text-align:right
}

/* Cashea: compacto y de alta jerarquía */
.cashea{
    display:grid;
    grid-template-columns:104px 1fr;
    gap:8px 11px;
    align-items:center;
    margin-top:12px;
    padding:9px 10px 8px;
    border-radius:13px;
    background:#111;
    color:#fff;
    border:1px solid #111
}
.cashea-brand{
    width:104px;
    min-height:50px;
    border-radius:9px;
    background:var(--cashea);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:5px 8px
}
.cashea-logo{
    display:block;
    width:100%;
    max-height:40px;
    object-fit:contain
}
.cashea-brand-fallback{
    color:#111;
    font-size:15px;
    font-weight:1000;
    letter-spacing:-.3px
}
.cashea-copy{min-width:0}
.cashea-title{
    color:#d0d5dd;
    font-size:9px;
    line-height:1.1;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.45px
}
.cashea-initial{
    display:flex;
    gap:5px;
    align-items:baseline;
    flex-wrap:wrap;
    margin-top:1px
}
.cashea-initial span{
    font-size:10px;
    font-weight:900;
    color:#fff
}
.cashea-initial strong{
    color:var(--cashea);
    font-size:27px;
    line-height:1;
    letter-spacing:-.5px
}
.cashea-legend{
    grid-column:1/-1;
    color:#aeb4bd;
    font-size:8.5px;
    line-height:1.28
}
.stock{
    margin-top:9px;
    color:#067647;
    font-size:11px;
    font-weight:800
}
.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    padding:24px 14px 0;
    flex-wrap:wrap
}
.page-link{
    min-width:40px;
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid #d0d5dd;
    border-radius:10px;
    background:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    padding:0 11px
}
.page-link.active{
    color:#fff;
    background:var(--primary);
    border-color:var(--primary)
}
.empty{
    margin:0 14px;
    padding:46px 20px;
    border:1px dashed #d0d5dd;
    border-radius:16px;
    text-align:center;
    color:var(--muted)
}
.store-footer{
    padding:28px 18px;
    border-top:1px solid var(--line);
    color:var(--muted);
    font-size:12px;
    text-align:center
}
.social-links{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:10px
}
.social-links a{
    font-weight:800;
    text-decoration:none
}

/* Detalle */
.product-detail{padding:16px 14px 40px}
.back-link{
    display:inline-flex;
    margin:4px 0 14px;
    color:var(--muted);
    font-size:13px;
    font-weight:800;
    text-decoration:none
}
.detail-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:22px
}
.gallery-shell{
    position:relative;
    min-width:0
}
.gallery{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--line)
}
.gallery::-webkit-scrollbar{display:none}
.gallery-item{
    flex:0 0 100%;
    scroll-snap-align:start;
    aspect-ratio:1/1;
    background:#fff
}
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:12px;
    display:block;
    background:#fff
}
.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    width:42px;
    height:42px;
    border:1px solid rgba(0,0,0,.12);
    border-radius:50%;
    background:rgba(255,255,255,.94);
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:23px;
    font-weight:900;
    box-shadow:0 4px 16px rgba(0,0,0,.09)
}
.gallery-arrow.prev{left:12px}
.gallery-arrow.next{right:12px}
.gallery-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    padding:11px 0 2px
}
.gallery-dot{
    width:9px;
    height:9px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#d0d5dd;
    cursor:pointer
}
.gallery-dot.active{
    width:22px;
    border-radius:999px;
    background:#111
}
.detail-info{padding:10px 2px}
.detail-category{
    color:var(--muted);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.6px
}
.detail-title{
    margin:7px 0;
    font-size:31px;
    line-height:1.08
}
.detail-price{
    font-size:29px;
    font-weight:900;
    margin:18px 0 2px
}
.detail-ves{
    color:var(--muted);
    font-size:13px
}
.detail-cashea{
    margin:16px 0;
    padding:11px 12px 10px;
    background:#111;
    color:#fff;
    border-radius:14px
}
.detail-cashea-top{
    display:flex;
    align-items:center;
    gap:10px
}
.detail-cashea-brand{
    flex:0 0 128px;
    min-height:55px;
    padding:6px 10px;
    border-radius:9px;
    background:var(--cashea);
    display:flex;
    align-items:center;
    justify-content:center
}
.detail-cashea-brand img{
    max-width:100%;
    max-height:43px;
    object-fit:contain;
    display:block
}
.detail-cashea-label{
    color:#d0d5dd;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.4px
}
.detail-cashea strong{
    display:block;
    color:var(--cashea);
    font-size:31px;
    line-height:1.02;
    margin-top:2px
}
.detail-cashea small{
    display:block;
    margin-top:7px;
    color:#aeb4bd;
    font-size:9px;
    line-height:1.35
}
.specs{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
    margin:18px 0
}
.spec{
    background:#f8fafc;
    border-radius:12px;
    padding:11px
}
.spec span{
    display:block;
    color:var(--muted);
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:4px
}
.spec strong{font-size:13px}
.description{
    color:#344054;
    line-height:1.62;
    font-size:14px;
    white-space:pre-line
}
.whatsapp-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:52px;
    margin-top:20px;
    border-radius:13px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-weight:900
}

/* Nosotros */
.about-page{padding:28px 18px 52px}
.about-hero{
    padding:34px 28px;
    border-radius:20px;
    background:#111;
    color:#fff
}
.about-hero .eyebrow{
    margin:0 0 8px;
    font-size:11px;
    font-weight:900;
    letter-spacing:1.4px
}
.about-hero h1{
    margin:0;
    font-size:clamp(32px,6vw,58px);
    line-height:1;
    letter-spacing:-1.5px
}
.about-hero p{
    max-width:760px;
    margin:17px 0 0;
    color:#d0d5dd;
    font-size:16px;
    line-height:1.6
}
.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:18px
}
.about-card{
    padding:20px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff
}
.about-card h2{
    margin:0 0 9px;
    font-size:18px
}
.about-card p{
    margin:0;
    color:#475467;
    font-size:13px;
    line-height:1.6
}
.about-copy{
    max-width:800px;
    margin:26px auto 0;
    color:#344054;
    font-size:15px;
    line-height:1.75
}
.about-copy h2{
    color:#111;
    margin:28px 0 8px
}

@media(max-width:760px){
    .header-inner{
        align-items:stretch;
        flex-direction:column;
        padding:11px 14px
    }
    .store-logo{
        justify-content:center;
        min-height:42px
    }
    .store-logo img{
        max-width:175px;
        max-height:42px
    }
    .header-actions{
        width:100%;
        flex-direction:column
    }
    .search-form{width:100%}
    .about-link{display:none}
    .banner-section{padding-top:10px}
    .banner-track{padding:0 10px}
    .banner-slide{
        flex-basis:calc(100% - 12px);
        border-radius:13px
    }
    .brand-intro{
        margin-left:10px;
        margin-right:10px;
        padding:20px
    }
    .product-feed{
        grid-template-columns:1fr;
        gap:16px;
        padding:0
    }
    .product-card{
        border-left:0;
        border-right:0;
        border-radius:0
    }
    .product-photo{aspect-ratio:1/1}
    .product-photo img{padding:5px}
    .product-body{padding:14px 16px 18px}
    .product-name{font-size:20px}
    .usd{font-size:24px}
    .cashea-initial strong{font-size:27px}
    .results-head{
        padding-left:16px;
        padding-right:16px
    }
    .detail-grid{grid-template-columns:1fr}
    .product-detail{padding:10px 0 36px}
    .back-link,
    .detail-info{
        margin-left:16px;
        margin-right:16px
    }
    .gallery{
        border-left:0;
        border-right:0;
        border-radius:0
    }
    .gallery-item img{padding:8px}
    .gallery-arrow{
        width:38px;
        height:38px;
        font-size:20px
    }
    .detail-title{font-size:28px}
    .detail-cashea strong{font-size:33px}
    .about-page{padding:16px 12px 42px}
    .about-hero{
        padding:28px 20px;
        border-radius:17px
    }
    .about-grid{grid-template-columns:1fr}
}


/* Promoción temporal */
.promo-media{
    position:absolute;
    top:10px;
    right:10px;
    z-index:8;
    display:flex;
    align-items:flex-start;
    justify-content:flex-end;
    pointer-events:none
}
.promo-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 11px;
    border-radius:999px;
    background:#111;
    color:#ffff45;
    font-size:13px;
    line-height:1;
    font-weight:1000;
    box-shadow:0 4px 14px rgba(0,0,0,.14)
}
.promo-strip{
    width:100%;
    min-height:66px;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    padding:8px 12px;
    border-top:1px solid #eceff3;
    border-bottom:1px solid #eceff3;
    background:#f8fafc
}
.promo-strip-logo{
    min-width:0;
    display:flex;
    align-items:center
}
.promo-strip-logo img{
    display:block;
    width:auto;
    max-width:100%;
    height:46px;
    object-fit:contain;
    object-position:left center
}
.promo-strip-copy{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    line-height:1
}
.promo-strip-copy span{
    color:#667085;
    font-size:9px;
    font-weight:1000;
    letter-spacing:.6px
}
.promo-strip-copy strong{
    margin-top:3px;
    color:#111;
    font-size:24px;
    font-weight:1000
}
.price-stack{
    display:flex;
    flex-direction:column;
    gap:2px
}
.old-price{
    color:#98a2b3;
    font-size:12px;
    font-weight:800;
    text-decoration:line-through
}
.promo-price{
    color:#111;
    font-size:23px;
    line-height:1;
    font-weight:1000
}
.detail-old-price{
    margin-top:17px;
    color:#98a2b3;
    font-size:15px;
    font-weight:800;
    text-decoration:line-through
}
.detail-promo-price{
    margin:2px 0;
    font-size:32px;
    line-height:1;
    font-weight:1000
}
.detail-gallery-promo{
    position:absolute;
    top:14px;
    right:14px;
    z-index:9;
    display:flex;
    justify-content:flex-end;
    pointer-events:none
}
.detail-promo-strip{
    margin-top:8px;
    border:1px solid #e5e7eb;
    border-radius:13px
}
.detail-promo-strip .promo-strip-logo img{
    height:58px
}

@media(max-width:760px){
    .cashea{
        grid-template-columns:112px 1fr
    }
    .cashea-brand{
        width:112px;
        min-height:54px
    }
    .cashea-logo{
        max-height:43px
    }
    .promo-media{
        top:8px;
        right:8px
    }
    .promo-badge{
        font-size:12px;
        padding:7px 9px
    }
    .promo-strip{
        min-height:62px;
        padding:7px 10px
    }
    .promo-strip-logo img{
        height:42px
    }
    .promo-strip-copy strong{
        font-size:22px
    }
    .detail-promo-strip{
        margin:8px 12px 0
    }
}


/* Carrito */
.cart-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:40px;
    padding:0 12px;
    border:1px solid #d0d5dd;
    border-radius:999px;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-size:12px;
    font-weight:1000;
    white-space:nowrap
}
.cart-link.active{
    background:#111;
    color:#fff;
    border-color:#111
}
.cart-count{
    min-width:21px;
    height:21px;
    padding:0 5px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#eef1f4;
    color:#667085;
    font-size:10px;
    line-height:1;
    font-weight:1000
}
.cart-count.has-items{
    background:#ffff45;
    color:#111
}
.product-cart-actions{
    padding:0 14px 14px
}
.add-cart-button{
    width:100%;
    min-height:44px;
    border:0;
    border-radius:11px;
    background:#111;
    color:#fff;
    padding:0 14px;
    font-size:13px;
    font-weight:1000;
    cursor:pointer;
    transition:transform .12s ease,opacity .12s ease
}
.add-cart-button:active{
    transform:scale(.985)
}
.add-cart-button.added{
    background:#ffff45;
    color:#111
}
.detail-buy-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
    margin-top:20px
}
.detail-add-cart{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:52px;
    border:0;
    border-radius:13px;
    background:#111;
    color:#fff;
    padding:0 16px;
    font-weight:1000;
    cursor:pointer
}
.detail-add-cart.added{
    background:#ffff45;
    color:#111
}
.whatsapp-button{
    margin-top:0;
    background:#fff;
    color:#111;
    border:1px solid #d0d5dd
}
.cart-toast{
    position:fixed;
    left:50%;
    bottom:24px;
    z-index:100;
    transform:translate(-50%,20px);
    max-width:min(420px,calc(100% - 28px));
    padding:11px 15px;
    border-radius:999px;
    background:#111;
    color:#fff;
    font-size:12px;
    font-weight:900;
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease,transform .18s ease;
    box-shadow:0 8px 28px rgba(0,0,0,.18)
}
.cart-toast.show{
    opacity:1;
    transform:translate(-50%,0)
}
.hidden{
    display:none!important
}
.cart-page{
    padding:28px 18px 54px
}
.cart-head{
    margin-bottom:19px
}
.cart-eyebrow{
    margin:0 0 7px;
    color:#667085;
    font-size:10px;
    letter-spacing:1.3px;
    font-weight:1000
}
.cart-head h1{
    margin:0;
    font-size:34px;
    letter-spacing:-1px
}
.cart-head p{
    margin:7px 0 0;
    color:#667085;
    font-size:13px
}
.cart-loading,
.cart-empty{
    padding:46px 20px;
    border:1px solid #e5e7eb;
    border-radius:17px;
    background:#fff;
    text-align:center;
    color:#667085
}
.cart-empty h2{
    margin:0 0 8px;
    color:#111;
    font-size:22px
}
.cart-empty p{
    margin:0 auto 18px;
    max-width:430px;
    line-height:1.55
}
.cart-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 330px;
    gap:18px;
    align-items:start
}
.cart-items{
    border:1px solid #e5e7eb;
    border-radius:17px;
    background:#fff;
    overflow:hidden
}
.cart-item{
    display:grid;
    grid-template-columns:112px minmax(0,1fr) auto;
    gap:15px;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #edf0f3
}
.cart-item:last-child{
    border-bottom:0
}
.cart-item-image{
    width:112px;
    height:112px;
    display:block;
    border-radius:13px;
    overflow:hidden;
    background:#fff;
    border:1px solid #edf0f3
}
.cart-item-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:4px;
    display:block
}
.cart-item-image.placeholder{
    background:#f6f7f9
}
.cart-item-main{
    min-width:0
}
.cart-item-category{
    margin-bottom:4px;
    color:#667085;
    font-size:9px;
    font-weight:1000;
    letter-spacing:.6px;
    text-transform:uppercase
}
.cart-item-name{
    color:#111;
    text-decoration:none;
    font-size:17px;
    line-height:1.2;
    font-weight:1000
}
.cart-item-promo{
    display:inline-flex;
    margin-top:7px;
    padding:5px 8px;
    border-radius:999px;
    background:#111;
    color:#ffff45;
    font-size:9px;
    font-weight:1000
}
.cart-item-price{
    display:flex;
    gap:5px;
    align-items:baseline;
    flex-wrap:wrap;
    margin-top:9px
}
.cart-item-price strong{
    font-size:17px
}
.cart-item-price span{
    color:#667085;
    font-size:10px
}
.cart-regular-price{
    width:100%;
    color:#98a2b3;
    font-size:10px;
    font-weight:800;
    text-decoration:line-through
}
.cart-stock-warning{
    margin-top:7px;
    color:#b54708;
    font-size:10px;
    font-weight:800
}
.cart-item-controls{
    display:flex;
    align-items:center;
    gap:9px;
    flex-wrap:wrap;
    margin-top:12px
}
.qty-control{
    display:inline-grid;
    grid-template-columns:34px 38px 34px;
    align-items:center;
    height:36px;
    border:1px solid #d0d5dd;
    border-radius:999px;
    overflow:hidden
}
.qty-control button{
    height:100%;
    border:0;
    background:#fff;
    color:#111;
    font-size:18px;
    cursor:pointer
}
.qty-control span{
    text-align:center;
    font-size:12px;
    font-weight:1000
}
.remove-item{
    border:0;
    background:transparent;
    color:#b42318;
    padding:5px;
    font-size:10px;
    font-weight:900;
    cursor:pointer
}
.cart-item-subtotal{
    min-width:95px;
    text-align:right
}
.cart-item-subtotal span{
    display:block;
    margin-bottom:3px;
    color:#667085;
    font-size:9px;
    font-weight:800
}
.cart-item-subtotal strong{
    font-size:16px
}
.cart-summary{
    position:sticky;
    top:94px;
    padding:19px;
    border:1px solid #e5e7eb;
    border-radius:17px;
    background:#fff
}
.cart-summary h2{
    margin:0 0 16px;
    font-size:20px
}
.summary-line{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:9px 0;
    border-bottom:1px solid #f0f1f3;
    color:#475467;
    font-size:12px
}
.summary-line strong{
    color:#111
}
.summary-line.total{
    padding-top:14px;
    color:#111;
    font-size:15px;
    font-weight:900
}
.summary-line.total strong{
    font-size:24px
}
.summary-note{
    margin:13px 0;
    color:#667085;
    font-size:10px;
    line-height:1.45
}
.checkout-button{
    width:100%;
    min-height:50px;
    border:0;
    border-radius:12px;
    background:#111;
    color:#fff;
    font-size:13px;
    font-weight:1000;
    cursor:pointer
}
.checkout-button:disabled{
    opacity:.6;
    cursor:wait
}
.cart-continue{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 15px;
    border-radius:11px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:1000
}
.cart-continue.secondary{
    width:100%;
    margin-top:8px;
    background:#fff;
    color:#111;
    border:1px solid #d0d5dd
}
.clear-cart-button{
    width:100%;
    margin-top:10px;
    border:0;
    background:transparent;
    color:#b42318;
    padding:7px;
    font-size:10px;
    font-weight:900;
    cursor:pointer
}

@media(max-width:860px){
    .cart-layout{
        grid-template-columns:1fr
    }
    .cart-summary{
        position:static
    }
}
@media(max-width:760px){
    .header-actions{
        gap:8px
    }
    .cart-link{
        align-self:center
    }
    .product-cart-actions{
        padding:0 16px 18px
    }
    .cart-page{
        padding:18px 10px 46px
    }
    .cart-item{
        grid-template-columns:88px minmax(0,1fr);
        gap:11px;
        padding:12px
    }
    .cart-item-image{
        width:88px;
        height:88px
    }
    .cart-item-subtotal{
        grid-column:2;
        text-align:left;
        min-width:0
    }
    .cart-item-subtotal span{
        display:inline;
        margin-right:4px
    }
}
@media(max-width:420px){
    .cart-head h1{
        font-size:30px
    }
    .cart-item{
        grid-template-columns:74px minmax(0,1fr)
    }
    .cart-item-image{
        width:74px;
        height:74px
    }
    .cart-item-name{
        font-size:15px
    }
}


/* Checkout V6 */
.checkout-fields{margin:18px 0 14px;padding:15px;border:1px solid #e5e7eb;border-radius:14px;background:#f8fafc}
.checkout-fields h3{margin:0 0 4px;font-size:16px}
.checkout-fields-intro{margin:0 0 13px;color:#667085;font-size:10px;line-height:1.45}
.checkout-field{margin-top:12px}
.checkout-field:first-of-type{margin-top:0}
.checkout-field label{display:block;margin-bottom:6px;color:#344054;font-size:10px;font-weight:1000;text-transform:uppercase;letter-spacing:.45px}
.checkout-field input[type=text],.checkout-field select{width:100%;min-height:44px;border:1px solid #d0d5dd;border-radius:10px;background:#fff;color:#111;padding:0 11px;font-size:13px}
.checkout-field input:focus,.checkout-field select:focus{outline:2px solid rgba(17,17,17,.1);border-color:#111}
.policy-check{display:flex;align-items:flex-start;gap:8px;margin-top:13px;color:#475467;font-size:10px;line-height:1.45}
.policy-check input{margin:2px 0 0;flex:0 0 auto}
.policy-check a{color:#111;font-weight:900}
.cashea-checkout{margin-top:12px;padding:12px;border:1px solid #111;border-radius:12px;background:#ffff45;color:#111}
.cashea-checkout-head{display:flex;align-items:center;gap:10px;margin-bottom:9px}
.cashea-checkout-logo{flex:0 0 88px;height:40px;display:flex;align-items:center;justify-content:center}
.cashea-checkout-logo img{display:block;width:100%;max-height:38px;object-fit:contain}
.cashea-checkout-logo strong{font-size:14px;font-weight:1000}
.cashea-checkout-title{font-size:13px;font-weight:1000}
.cashea-checkout p{margin:6px 0 0;font-size:10px;line-height:1.45}
.cashea-owner-check{display:flex;align-items:flex-start;gap:8px;margin-top:10px;padding-top:10px;border-top:1px solid rgba(0,0,0,.18);font-size:10px;line-height:1.4;font-weight:900}
.cashea-owner-check input{margin:2px 0 0;flex:0 0 auto}
.restore-cart{margin-top:12px;padding:12px;border:1px solid #e5e7eb;border-radius:12px;background:#fff}
.restore-cart p{margin:0 0 9px;color:#667085;font-size:11px;line-height:1.45}
.restore-cart button{min-height:40px;border:1px solid #d0d5dd;border-radius:10px;background:#fff;color:#111;padding:0 13px;font-size:11px;font-weight:1000;cursor:pointer}
.footer-nav{display:flex;justify-content:center;align-items:center;gap:8px 14px;flex-wrap:wrap;margin-bottom:11px}
.footer-nav a{color:#475467;text-decoration:none;font-weight:800}
.footer-nav a:hover{color:#111}
.info-page{padding:28px 18px 56px}
.info-hero{padding:30px 27px;border-radius:20px;background:#111;color:#fff}
.info-eyebrow{margin:0 0 8px;color:#ffff45;font-size:10px;font-weight:1000;letter-spacing:1.2px}
.info-hero h1{margin:0;max-width:760px;font-size:clamp(31px,5vw,52px);line-height:1.02;letter-spacing:-1.2px}
.info-hero p{max-width:760px;margin:14px 0 0;color:#d0d5dd;font-size:14px;line-height:1.6}
.info-content{width:min(820px,100%);margin:22px auto 0}
.info-section{padding:21px 0;border-bottom:1px solid #e5e7eb}
.info-section:last-child{border-bottom:0}
.info-section h2{margin:0 0 9px;font-size:19px}
.info-section p{margin:7px 0 0;color:#475467;font-size:13px;line-height:1.7}
.info-highlight{margin-top:12px;padding:13px 14px;border-radius:12px;background:#f8fafc;border:1px solid #e5e7eb;color:#344054;font-size:12px;line-height:1.6}
.info-highlight.cashea{display:block;background:#ffff45;color:#111;border-color:#111}
.info-highlight.cashea strong{display:block;margin-bottom:4px}
.delivery-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:18px}
.delivery-card{padding:17px;border:1px solid #e5e7eb;border-radius:14px;background:#fff}
.delivery-card h2{margin:0 0 7px;font-size:17px}
.delivery-card p{margin:0;color:#475467;font-size:12px;line-height:1.6}
@media(max-width:760px){
.info-page{padding:16px 12px 46px}
.info-hero{padding:26px 20px;border-radius:17px}
.delivery-cards{grid-template-columns:1fr}
}


/* V7: Compartir + Emprende */
.share-product-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:46px;
    border:1px solid #d0d5dd;
    border-radius:12px;
    background:#fff;
    color:#111;
    padding:0 15px;
    font-size:12px;
    font-weight:1000;
    cursor:pointer
}
.share-product-button:hover{
    background:#f8fafc
}
.home-entrepreneur{
    margin:0 14px 20px;
    padding:20px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    background:#fff
}
.home-entrepreneur-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:20px;
    align-items:center
}
.home-entrepreneur .eyebrow{
    margin:0 0 7px;
    color:#667085;
    font-size:10px;
    font-weight:1000;
    letter-spacing:1px
}
.home-entrepreneur h2{
    margin:0;
    font-size:23px;
    line-height:1.08
}
.home-entrepreneur p{
    max-width:690px;
    margin:9px 0 0;
    color:#667085;
    font-size:12px;
    line-height:1.55
}
.home-entrepreneur a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 15px;
    border-radius:11px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:1000;
    white-space:nowrap
}
.venture-page{
    padding:28px 18px 58px
}
.venture-hero{
    padding:34px 29px;
    border-radius:20px;
    background:#111;
    color:#fff
}
.venture-hero .eyebrow{
    margin:0 0 8px;
    color:#ffff45;
    font-size:10px;
    font-weight:1000;
    letter-spacing:1.2px
}
.venture-hero h1{
    margin:0;
    max-width:800px;
    font-size:clamp(33px,5vw,56px);
    line-height:1;
    letter-spacing:-1.5px
}
.venture-hero p{
    max-width:780px;
    margin:15px 0 0;
    color:#d0d5dd;
    font-size:14px;
    line-height:1.65
}
.venture-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-top:18px
}
.venture-card{
    padding:22px;
    border:1px solid #e5e7eb;
    border-radius:17px;
    background:#fff
}
.venture-card.featured{
    border-color:#111
}
.venture-tag{
    display:inline-flex;
    margin-bottom:12px;
    padding:6px 9px;
    border-radius:999px;
    background:#f2f4f7;
    color:#475467;
    font-size:9px;
    font-weight:1000;
    letter-spacing:.5px
}
.venture-card.featured .venture-tag{
    background:#ffff45;
    color:#111
}
.venture-card h2{
    margin:0;
    font-size:24px;
    line-height:1.08
}
.venture-card .lead{
    margin:9px 0 0;
    color:#667085;
    font-size:13px;
    line-height:1.6
}
.venture-points{
    margin:17px 0 0;
    padding:0;
    list-style:none
}
.venture-points li{
    position:relative;
    margin-top:9px;
    padding-left:20px;
    color:#344054;
    font-size:12px;
    line-height:1.5
}
.venture-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#111;
    font-weight:1000
}
.venture-price{
    margin-top:18px;
    padding:14px;
    border-radius:13px;
    background:#f8fafc;
    border:1px solid #e5e7eb
}
.venture-price span{
    display:block;
    color:#667085;
    font-size:9px;
    font-weight:1000;
    letter-spacing:.55px;
    text-transform:uppercase
}
.venture-price strong{
    display:block;
    margin-top:2px;
    font-size:29px;
    line-height:1
}
.venture-price small{
    display:block;
    margin-top:7px;
    color:#667085;
    font-size:10px;
    line-height:1.45
}
.venture-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:48px;
    margin-top:18px;
    border-radius:11px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:1000
}
.venture-cta.secondary{
    background:#fff;
    color:#111;
    border:1px solid #d0d5dd
}
.commission-section{
    width:min(880px,100%);
    margin:26px auto 0
}
.commission-section h2{
    margin:0 0 6px;
    font-size:25px
}
.commission-section > p{
    margin:0 0 15px;
    color:#667085;
    font-size:13px;
    line-height:1.6
}
.commission-table-wrap{
    overflow-x:auto;
    border:1px solid #e5e7eb;
    border-radius:15px;
    background:#fff
}
.commission-table{
    width:100%;
    border-collapse:collapse;
    min-width:520px
}
.commission-table th,
.commission-table td{
    padding:13px 15px;
    border-bottom:1px solid #edf0f3;
    text-align:left;
    font-size:12px
}
.commission-table th{
    background:#f8fafc;
    color:#667085;
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:.5px
}
.commission-table tr:last-child td{
    border-bottom:0
}
.commission-table td:last-child{
    font-size:16px;
    font-weight:1000
}
.kit-reward{
    margin-top:16px;
    padding:17px;
    border-radius:15px;
    background:#111;
    color:#fff
}
.kit-reward strong{
    display:block;
    color:#ffff45;
    font-size:18px
}
.kit-reward p{
    margin:7px 0 0;
    color:#d0d5dd;
    font-size:12px;
    line-height:1.55
}
.venture-rules{
    width:min(880px,100%);
    margin:24px auto 0
}
.venture-rules h2{
    margin:0 0 9px;
    font-size:21px
}
.venture-rules p{
    margin:7px 0;
    color:#667085;
    font-size:12px;
    line-height:1.65
}
@media(max-width:760px){
    .home-entrepreneur{
        margin-left:10px;
        margin-right:10px
    }
    .home-entrepreneur-grid{
        grid-template-columns:1fr
    }
    .home-entrepreneur a{
        width:100%
    }
    .venture-page{
        padding:16px 12px 48px
    }
    .venture-hero{
        padding:27px 21px;
        border-radius:17px
    }
    .venture-options{
        grid-template-columns:1fr
    }
}


/* V9: compra mínima Cashea */
.cashea-minimum-status{
    margin-top:11px;
    padding:11px;
    border:1px solid rgba(0,0,0,.18);
    border-radius:10px;
    background:rgba(255,255,255,.36)
}
.cashea-minimum-status > span{
    display:block;
    font-size:9px;
    font-weight:1000;
    letter-spacing:.5px;
    text-transform:uppercase
}
.cashea-minimum-status > strong{
    display:block;
    margin-top:3px;
    font-size:22px;
    line-height:1
}
.cashea-minimum-message{
    margin:7px 0 0!important;
    font-weight:800
}
.cashea-cart-initial{
    margin-top:9px;
    padding-top:9px;
    border-top:1px solid rgba(0,0,0,.15);
    font-size:10px;
    font-weight:800
}
.cashea-cart-initial strong{
    margin-left:3px;
    font-size:15px
}


/* V11: carrusel automático de banners */
.banner-section{
    position:relative
}
.banner-track{
    scroll-behavior:smooth;
    overscroll-behavior-x:contain
}
.banner-slide{
    position:relative
}
.banner-arrow{
    position:absolute;
    top:50%;
    z-index:12;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:50%;
    background:rgba(17,17,17,.88);
    color:#fff;
    font-size:28px;
    line-height:1;
    font-family:Arial,Helvetica,sans-serif;
    cursor:pointer;
    transform:translateY(-65%);
    box-shadow:0 4px 16px rgba(0,0,0,.18);
    transition:opacity .15s ease,transform .15s ease
}
.banner-arrow:hover{
    transform:translateY(-65%) scale(1.05)
}
.banner-arrow:focus-visible{
    outline:3px solid #fff;
    box-shadow:0 0 0 5px #111
}
.banner-arrow-prev{
    left:24px
}
.banner-arrow-next{
    right:24px
}
.banner-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    min-height:24px;
    padding:7px 14px 0
}
.banner-dot{
    width:8px;
    height:8px;
    padding:0;
    border:0;
    border-radius:999px;
    background:#cfd4dc;
    cursor:pointer;
    transition:width .18s ease,background .18s ease
}
.banner-dot.active{
    width:24px;
    background:#111
}
.banner-dot:focus-visible{
    outline:2px solid #111;
    outline-offset:3px
}
@media(max-width:760px){
    .banner-arrow{
        width:32px;
        height:32px;
        font-size:24px;
        background:rgba(17,17,17,.78)
    }
    .banner-arrow-prev{
        left:18px
    }
    .banner-arrow-next{
        right:18px
    }
    .banner-dots{
        padding-top:5px
    }
}
@media(prefers-reduced-motion:reduce){
    .banner-track{
        scroll-behavior:auto
    }
    .banner-arrow,
    .banner-dot{
        transition:none
    }
}


/* V11.1: móvil sin flechas para no tapar el banner */
@media(max-width:760px){
    .banner-arrow{
        display:none!important
    }
}


/* V12: contacto general por WhatsApp */
.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:calc(18px + env(safe-area-inset-bottom,0px));
    z-index:80;
    display:inline-flex;
    align-items:center;
    gap:9px;
    min-height:52px;
    padding:7px 14px 7px 8px;
    border-radius:999px;
    background:#25D366;
    color:#071a0d;
    text-decoration:none;
    font-size:12px;
    font-weight:1000;
    box-shadow:0 8px 26px rgba(0,0,0,.2);
    transition:transform .15s ease,box-shadow .15s ease
}
.whatsapp-float:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(0,0,0,.24)
}
.whatsapp-float:focus-visible{
    outline:3px solid #111;
    outline-offset:3px
}
.whatsapp-float-icon{
    width:38px;
    height:38px;
    flex:0 0 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff
}
.whatsapp-float-icon svg{
    width:25px;
    height:25px;
    display:block;
    fill:#25D366
}
.whatsapp-float-label{
    white-space:nowrap
}
@media(max-width:760px){
    .whatsapp-float{
        right:14px;
        bottom:calc(14px + env(safe-area-inset-bottom,0px));
        width:52px;
        min-height:52px;
        padding:7px;
        justify-content:center
    }
    .whatsapp-float-icon{
        width:38px;
        height:38px;
        flex-basis:38px
    }
    .whatsapp-float-label{
        position:absolute;
        width:1px;
        height:1px;
        overflow:hidden;
        clip:rect(0 0 0 0);
        white-space:nowrap;
        clip-path:inset(50%)
    }
}


/* V13 · Nueva fragancia y perfil aromático */
.product-media-badges,.detail-gallery-badges{position:absolute;top:12px;right:12px;z-index:6;display:flex;flex-direction:column;align-items:flex-end;gap:7px;pointer-events:none}
.product-photo,.gallery-shell{position:relative}
.product-inline-flags,.detail-inline-flags{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 2px}
.new-fragrance-flag{display:inline-flex;align-items:center;justify-content:center;min-height:28px;padding:6px 11px;border:1px solid #d6c27d;border-radius:9px;background:#fff8dc;color:#624c18;font-size:10px;line-height:1;font-weight:1000;letter-spacing:.055em;text-transform:uppercase}
.product-media-badges .promo-badge,.detail-gallery-badges .promo-badge{position:static;inset:auto}
.aroma-chips{display:flex;flex-wrap:wrap;gap:8px}
.aroma-chip{display:inline-flex;align-items:center;justify-content:center;min-height:31px;padding:7px 10px;border:1px solid transparent;border-radius:10px;font-size:11px;line-height:1.05;font-weight:900;text-align:center;box-sizing:border-box}
.aroma-chips.compact{margin-top:10px}
.aroma-chips.compact .aroma-chip{min-height:28px;padding:6px 9px;font-size:10px}
.detail-aroma-profile{margin:18px 0 4px}
.detail-aroma-profile>span{display:block;margin-bottom:9px;color:#667085;font-size:10px;font-weight:1000;letter-spacing:.09em}
.aroma-chip--neutral{background:#f2f4f7;border-color:#d0d5dd;color:#344054}
.aroma-chip--citrico{background:#e4f7da;border-color:#bae29f;color:#276738}
.aroma-chip--floral{background:#fffaf2;border-color:#eedfc7;color:#6f5b43}
.aroma-chip--frutal{background:#ffe5de;border-color:#f6c3b3;color:#b54708}
.aroma-chip--fresco{background:#e8f3ff;border-color:#bfd7fb;color:#175cd3}
.aroma-chip--gourmand{background:#fff0d8;border-color:#f0cfa0;color:#9b5c07}
.aroma-chip--amaderado{background:#efe3d3;border-color:#d8bda0;color:#7a4e2d}
.aroma-chip--acuatico{background:#dff5fb;border-color:#b6e2ee;color:#0e7090}
.aroma-chip--especiado{background:#fbe7dc;border-color:#efc3a7;color:#b54708}
.aroma-chip--atalcado{background:#f1efff;border-color:#dad3fb;color:#5f4ba3}
.aroma-chip--cremoso{background:#fff8e4;border-color:#f2e2a4;color:#8a6a1d}
.aroma-chip--intenso{background:#1f2937;border-color:#111827;color:#fff}
.aroma-chip--aromatico{background:#e6f4ea;border-color:#c8e3d0;color:#216e39}
.aroma-chip--ambar{background:#fdecc8;border-color:#f2d38b;color:#9f6500}
.aroma-chip--tropical{background:#fff1bf;border-color:#f2d676;color:#9f580a}
.aroma-chip--ahumado{background:#e8e7eb;border-color:#d3d1d8;color:#3f3f46}
.aroma-chip--dulce{background:#ffe2ef;border-color:#f5bfd8;color:#c11574}
.aroma-chip--cuero{background:#8c5a3c;border-color:#724327;color:#fff}

/* V13 · Checkout y entrega */
.checkout-field select,.checkout-field textarea{width:100%;border:1px solid #d0d5dd;border-radius:11px;background:#fff;color:#111;padding:12px 13px;font:inherit}
.checkout-field textarea{min-height:88px;resize:vertical}
.help-inline{margin-top:7px;color:#667085;font-size:11px;line-height:1.5}
.optional-label{color:#98a2b3;font-size:10px;font-weight:700}
.checkout-delivery-note{margin:2px 0 14px;padding:12px 13px;border:1px solid #e4e7ec;border-radius:11px;background:#f8fafc;color:#475467;font-size:12px;line-height:1.5}

/* V13 · Servicio de regalo */
.cart-main-column{min-width:0;display:grid;gap:16px;align-content:start}
.gift-service-card{border:1px solid #e4e7ec;border-radius:18px;background:#fff;padding:19px}
.gift-service-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px}
.gift-service-head h2{margin:2px 0 7px;font-size:18px}
.gift-service-head p{margin:0;color:#667085;font-size:12px;line-height:1.5}
.gift-eyebrow{color:#111!important;font-size:9px!important;font-weight:1000!important;letter-spacing:.1em}
.gift-switch{flex:0 0 auto;display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border:1px solid #d0d5dd;border-radius:999px;background:#f8fafc;font-size:12px;font-weight:900;cursor:pointer}
.gift-switch input{width:17px;height:17px;margin:0}
.gift-planner{margin-top:18px}
.gift-planner-help,.gift-note{margin:0 0 13px;color:#667085;font-size:11px;line-height:1.55}
.gift-note{margin:12px 0 0}
.gift-group{margin-top:12px;border:1px solid #e4e7ec;border-radius:15px;background:#fcfcfd;overflow:hidden}
.gift-group-head{display:flex;justify-content:space-between;gap:15px;align-items:center;padding:13px 14px;border-bottom:1px solid #e4e7ec;background:#f8fafc}
.gift-group-head>div{display:grid;gap:3px}.gift-group-head span{color:#667085;font-size:9px;font-weight:1000;letter-spacing:.09em}.gift-group-head strong{font-size:13px}
.gift-group-head button{border:0;background:transparent;color:#b42318;padding:6px 0;font-size:10px;font-weight:900;cursor:pointer}
.gift-products{display:grid}.gift-product-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(150px,210px);align-items:center;gap:14px;padding:12px 14px;border-bottom:1px solid #eef0f3}
.gift-product-row>div{display:grid;gap:3px}.gift-product-row strong{font-size:12px}.gift-product-row span{color:#667085;font-size:10px}.gift-product-row label{color:#667085;font-size:9px;font-weight:900}
.gift-product-row select{width:100%;margin-top:5px;border:1px solid #d0d5dd;border-radius:9px;background:#fff;padding:8px 9px;font-size:12px}
.gift-dedication{padding:14px}.gift-dedication h4{margin:0 0 11px;font-size:12px}.gift-dedication h4 span{color:#98a2b3;font-size:10px;font-weight:700}
.gift-fields{display:grid;grid-template-columns:1fr 1fr;gap:10px}.gift-fields .full{grid-column:1/-1}.gift-fields label{color:#475467;font-size:10px;font-weight:850}
.gift-fields input,.gift-fields textarea{width:100%;margin-top:5px;border:1px solid #d0d5dd;border-radius:9px;background:#fff;padding:9px 10px;font:inherit;font-size:12px}.gift-fields textarea{min-height:78px;resize:vertical}
.gift-add-group{width:100%;margin-top:12px;min-height:42px;border:1px dashed #98a2b3;border-radius:11px;background:#fff;color:#344054;font-size:12px;font-weight:900;cursor:pointer}.gift-add-group:disabled{opacity:.45;cursor:not-allowed}
@media(max-width:760px){.product-media-badges,.detail-gallery-badges{top:9px;right:9px;gap:5px}.product-inline-flags,.detail-inline-flags{margin:7px 0 1px}.new-fragrance-flag{min-height:25px;padding:5px 9px;font-size:9px}.aroma-chips{gap:7px}.aroma-chip{min-height:28px;padding:6px 8px;font-size:10px;border-radius:9px}.gift-service-card{padding:15px}.gift-service-head{flex-direction:column}.gift-product-row{grid-template-columns:1fr;gap:8px}.gift-fields{grid-template-columns:1fr}.gift-fields .full{grid-column:auto}}

.detail-gift-service{margin:16px 0 4px;padding:12px 13px;border:1px solid #e4e7ec;border-radius:12px;background:#fcfcfd;display:grid;gap:3px}.detail-gift-service strong{font-size:12px}.detail-gift-service span{color:#667085;font-size:11px;line-height:1.45}


/* V14 · forma de pago dinámica */
.payment-method-note{
    margin-top:8px;
    padding:9px 10px;
    border:1px solid #e4e7ec;
    border-radius:9px;
    background:#f8fafc;
    color:#667085;
    font-size:11px;
    line-height:1.45
}

/* V14 · Emprende configurable */
.venture-price .venture-old-price{
    display:block;
    margin:3px 0 0;
    color:#98a2b3;
    font-size:14px;
    text-decoration:line-through
}
.venture-price em{
    display:inline-flex;
    margin-top:5px;
    padding:5px 7px;
    border-radius:7px;
    background:#111;
    color:#fff;
    font-size:9px;
    font-style:normal;
    font-weight:900;
    letter-spacing:.04em;
    text-transform:uppercase
}
