*,
*::before,
*::after{box-sizing:border-box}

:root{
    --bg:#f6f1ed;
    --panel:#ffffff;
    --panel-soft:#fbf7f4;
    --line:#e4d9d0;
    --line-strong:#d9cbc0;
    --text:#211513;
    --muted:#8d7b72;
    --primary:#d54662;
    --primary-strong:#c53352;
    --accent:#ea8b2a;
    --dark:#24120d;
    --success:#24b356;
    --success-strong:#169d47;
    --warning:#f39a1f;
    --shadow:0 14px 30px rgba(32,19,16,.06);
    --shadow-soft:0 8px 18px rgba(32,19,16,.04);
    --radius:22px;
    --radius-lg:28px;
    --radius-sm:14px;
    --container:min(1180px, calc(100% - 40px));
}

html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}
body.menu-open{overflow:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer}
main{min-height:40vh}
.container{width:var(--container);margin-inline:auto}
.section{padding:84px 0}
.section-sm{padding:56px 0}
.page-section{padding:56px 0 84px}
.page-simple{padding:46px 0 84px}
.section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:28px;
}
.section-head h2,
.home-hero h1,
.page-title h1,
.promo-hero h1,
.product-info h1,
.footer-cta h2{margin:0;line-height:1.05}
.section-head p,
.page-title p,
.home-hero p{margin:10px 0 0;color:var(--muted)}
.kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--primary);
    font-weight:700;
    margin-bottom:14px;
}
.text-accent{
    background:linear-gradient(90deg,var(--primary),var(--accent));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.muted{color:var(--muted)}
.small{font-size:13px}
.center{text-align:center}

.top-ticker{
    background:var(--primary);
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    border-bottom:1px solid rgba(255,255,255,.15);
}
.ticker-track{
    display:flex;
    gap:34px;
    width:max-content;
    padding:10px 0;
    animation:ticker 22s linear infinite;
    font-weight:600;
    font-size:14px;
}
@keyframes ticker{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}

.site-header{
    position:sticky;
    top:0;
    z-index:40;
    background:rgba(246,241,237,.94);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
}
.nav-shell{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    min-height:76px;
}
.brand{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size:19px;
    font-weight:800;
    letter-spacing:-.02em;
}
.brand-light{color:#fff}
.brand-mark{
    width:22px;
    height:22px;
    border-radius:6px;
    border:2px solid currentColor;
    display:grid;
    place-items:center;
    flex:0 0 auto;
}
.brand-mark svg{
    width:14px;
    height:14px;
    stroke:currentColor;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.site-nav{
    display:flex;
    align-items:center;
    gap:4px;
}
.site-nav a{
    padding:10px 14px;
    border-radius:14px;
    color:#7a6962;
    font-weight:500;
    transition:background-color .2s ease,color .2s ease,transform .2s ease;
}
.site-nav a:hover{color:var(--text);background:rgba(213,70,98,.08)}
.site-nav a.is-active{
    background:rgba(213,70,98,.12);
    color:var(--primary);
    font-weight:700;
}
.nav-toggle{
    display:none;
    width:46px;
    height:46px;
    border-radius:14px;
    border:1px solid var(--line);
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:4px;
}
.nav-toggle span{
    width:18px;
    height:2px;
    background:var(--text);
    border-radius:999px;
    transition:.25s ease;
}
.menu-open .nav-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-open .nav-toggle span:nth-child(2){opacity:0}
.menu-open .nav-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
    padding:0 20px;
    border-radius:999px;
    font-weight:700;
    border:1px solid transparent;
    transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
    background:linear-gradient(90deg,var(--primary),#de5a5a);
    color:#fff;
    box-shadow:0 12px 24px rgba(213,70,98,.18);
}
.btn-secondary,
.btn-soft{
    background:var(--panel);
    border-color:var(--text);
    color:var(--text);
}
.btn-soft{border-color:var(--line)}
.btn-outline{
    background:transparent;
    border-color:var(--line-strong);
    color:var(--text);
}
.btn-dark-outline{
    background:transparent;
    border-color:rgba(255,255,255,.7);
    color:#fff;
}
.btn-whatsapp{
    background:var(--success);
    color:#fff;
    box-shadow:0 12px 24px rgba(36,179,86,.18);
}
.btn-whatsapp:hover{background:var(--success-strong)}
.btn-icon{
    width:48px;
    min-width:48px;
    padding:0;
}
.icon-arrow{
    font-size:18px;
    line-height:1;
}

.home-hero{
    padding:78px 0 58px;
}
.hero-shell{
    text-align:center;
    max-width:900px;
    margin:0 auto;
}
.hero-shell h1{
    font-size:clamp(42px,6vw,74px);
    letter-spacing:-.045em;
    margin-bottom:18px;
}
.hero-shell p{
    font-size:18px;
    max-width:720px;
    margin:0 auto;
}
.hero-actions{
    margin-top:32px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
}
.promo-strip{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}
.promo-item-lite{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
    padding:16px 18px;
    box-shadow:var(--shadow-soft);
}
.promo-item-lite strong{display:block;margin-bottom:6px}

.page-title{
    padding:46px 0 10px;
}
.page-title h1{
    font-size:clamp(36px,5vw,56px);
    letter-spacing:-.04em;
}
.page-title.narrow{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}
.category-card{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
    padding:24px 18px;
    min-height:106px;
    display:grid;
    place-items:center;
    text-align:center;
    box-shadow:var(--shadow-soft);
    transition:transform .2s ease,border-color .2s ease;
}
.category-card:hover{transform:translateY(-2px);border-color:var(--line-strong)}
.category-card .emoji{font-size:34px;display:block;margin-bottom:12px}
.category-card strong{font-size:15px}

.card-grid-4,
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.product-card,
.video-card,
.benefit-card,
.testimonial-card,
.contact-card,
.story-card,
.value-card,
.faq-item,
.panel,
.simple-card{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow-soft);
}
.product-card{
    overflow:hidden;
    transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
}
.product-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow);
    border-color:var(--line-strong);
}
.product-thumb{
    position:relative;
    aspect-ratio:4/5;
    background:var(--panel-soft);
    overflow:hidden;
}
.product-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.product-badge-row{
    position:absolute;
    top:14px;
    left:14px;
    right:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
}
.product-body{padding:16px 16px 16px}
.product-category{
    color:#a48f85;
    font-size:14px;
    margin-bottom:4px;
}
.product-body h3{margin:0 0 10px;font-size:17px;line-height:1.35}
.product-price{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:14px;
}
.product-price strong{
    color:var(--primary);
    font-size:18px;
}
.old-price{
    font-size:14px;
    color:#9e8c84;
    text-decoration:line-through;
}
.card-actions{
    display:flex;
    gap:10px;
}
.card-actions .btn{flex:1}
.btn-compact{min-height:42px;padding:0 16px;font-size:14px}

