:root{
    --pink:#ef3b93;
    --pink-soft:#fff0f6;
    --pink-light:#ffe5ef;
    --mauve:#813263;
    --mauve-dark:#5f2347;
    --text:#2f2a2f;
    --muted:#746876;
    --line:#f1dbe6;
    --cream:#fff9f8;
    --white:#fff;
    --shadow:0 22px 60px rgba(94,35,70,.14);
    --radius:26px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    color:var(--text);
    background:linear-gradient(180deg,#fff 0%,#fff8fb 45%,#fff 100%);
    font-family:Inter,Arial,Helvetica,sans-serif;
    -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.topbar{
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    padding:6px 20px;
    background:linear-gradient(90deg,var(--mauve-dark),#9a3d74,var(--mauve-dark));
    color:white;
    font-size:13px;
    letter-spacing:.2px;
}
.topbar span:not(:last-child)::after{content:"•";margin-left:20px;opacity:.75}
.site-header{
    position:sticky;
    top:0;
    z-index:40;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(241,219,230,.75);
}
.header-inner{
    max-width:1260px;
    margin:auto;
    min-height:112px;
    padding:16px 28px;
    display:grid;
    grid-template-columns:220px 1fr auto;
    align-items:center;
    gap:24px;
}
.brand img{width:170px;height:auto}
.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    font-size:14px;
    font-weight:600;
    color:#2f2a2f;
}
.main-nav a{position:relative;padding:12px 0}
.main-nav a::after{
    content:"";
    position:absolute;
    left:0;right:0;bottom:4px;
    height:2px;
    transform:scaleX(0);
    background:var(--pink);
    transform-origin:center;
    transition:.25s ease;
}
.main-nav a:hover::after{transform:scaleX(1)}
.header-actions{display:flex;align-items:center;gap:14px}
.icon-link{width:28px;height:28px;display:grid;place-items:center;position:relative;color:#262126}
.icon-link svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.cart-link span{
    position:absolute;
    right:-7px;top:-7px;
    width:18px;height:18px;
    border-radius:999px;
    background:var(--pink);
    color:white;
    display:grid;place-items:center;
    font-size:11px;font-weight:800;
}
.mobile-toggle{display:none;background:transparent;border:0;width:42px;height:42px;padding:8px;cursor:pointer}
.mobile-toggle span{display:block;height:2px;background:#251f25;margin:6px 0;border-radius:99px}
.hero-section{
    max-width:1400px;
    margin:0 auto;
    min-height:610px;
    display:grid;
    grid-template-columns:minmax(320px, .9fr) minmax(460px, 1.1fr);
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 15% 25%, rgba(239,59,147,.14), transparent 24%),
        linear-gradient(90deg,#fff7fa 0%,#fff 45%,#fff0f5 100%);
}
.hero-copy{padding:76px 42px 76px 86px;position:relative;z-index:2}
.eyebrow{
    margin:0 0 18px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--mauve);
    font-weight:800;
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
}
.eyebrow::before{content:"";width:42px;height:1px;background:var(--pink)}
h1,h2,h3,p{margin-top:0}
h1{
    margin-bottom:24px;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(42px,5.2vw,76px);
    line-height:.98;
    letter-spacing:-.055em;
    color:#2c282b;
    max-width:620px;
}
h1 span{color:var(--mauve)}
.hero-text{
    max-width:540px;
    color:#5f5661;
    font-size:19px;
    line-height:1.65;
    margin-bottom:30px;
}
.hero-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:42px}
.btn{
    min-height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:12px;
    padding:14px 24px;
    font-weight:800;
    border:1px solid transparent;
    transition:.2s ease;
    cursor:pointer;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:linear-gradient(135deg,var(--mauve),#a24179);color:white;box-shadow:0 14px 26px rgba(129,50,99,.2)}
.btn-soft{background:white;color:var(--mauve);border-color:#eed2df}
.trust-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:590px}
.trust-row article{
    padding:18px 16px;
    background:rgba(255,255,255,.65);
    border:1px solid rgba(238,210,223,.9);
    border-radius:18px;
}
.trust-row strong{display:block;color:var(--mauve);font-size:15px;margin-bottom:3px}
.trust-row small{color:#6c606c;font-size:12px;line-height:1.35}
.hero-media{
    align-self:stretch;
    position:relative;
    min-height:610px;
    isolation:isolate;
}
.hero-media::before{
    content:"";
    position:absolute;
    inset:0 auto 0 -90px;
    width:260px;
    z-index:2;
    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.8) 38%,transparent 100%);
    pointer-events:none;
}
.hero-media img{width:100%;height:100%;object-fit:cover;object-position:center;filter:saturate(1.02) contrast(1.01)}
.floating-card{
    position:absolute;
    z-index:5;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 16px 42px rgba(95,35,71,.14);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:15px 18px;
    min-width:190px;
}
.floating-card span{display:block;color:var(--pink);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.14em;margin-bottom:5px}
.floating-card strong{font-family:Georgia,'Times New Roman',serif;font-size:21px;color:#362a35}
.floating-card-one{left:30px;bottom:55px}
.floating-card-two{right:40px;top:55px}
.section{max-width:1240px;margin:0 auto;padding:72px 28px}
.section-heading{text-align:center;max-width:760px;margin:0 auto 36px}
.section-heading span{
    display:inline-block;
    color:var(--pink);
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
    letter-spacing:.18em;
    margin-bottom:10px;
}
.section-heading h2{
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(32px,4vw,48px);
    letter-spacing:-.035em;
    margin-bottom:14px;
    color:#342b33;
}
.section-heading h2::after{
    content:"";
    display:block;
    width:70px;height:3px;
    background:var(--pink);
    border-radius:99px;
    margin:16px auto 0;
}
.section-heading p{color:var(--muted);font-size:17px;line-height:1.65;margin:0}
.section-heading.compact{margin-bottom:30px}
.categories-section{padding-top:82px}
.category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.category-card{
    min-height:290px;
    overflow:hidden;
    border-radius:22px;
    position:relative;
    box-shadow:0 18px 42px rgba(70,39,55,.12);
    isolation:isolate;
}
.category-card::after{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(180deg,transparent 15%,rgba(30,18,27,.72) 100%);
    z-index:1;
}
.category-card img{width:100%;height:100%;object-fit:cover;transition:.55s ease}
.category-card:hover img{transform:scale(1.06)}
.category-card div{position:absolute;left:26px;right:26px;bottom:24px;z-index:2;color:white}
.category-card span{display:block;font-size:13px;text-transform:uppercase;letter-spacing:.16em;font-weight:800;margin-bottom:8px;opacity:.9}
.category-card strong{font-family:Georgia,'Times New Roman',serif;font-size:42px;letter-spacing:-.04em}
.category-card div::after{
    content:"→";
    position:absolute;right:0;bottom:4px;
    width:44px;height:44px;border-radius:999px;background:#fff;color:var(--pink);display:grid;place-items:center;font-size:25px;
}
.brands-section{padding:48px 28px 24px;max-width:1240px;margin:auto}
.brand-strip{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
    align-items:center;
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
    box-shadow:0 16px 40px rgba(129,50,99,.06);
}
.brand-strip strong{
    text-align:center;
    color:#272328;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(17px,2vw,24px);
    letter-spacing:-.02em;
}
.products-section{padding-top:50px}
.product-shell{position:relative;display:grid;grid-template-columns:48px 1fr 48px;gap:16px;align-items:center}
.product-row{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(170px,1fr);
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:4px;
}
.product-row::-webkit-scrollbar{display:none}
.product-card{
    position:relative;
    background:#fff;
    border:1px solid #ead9e2;
    border-radius:18px;
    padding:18px;
    min-height:318px;
    box-shadow:0 12px 30px rgba(74,42,59,.07);
    transition:.2s ease;
}
.product-card:hover{transform:translateY(-5px);box-shadow:0 20px 44px rgba(74,42,59,.13)}
.wishlist-btn{
    position:absolute;right:14px;top:14px;
    border:0;background:#fff;color:#b24a84;font-size:24px;cursor:pointer;z-index:2;
}
.product-image{height:184px;display:grid;place-items:center;margin-bottom:14px;background:linear-gradient(180deg,#fff,#fff9fb);border-radius:14px;overflow:hidden}
.product-image img{height:100%;width:auto;object-fit:contain}
.product-card small{color:#8a7885;font-weight:800;letter-spacing:.02em}
.product-card h3{font-size:15px;line-height:1.32;margin:7px 0 12px;color:#2e2930;min-height:40px}
.price-row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.price-row strong{font-size:17px;color:#19161a}
.price-row span{color:var(--pink);font-weight:900;font-size:13px}
.slider-btn{
    width:48px;height:48px;border-radius:999px;border:1px solid var(--line);
    background:#fff;color:var(--mauve);font-size:34px;line-height:1;cursor:pointer;box-shadow:0 10px 24px rgba(129,50,99,.1);
}
.promo-section{
    max-width:1240px;
    margin:0 auto 28px;
    padding:0 28px;
    position:relative;
    border-radius:24px;
    overflow:hidden;
    min-height:210px;
    display:grid;
    grid-template-columns:430px 1fr;
    align-items:center;
    background:linear-gradient(90deg,#ffe2ef,#fff2f6);
    box-shadow:var(--shadow);
}
.promo-section img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.92}
.promo-content{position:relative;z-index:2;padding:34px 36px;max-width:430px}
.promo-content span{color:var(--mauve);font-weight:900;text-transform:uppercase;letter-spacing:.15em;font-size:12px}
.promo-content h2{font-family:Georgia,'Times New Roman',serif;font-size:48px;letter-spacing:-.045em;margin:8px 0;color:var(--mauve-dark)}
.promo-content p{color:#6a5363;font-size:18px;line-height:1.4;margin-bottom:22px}
.whatsapp-section{
    max-width:1240px;
    margin:0 auto 70px;
    padding:30px 34px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:22px;
    align-items:center;
    border-radius:24px;
    background:linear-gradient(135deg,#fff,#fff0f6);
    border:1px solid var(--line);
    box-shadow:0 16px 42px rgba(129,50,99,.08);
}
.wa-icon,.fixed-wa{
    width:62px;height:62px;border-radius:18px;background:linear-gradient(135deg,#7f2e61,#a83d7e);color:#fff;display:grid;place-items:center;font-weight:900;font-size:28px;font-family:Arial,sans-serif;
}
.whatsapp-section span{display:block;font-family:Georgia,'Times New Roman',serif;font-size:30px;color:#372d36;margin-bottom:6px}
.whatsapp-section p{margin:0;color:var(--muted);font-size:16px;line-height:1.5}
.btn-whatsapp{background:#7f2e61;color:#fff}
.footer{background:#fff5f9;border-top:1px solid var(--line)}
.footer-grid{
    max-width:1240px;
    margin:auto;
    padding:58px 28px 42px;
    display:grid;
    grid-template-columns:1.4fr repeat(3,1fr);
    gap:42px;
}
.footer-brand img{width:155px;margin-bottom:12px}
.footer p{color:var(--muted);line-height:1.55;max-width:280px}
.footer h4{text-transform:uppercase;letter-spacing:.14em;font-size:13px;color:#3b3039;margin:0 0 18px}
.footer a{display:block;color:#6a5f69;margin:10px 0;font-size:14px}
.footer a:hover{color:var(--pink)}
.socials{display:flex;gap:10px;margin-top:18px}
.socials a{width:32px;height:32px;border-radius:999px;background:#fff;color:var(--mauve);display:grid;place-items:center;font-weight:900;margin:0;border:1px solid var(--line);font-size:12px}
.footer-bottom{
    min-height:44px;
    padding:12px 28px;
    background:linear-gradient(90deg,var(--mauve-dark),#8d356c);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    font-size:13px;
}
.fixed-wa{
    position:fixed;right:22px;bottom:22px;z-index:30;border-radius:999px;background:#15c86b;color:white;box-shadow:0 14px 34px rgba(21,200,107,.32)
}
@media (max-width:1100px){
    .header-inner{grid-template-columns:170px 1fr auto;gap:18px}.main-nav{gap:18px}.hero-copy{padding-left:42px}.floating-card{display:none}.product-shell{grid-template-columns:1fr}.slider-btn{display:none}.product-row{grid-template-columns:none;grid-auto-columns:220px}
}
@media (max-width:900px){
    .topbar{font-size:12px;gap:8px;flex-wrap:wrap}.topbar span:not(:last-child)::after{margin-left:8px}
    .header-inner{min-height:82px;grid-template-columns:150px auto auto;padding:10px 18px}.brand img{width:145px}.mobile-toggle{display:block;justify-self:end;order:3}.header-actions{gap:10px}.icon-link{width:25px;height:25px}.main-nav{position:absolute;left:14px;right:14px;top:88px;display:none;flex-direction:column;align-items:stretch;background:white;border:1px solid var(--line);border-radius:18px;padding:14px;box-shadow:0 18px 40px rgba(48,27,42,.18)}.main-nav.is-open{display:flex}.main-nav a{padding:13px 10px;border-bottom:1px solid #f5e6ee}.main-nav a:last-child{border-bottom:0}
    .hero-section{grid-template-columns:1fr;min-height:auto}.hero-copy{padding:48px 22px 26px}.hero-media{min-height:430px;order:-1}.hero-media::before{inset:auto 0 0 0;width:auto;height:180px;background:linear-gradient(0deg,#fff8fb 0%,transparent 100%)}h1{font-size:46px;max-width:660px}.hero-text{font-size:17px}.trust-row{grid-template-columns:1fr 1fr 1fr}.section{padding:56px 18px}.category-grid{grid-template-columns:1fr}.category-card{min-height:260px}.brand-strip{grid-template-columns:repeat(3,1fr)}.promo-section{margin-left:18px;margin-right:18px;padding:0;grid-template-columns:1fr}.promo-content{background:linear-gradient(90deg,rgba(255,235,245,.95),rgba(255,246,250,.8));border-radius:20px;margin:16px}.whatsapp-section{margin:0 18px 56px;grid-template-columns:1fr;text-align:center;justify-items:center}.footer-grid{grid-template-columns:1fr 1fr;padding:42px 18px}.footer-bottom{flex-direction:column;text-align:center;gap:4px}
}
@media (max-width:560px){
    .header-inner{grid-template-columns:130px 1fr auto}.brand img{width:126px}.header-actions .icon-link:nth-child(2),.header-actions .icon-link:nth-child(3){display:none}.hero-copy{padding-top:34px}.eyebrow{font-size:11px}.eyebrow::before{width:28px}h1{font-size:39px}.hero-actions .btn{width:100%}.trust-row{grid-template-columns:1fr}.hero-media{min-height:365px}.section-heading h2{font-size:33px}.section-heading p{font-size:15px}.category-card strong{font-size:34px}.brand-strip{grid-template-columns:1fr 1fr}.product-row{grid-auto-columns:78vw}.promo-section{min-height:250px}.promo-content h2{font-size:40px}.footer-grid{grid-template-columns:1fr}.fixed-wa{width:56px;height:56px;right:16px;bottom:16px}
}