.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    border:1px solid var(--line);
    background:var(--panel);
    font-size:14px;
    font-weight:700;
    color:var(--text);
}
.badge-hot{background:#ef3d3d;color:#fff;border-color:#ef3d3d}
.badge-new{background:#1ea4ff;color:#fff;border-color:#1ea4ff}
.badge-promo{background:#f2a01f;color:#fff;border-color:#f2a01f}
.badge-soft{
    background:rgba(213,70,98,.1);
    color:var(--primary);
    border-color:rgba(213,70,98,.08);
}
.badge-dark{
    background:rgba(255,255,255,.14);
    color:#fff;
    border-color:rgba(255,255,255,.18);
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}
.video-card{
    overflow:hidden;
}
.video-thumb{
    position:relative;
    aspect-ratio:4/5;
    overflow:hidden;
    background:#ddd2cb;
}
.video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.video-thumb .play{
    position:absolute;
    right:16px;
    top:16px;
    width:52px;
    height:52px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#fff;
    color:var(--dark);
    box-shadow:var(--shadow-soft);
    font-size:20px;
    font-weight:800;
}
.video-thumb .tag-pair{
    position:absolute;
    left:14px;
    top:14px;
    right:14px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:8px;
}
.video-body{padding:16px}
.video-body h3{margin:0 0 8px;font-size:17px;line-height:1.35}
.video-actions{
    display:flex;
    gap:10px;
    margin-top:14px;
}
.video-actions .btn:first-child{flex:1}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.benefit-card{
    padding:26px 20px;
    text-align:center;
}
.icon-circle{
    width:56px;
    height:56px;
    border-radius:50%;
    display:grid;
    place-items:center;
    margin:0 auto 16px;
    background:rgba(213,70,98,.12);
    color:var(--primary);
    font-size:24px;
    font-weight:700;
}
.benefit-card h3,
.testimonial-card h3,
.story-card h3,
.value-card h3{margin:0 0 10px;font-size:17px}
.benefit-card p,
.story-card p,
.value-card p{margin:0;color:var(--muted)}

.stats-row{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
    margin:28px 0 34px;
}
.stat{
    text-align:center;
}
.stat strong{
    display:block;
    font-size:54px;
    line-height:1;
    letter-spacing:-.04em;
    color:var(--primary);
}
.stat span{color:var(--muted)}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    max-width:780px;
    margin:0 auto;
}
.testimonial-card{
    padding:22px 22px 18px;
}
.stars{
    letter-spacing:.14em;
    color:var(--warning);
    margin-bottom:8px;
}
.testimonial-card p{margin:0 0 12px;color:#6e5d57}
.testimonial-card strong{font-size:15px}

.site-footer{
    background:var(--dark);
    color:#fff;
    margin-top:0;
}
.footer-cta{
    padding:76px 0 40px;
}
.cta-shell{
    text-align:center;
    max-width:720px;
    margin:0 auto;
}
.cta-shell h2{
    font-size:clamp(34px,5vw,52px);
    margin-bottom:14px;
}
.cta-shell p{
    margin:0 auto;
    max-width:640px;
    color:rgba(255,255,255,.82);
    font-size:18px;
}
.footer-actions{margin-top:30px}
.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    gap:26px;
    padding:28px 0 34px;
}
.footer-copy{
    margin:18px 0 0;
    color:rgba(255,255,255,.82);
    max-width:320px;
}
.site-footer h4{
    margin:0 0 14px;
    font-size:16px;
}
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:10px;
    color:rgba(255,255,255,.82);
}
.footer-links a:hover{color:#fff}
.footer-bottom{
    padding:22px 0 34px;
    border-top:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.78);
    text-align:center;
}

.floating-wa{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:38;
    background:var(--success);
    color:#fff;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:0 18px;
    min-height:54px;
    box-shadow:0 16px 30px rgba(36,179,86,.28);
    font-weight:700;
}
.floating-wa-icon{
    width:20px;
    height:20px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    font-size:11px;
}

.filter-bar{
    display:grid;
    grid-template-columns:minmax(0,1fr) 160px;
    gap:12px;
    margin-bottom:18px;
}
.input,
.select,
.textarea{
    width:100%;
    min-height:52px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.6);
    padding:0 16px;
    outline:none;
    transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}
.textarea{
    min-height:128px;
    padding:14px 16px;
    resize:vertical;
}
.input:focus,
.select:focus,
.textarea:focus{
    border-color:rgba(213,70,98,.42);
    box-shadow:0 0 0 4px rgba(213,70,98,.08);
    background:#fff;
}
.search-input{
    position:relative;
}
.search-input::before{
    content:"⌕";
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#a1938b;
    pointer-events:none;
}
.search-input .input{padding-left:42px}
.pill-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:24px;
}
.pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:34px;
    padding:0 16px;
    border-radius:999px;
    border:1px solid var(--line);
    background:var(--panel);
    font-weight:600;
    transition:.2s ease;
}
.pill:hover{transform:translateY(-1px)}
.pill.is-active,
.pill.active,
.pill-primary{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

.page-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:24px;
    align-items:start;
}

.product-detail{
    padding:18px 0 84px;
}
.back-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:#9a847c;
    font-weight:500;
}
.detail-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 520px;
    gap:46px;
    align-items:start;
}
.product-gallery-main{
    aspect-ratio:1/1;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--line);
    background:var(--panel);
    box-shadow:var(--shadow-soft);
}
.product-gallery-main img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:14px;
}
.gallery-thumb{
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--line);
    background:var(--panel);
    cursor:pointer;
    box-shadow:var(--shadow-soft);
}
.gallery-thumb.is-active{border-color:rgba(213,70,98,.42)}
.gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}
.product-info .eyebrow{
    color:#ad8c80;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:8px;
}
.product-info h1{font-size:clamp(34px,4vw,56px);margin-bottom:10px;letter-spacing:-.04em}
.price-lg{
    font-size:24px;
    color:var(--primary);
    font-weight:800;
    margin-bottom:12px;
}
.product-info p{
    color:#7f6e67;
    font-size:16px;
}
.option-group{margin-top:22px}
.option-group h4{
    margin:0 0 10px;
    font-size:14px;
}
.option-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.chip{
    min-height:38px;
    display:inline-flex;
    align-items:center;
    padding:0 14px;
    border-radius:999px;
    border:1px solid var(--line);
    background:var(--panel);
}
.qty-stepper{
    display:inline-flex;
    align-items:center;
    gap:18px;
    padding:6px 0;
}
.qty-stepper button{
    width:34px;
    height:34px;
    border-radius:12px;
    border:1px solid var(--line);
    background:var(--panel);
}
.stock-text{
    margin-top:18px;
    color:#47946a;
    font-weight:500;
}
.detail-actions{
    display:flex;
    gap:12px;
    margin-top:22px;
}
.detail-actions .btn:first-child{flex:1}
.inline-note{
    margin-top:16px;
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px 18px;
}
.inline-note h4{margin:0 0 6px}
.video-embed-card{
    margin-top:28px;
}
.video-embed-card .embed-shell{
    overflow:hidden;
    border-radius:24px;
    border:1px solid var(--line);
    box-shadow:var(--shadow-soft);
}
.video-iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    display:block;
}
.related-products{margin-top:50px}

.promo-hero{
    padding:44px 0 0;
}
.promo-banner{
    background:linear-gradient(90deg,#cf4266,#ec9820);
    color:#fff;
    border-radius:0;
    padding:60px 0 72px;
}
.promo-banner .promo-inner{
    text-align:center;
    max-width:780px;
    margin:0 auto;
}
.promo-banner h1{
    font-size:clamp(42px,6vw,74px);
    margin:10px 0 10px;
    letter-spacing:-.05em;
}
.promo-banner p{
    margin:0 auto;
    max-width:680px;
    color:rgba(255,255,255,.92);
    font-size:18px;
}
.countdown{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
    margin:34px 0 28px;
}
.count-box{
    width:60px;
    height:70px;
    border-radius:14px;
    background:rgba(255,255,255,.2);
    display:grid;
    place-items:center;
    padding:8px;
}
.count-box strong{font-size:24px;line-height:1}
.count-box span{
    text-transform:uppercase;
    font-size:11px;
    letter-spacing:.05em;
    opacity:.92;
}
.promo-code-wrap{
    padding:28px 0 6px;
    text-align:center;
}
.promo-code{
    margin-top:8px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    min-height:46px;
    padding:0 18px;
    border-radius:18px;
    border:2px dashed var(--primary);
    color:var(--primary);
    font-weight:800;
    background:rgba(213,70,98,.04);
}

.form-shell{
    display:grid;
    gap:22px;
}
.reseller-benefits{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    max-width:864px;
    margin:0 auto 24px;
}
.info-card{
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px 20px;
    box-shadow:var(--shadow-soft);
    display:flex;
    align-items:flex-start;
    gap:14px;
}
.info-card .icon-circle{
    margin:0;
    width:42px;
    height:42px;
    font-size:18px;
}
.info-card h3{margin:0 0 4px;font-size:16px}
.info-card p{margin:0;color:var(--muted);font-size:14px}
.form-card{
    max-width:864px;
    margin:0 auto;
    background:var(--panel);
    border:1px solid var(--line);
    border-radius:24px;
    padding:26px;
    box-shadow:var(--shadow-soft);
}
.form-card h2{margin:0 0 8px}
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin-top:22px;
}
.form-grid .full{grid-column:1/-1}
.form-card label{
    display:block;
    font-size:14px;
    margin:0 0 8px;
    font-weight:600;
}
.form-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}
.success-box,
.notice-box,
.warning-box{
    border-radius:18px;
    padding:18px 18px;
    margin-top:18px;
}
.success-box{
    background:rgba(36,179,86,.08);
    border:1px solid rgba(36,179,86,.18);
}
.notice-box{
    background:rgba(213,70,98,.04);
    border:1px solid rgba(213,70,98,.14);
}
.warning-box{
    background:#fbf0e0;
    border:1px solid #efc27a;
}
.success-box p,
.notice-box p,
.warning-box p{margin:8px 0 0;color:#736259}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    max-width:740px;
    margin:0 auto;
}
.contact-card{
    padding:20px 22px;
    display:flex;
    align-items:flex-start;
    gap:16px;
}
.contact-card h3{margin:0 0 4px;font-size:16px}
.contact-card p{margin:0;color:var(--muted)}
.contact-card .icon-circle{
    width:40px;
    height:40px;
    font-size:18px;
    margin:0;
}
.address-card{
    max-width:740px;
    margin:16px auto 0;
    padding:18px 22px;
}
.faq-wrap{
    max-width:740px;
    margin:40px auto 0;
}
.faq-wrap h2{margin:0 0 20px}
.faq-list{display:grid;gap:10px}
.faq-item{overflow:hidden}
.faq-trigger{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:22px 0;
    background:none;
    border:0;
    font-size:18px;
    font-weight:600;
}
.faq-inner{padding:0 0 0 0}
.faq-item .faq-body{
    max-height:0;
    overflow:hidden;
    transition:max-height .28s ease,padding .28s ease,opacity .28s ease;
    opacity:0;
}
.faq-item .faq-body p{
    margin:0;
    padding:0 0 22px;
    color:#7e6d66;
}
.faq-item.is-open .faq-body{
    max-height:220px;
    opacity:1;
}
.faq-icon{
    color:#7c6a64;
    font-size:20px;
}

.story-wrap{
    display:grid;
    gap:22px;
    max-width:736px;
    margin:0 auto;
}
.story-card{
    padding:30px 32px;
}
.story-card p{
    font-size:17px;
    line-height:1.7;
}
.value-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}
.value-card{
    padding:32px 24px;
    text-align:center;
}
.highlight-card{
    padding:34px 28px;
    text-align:center;
    background:rgba(255,255,255,.42);
}
.highlight-card p{margin:10px 0 0;color:var(--muted)}

.checkout-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:24px;
    align-items:start;
}
.summary-card{
    position:sticky;
    top:110px;
    padding:22px;
}
.summary-list{
    display:grid;
    gap:12px;
    margin-top:18px;
}
.summary-row{
    display:flex;
    justify-content:space-between;
    gap:12px;
    color:#7f6e67;
}
.summary-row strong{color:var(--text)}
.quick-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:18px;
}

.qris-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
    max-width:640px;
    margin:0 auto;
}
.qris-card{
    padding:28px;
    text-align:center;
}
.qris-card img{
    width:min(100%,340px);
    margin:18px auto 12px;
    border-radius:18px;
    border:1px solid var(--line);
    background:var(--panel-soft);
}
.step-list{
    display:grid;
    gap:16px;
}
.step-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
}
.step-number{
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    font-weight:700;
    font-size:14px;
}
.step-copy{padding-top:2px}
.step-copy p{margin:0;color:#6d5c55}

.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s ease,transform .7s ease;
}
.reveal.is-visible{
    opacity:1;
    transform:none;
}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.14s}
.delay-3{transition-delay:.2s}
.delay-4{transition-delay:.26s}

.admin-shell{
    min-height:100vh;
    display:grid;
    grid-template-columns:270px minmax(0,1fr);
    background:var(--bg);
}
.admin-sidebar{
    background:var(--dark);
    color:#fff;
    padding:26px 20px;
    position:sticky;
    top:0;
    height:100vh;
}
.admin-brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    font-weight:800;
    margin-bottom:34px;
}
.admin-brand .brand-mark{color:#fff}
.admin-nav{
    display:grid;
    gap:8px;
}
.admin-nav a{
    padding:12px 14px;
    border-radius:14px;
    color:rgba(255,255,255,.78);
}
.admin-nav a:hover,
.admin-nav a.is-active{
    background:rgba(255,255,255,.1);
    color:#fff;
}
.admin-main{
    padding:24px 28px 34px;
}
.admin-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:24px;
}
.admin-topbar h1{
    margin:0;
    font-size:32px;
    letter-spacing:-.04em;
}
.admin-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.metric-card{
    padding:20px;
}
.metric-card strong{
    display:block;
    font-size:30px;
    letter-spacing:-.04em;
    margin-top:10px;
}
.admin-content-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:18px;
    margin-top:18px;
}
.table-card,
.list-card{
    padding:20px;
}
.table-card h2,
.list-card h2{margin:0 0 16px;font-size:20px}
.admin-table{
    width:100%;
    border-collapse:collapse;
}
.admin-table th,
.admin-table td{
    padding:14px 0;
    border-bottom:1px solid var(--line);
    text-align:left;
    font-size:14px;
}
.admin-list{
    display:grid;
    gap:12px;
}
.admin-list-item{
    padding:14px 16px;
    border-radius:16px;
    background:var(--panel-soft);
    border:1px solid var(--line);
}
.admin-form{
    display:grid;
    gap:16px;
}
.admin-two-col{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.admin-form label{
    display:block;
    font-size:14px;
    margin:0 0 8px;
    font-weight:600;
}
.admin-two-col .full{grid-column:1/-1}

@media (max-width:1080px){
    .product-grid,
    .card-grid-4,
    .benefit-grid,
    .admin-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .detail-layout,
    .page-grid,
    .checkout-layout,
    .admin-content-grid{grid-template-columns:1fr}
    .summary-card{position:static}
    .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:860px){
    .nav-toggle{display:flex}
    .site-nav{
        position:fixed;
        left:20px;
        right:20px;
        top:84px;
        background:rgba(255,255,255,.95);
        border:1px solid var(--line);
        border-radius:22px;
        box-shadow:var(--shadow);
        padding:14px;
        display:grid;
        gap:4px;
        transform:translateY(-8px);
        opacity:0;
        pointer-events:none;
        transition:.25s ease;
    }
    .menu-open .site-nav{
        transform:none;
        opacity:1;
        pointer-events:auto;
    }
    .site-nav a{padding:12px 14px;border-radius:14px}
    .video-grid,
    .testimonial-grid,
    .value-grid,
    .reseller-benefits,
    .contact-grid{grid-template-columns:1fr}
    .category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .promo-strip{grid-template-columns:1fr}
    .filter-bar,
    .form-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
    :root{--container:min(100% - 24px, 1000px)}
    .section{padding:64px 0}
    .section-sm{padding:42px 0}
    .page-simple,
    .page-section,
    .product-detail{padding-bottom:64px}
    .nav-shell{min-height:68px}
    .brand{font-size:17px}
    .hero-shell h1{font-size:42px}
    .hero-shell p,
    .promo-banner p,
    .cta-shell p{font-size:16px}
    .product-grid,
    .card-grid-4{grid-template-columns:1fr 1fr}
    .product-body h3,
    .video-body h3{font-size:16px}
    .benefit-grid,
    .footer-grid{grid-template-columns:1fr}
    .stats-row{gap:28px}
    .stat strong{font-size:42px}
    .card-actions{flex-wrap:wrap}
    .card-actions .btn{flex:1 1 calc(50% - 6px)}
    .detail-actions{flex-direction:column}
    .floating-wa{
        right:14px;
        bottom:14px;
        min-height:50px;
        padding:0 16px;
        font-size:14px;
    }
    .form-card{padding:20px}
    .qris-card{padding:22px}
    .admin-shell{grid-template-columns:1fr}
    .admin-sidebar{
        position:static;
        height:auto;
    }
    .admin-main{padding:20px 14px 28px}
    .admin-grid{grid-template-columns:1fr}
    .admin-two-col{grid-template-columns:1fr}
}


/* Additional storefront, tracking, invoice, and role utilities */
.flash-shell { padding-top: 18px; }
.role-switcher-main { padding-bottom: 14px; }
.print-body { background: #f5eee9; }
.card-soft { background:#fbf7f4; border:1px solid var(--line); border-radius:18px; padding:16px; }
.inline-summary { margin:18px 0; }
.invoice-shell { padding: 28px; }
.invoice-topbar { display:flex; justify-content:space-between; align-items:flex-start; gap:18px; flex-wrap:wrap; }
.invoice-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; margin:22px 0; }
.invoice-card { border:1px solid var(--line); border-radius:18px; padding:16px; background:#fbf7f4; }
.invoice-total-grid { display:grid; grid-template-columns:1.4fr .9fr; gap:20px; margin-top:22px; align-items:start; }
.invoice-summary .line-card { padding:12px 0; }
.card-soft-dark { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:18px; padding:14px; display:grid; gap:4px; }
.sidebar-profile span { color: rgba(255,255,255,.72); font-size: 13px; }
.sidebar-top, .sidebar-actions, .sidebar-switcher { display:grid; gap:14px; }
.sidebar-label { color: rgba(255,255,255,.64); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.role-switcher-sidebar .role-pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #fff; }
.role-switcher-sidebar .role-pill.is-active { background: var(--primary); border-color: var(--primary); }
@media print {
  .top-ticker,.site-header,.site-footer,.floating-wa,.flash-shell,.btn { display:none !important; }
  body, .print-body { background:#fff; }
  .invoice-shell { border:0; box-shadow:none; padding:0; }
  .container { width: 100%; max-width: 100%; }
}
@media (max-width: 860px) {
  .invoice-grid,.invoice-total-grid { grid-template-columns:1fr; }
}

/* storefront refinement aligned to original prototype structure */
.header-tools,
.storefront-tools{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
}
.tool-link{
    padding:10px 12px;
    border-radius:14px;
    color:#7a6962;
    font-weight:600;
}
.tool-link:hover{background:rgba(213,70,98,.08);color:var(--text)}
.role-switcher-main{display:flex;flex-wrap:wrap;gap:8px;padding-bottom:14px}
.catalog-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:20px;
}
.toolbar-inline{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.input-small{min-height:42px;max-width:150px}
.checkbox-inline{display:inline-flex;align-items:center;gap:8px;color:var(--muted)}
.checkbox-inline input{width:auto}
.content-panel{max-width:860px;margin:0 auto}
.content-prose{font-size:17px;line-height:1.8;color:#6e5d57}
.detail-copy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:28px 0 0}
.copy-card{background:var(--panel);border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow-soft);padding:22px}
.copy-card h3{margin:0 0 12px;font-size:20px}
.copy-card p{margin:0 0 10px;color:#6e5d57}
.review-grid{max-width:none}
.form-card.review-form-card{margin-top:28px}
.btn-full-mobile{width:100%}
.flash-shell .alert{margin-bottom:0}
@media (max-width:1080px){
    .detail-copy-grid{grid-template-columns:1fr}
}
@media (max-width:860px){
    .header-tools,.storefront-tools{width:100%;justify-content:flex-start;padding-bottom:14px}
}
@media (max-width:640px){
    .catalog-toolbar{align-items:flex-start}
    .toolbar-inline{width:100%}
    .input-small{max-width:none;flex:1 1 140px}
}
