:root{
    --orange:#f57421;
    --green:#008f53;
    --blue:#0b6fba;
    --gold:#f3b545;
    --ink:#111827;
    --muted:#667085;
    --soft:#f6f8fb;
    --sky:#eaf8ff;
    --paper:#ffffff;
    --line:rgba(17,24,39,.12);
    --shadow:0 18px 48px rgba(17,24,39,.10);
    --shadow-soft:0 10px 28px rgba(17,24,39,.07);
    --radius:22px;
    --header-height:78px;
}

*{box-sizing:border-box}
html{
    width:100%;
    overflow-x:hidden;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
    touch-action:manipulation;
}
body{
    min-height:100vh;
    margin:0;
    overflow-x:hidden;
    color:var(--ink);
    font-family:"Segoe UI",Arial,Helvetica,sans-serif;
    line-height:1.5;
    background:
        linear-gradient(180deg,rgba(234,248,255,.92),rgba(255,255,255,.98) 440px),
        url("../plateau-abidjan-bg.png") center top/cover fixed;
}
body.modal-open{overflow:hidden}
button,input,select,textarea,a{font:inherit}
button,a{touch-action:manipulation}
button{letter-spacing:0}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.skip-link{
    position:absolute;
    left:16px;
    top:-60px;
    z-index:300;
    border-radius:999px;
    padding:10px 14px;
    background:var(--ink);
    color:#fff;
    font-weight:800;
}
.skip-link:focus{top:16px}
.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
}

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    min-height:var(--header-height);
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:18px;
    padding:12px 30px;
    border-bottom:1px solid rgba(17,24,39,.08);
    background:rgba(255,255,255,.90);
    backdrop-filter:blur(18px);
    box-shadow:0 14px 36px rgba(17,24,39,.06);
    transition:background .25s ease,box-shadow .25s ease,min-height .25s ease;
}
.site-header.is-scrolled{
    background:rgba(255,255,255,.96);
    box-shadow:0 18px 42px rgba(17,24,39,.10);
}
.brand-lockup{
    min-width:0;
    display:inline-flex;
    align-items:center;
    gap:12px;
}
.brand-logo-wrap{
    width:54px;
    height:54px;
    flex:0 0 54px;
    display:grid;
    place-items:center;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}
.brand-logo-wrap img{
    width:44px;
    height:44px;
    object-fit:contain;
}
.brand-copy{
    min-width:0;
    display:grid;
    gap:1px;
}
.brand-copy strong{
    color:var(--orange);
    font-size:21px;
    line-height:1;
    font-weight:900;
}
.brand-copy small{
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}
.desktop-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;
}
.nav-button,
.filter-pill,
.link-button,
.site-footer button{
    appearance:none;
    border:0;
    background:transparent;
    color:var(--ink);
    cursor:pointer;
}
.nav-button{
    min-height:42px;
    border-radius:999px;
    padding:10px 12px;
    font-size:14px;
    font-weight:800;
    transition:background .2s ease,color .2s ease,transform .18s ease;
}
.nav-button:hover,
.nav-button.active{
    color:var(--orange);
    background:rgba(245,116,33,.10);
}
.nav-button:active,
.btn:active,
.filter-pill:active{transform:scale(.98)}
.nav-track{
    color:#fff;
    background:var(--green);
}
.nav-track:hover,
.nav-track.active{
    color:#fff;
    background:#087447;
}
.header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}
.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:1px solid var(--line);
    border-radius:50%;
    background:#fff;
    color:var(--ink);
    cursor:pointer;
    place-items:center;
    gap:4px;
    padding:12px;
}
.menu-toggle span{
    display:block;
    width:18px;
    height:2px;
    border-radius:999px;
    background:currentColor;
}

.mobile-menu{
    position:fixed;
    inset:0;
    z-index:220;
    display:grid;
    justify-items:end;
    background:rgba(17,24,39,.36);
    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease;
}
.mobile-menu.is-open{
    opacity:1;
    pointer-events:auto;
}
.mobile-menu-panel{
    width:min(390px,88vw);
    height:100%;
    padding:18px;
    background:#fff;
    box-shadow:-20px 0 60px rgba(17,24,39,.24);
    transform:translateX(100%);
    transition:transform .26s ease;
}
.mobile-menu.is-open .mobile-menu-panel{transform:translateX(0)}
.mobile-menu-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:20px;
}
.mobile-menu nav{
    display:grid;
    gap:10px;
}
.mobile-menu .nav-button{
    width:100%;
    min-height:54px;
    justify-content:flex-start;
    text-align:left;
    border:1px solid var(--line);
    padding:14px 16px;
    font-size:17px;
}

.btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:0;
    border-radius:999px;
    padding:12px 18px;
    color:var(--ink);
    font-weight:900;
    cursor:pointer;
    text-align:center;
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(17,24,39,.12)}
.btn-primary{background:var(--orange);color:#fff}
.btn-secondary{background:var(--green);color:#fff}
.btn-dark{background:var(--ink);color:#fff}
.btn-ghost{border:1px solid var(--line);background:#fff;color:var(--ink)}
.btn-danger{background:#d90429;color:#fff}
.btn:disabled{
    cursor:not-allowed;
    opacity:.58;
    transform:none;
    box-shadow:none;
}

#mainContent{
    width:min(1220px,100%);
    margin:0 auto;
    padding:28px 28px 42px;
}
.page{display:none}
.page.active{
    display:block;
    animation:pageIn .34s ease both;
}
.reveal{
    opacity:1;
    transform:none;
}
.reveal.is-visible{
    animation:none;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    width:max-content;
    max-width:100%;
    border-radius:999px;
    padding:8px 12px;
    color:#a25500;
    background:#fff2df;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}
.editorial-hero{
    min-height:610px;
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:28px;
    align-items:stretch;
}
.hero-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:58px 10px 58px 0;
}
.hero-copy h1,
.page-hero h1,
.tracking-hero h1,
.promo-copy h1,
.contact-panel h1{
    margin:18px 0 18px;
    font-size:72px;
    line-height:.98;
    font-weight:950;
    letter-spacing:0;
}
.hero-copy h1{
    white-space:pre-line;
}
.hero-copy p,
.page-hero p,
.tracking-hero p,
.promo-copy p,
.split-copy p,
.contact-panel p{
    max-width:600px;
    color:#475467;
    font-size:19px;
    line-height:1.65;
}
.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:26px;
}
.hero-gallery{
    min-height:560px;
    position:relative;
    padding:22px;
}
.hero-photo{
    margin:0;
    overflow:hidden;
    border-radius:var(--radius);
    background:#edf4f8;
    box-shadow:var(--shadow);
}
.hero-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-photo-main{
    height:100%;
    min-height:540px;
}
.hero-photo-float{
    position:absolute;
    left:-34px;
    bottom:52px;
    width:48%;
    height:210px;
    border:10px solid #fff;
    animation:floatPhoto 5.8s ease-in-out infinite;
}

.campaign-strip{
    display:grid;
    grid-template-columns:1fr 1.1fr auto;
    align-items:center;
    gap:22px;
    margin:22px 0 56px;
    padding:26px;
    border:1px solid rgba(245,181,69,.42);
    border-radius:var(--radius);
    background:linear-gradient(135deg,#fff8e9,#fff);
    box-shadow:var(--shadow-soft);
}
.campaign-strip h2{
    margin:8px 0 0;
    color:var(--orange);
    font-size:36px;
    line-height:1.06;
}
.campaign-strip p{
    color:#5d6675;
    font-size:16px;
}

.section-block{margin:48px 0}
.section-heading{
    display:grid;
    grid-template-columns:1fr auto;
    gap:12px;
    align-items:end;
    margin-bottom:20px;
}
.section-heading .eyebrow{grid-column:1/-1}
.section-heading h2{
    margin:0;
    font-size:38px;
    line-height:1.05;
}
.link-button{
    color:var(--blue);
    font-weight:900;
    padding:10px 0;
}
.featured-products,
.catalogue-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.product-card{
    min-width:0;
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--shadow-soft);
    transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.product-card:hover{
    transform:translateY(-6px);
    border-color:rgba(245,116,33,.34);
    box-shadow:0 24px 52px rgba(17,24,39,.14);
}
.product-media{
    height:285px;
    display:grid;
    place-items:center;
    overflow:hidden;
    border:0;
    cursor:pointer;
    background:linear-gradient(180deg,#f7fbff,#edf5f9);
}
.product-media img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .45s ease,filter .45s ease;
}
.product-card:hover .product-media img{
    transform:scale(1.045);
    filter:saturate(1.08) contrast(1.03);
}
.product-copy{
    display:grid;
    gap:8px;
    padding:18px;
}
.product-copy p{
    margin:0;
    color:var(--muted);
    font-size:14px;
}
.product-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}
.product-top h3{
    margin:0;
    font-size:20px;
    line-height:1.2;
}
.product-ref{
    color:var(--muted);
    font-size:13px;
    font-weight:800;
}
.product-price{
    color:var(--orange);
    font-weight:950;
    white-space:nowrap;
}
.product-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}
.product-tags span,
.quick-points span,
.tag{
    border:1px solid rgba(17,24,39,.10);
    border-radius:999px;
    padding:7px 10px;
    background:#fff;
    color:#475467;
    font-size:12px;
    font-weight:800;
}
.product-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:8px;
}
.product-actions .btn{
    min-height:42px;
    padding:10px 12px;
    font-size:13px;
}

.editorial-split,
.promo-editorial,
.contact-layout{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:28px;
    align-items:stretch;
}
.split-media,
.promo-visual,
.contact-map{
    min-height:420px;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    background:#edf4f8;
}
.split-media img,
.promo-visual img,
.contact-map img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.split-copy,
.promo-copy,
.contact-panel{
    display:flex;
    flex-direction:column;
    justify-content:center;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:42px;
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow-soft);
}
.split-copy h2{
    margin:16px 0;
    font-size:40px;
    line-height:1.07;
}
.quick-points{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:20px 0 4px;
}

.page-hero,
.tracking-hero{
    min-height:360px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    margin-bottom:26px;
    padding:46px;
    border-radius:var(--radius);
    color:#fff;
    background:
        linear-gradient(90deg,rgba(17,24,39,.74),rgba(17,24,39,.18)),
        url("../assets/montures-femme/sam-femme-gris-bleu-01.jpeg") center/cover;
    box-shadow:var(--shadow);
}
.page-hero .eyebrow,
.tracking-hero .eyebrow{color:#fff;background:rgba(255,255,255,.18)}
.page-hero h1,
.tracking-hero h1{margin-bottom:12px;font-size:58px}
.page-hero p,
.tracking-hero p{color:rgba(255,255,255,.9)}
.compact-hero{min-height:300px}
.catalogue-hero{
    background:
        linear-gradient(90deg,rgba(17,24,39,.78),rgba(17,24,39,.20)),
        url("../assets/montures-femme/sam-femme-transparent-rose-02.jpeg") center/cover;
}
.tracking-hero{
    background:
        linear-gradient(90deg,rgba(0,92,58,.88),rgba(11,111,186,.55)),
        url("../assets/montures-femme/sam-femme-rond-fin-06.jpeg") center/cover;
}

.catalogue-shell{
    display:grid;
    gap:18px;
}
.catalogue-tools{
    position:sticky;
    top:calc(var(--header-height) + 10px);
    z-index:20;
    display:grid;
    grid-template-columns:minmax(220px,1fr) auto;
    gap:12px;
    align-items:center;
    padding:12px;
    border:1px solid var(--line);
    border-radius:999px;
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow-soft);
    backdrop-filter:blur(14px);
}
.catalogue-tools input,
.catalogue-tools select{
    min-height:48px;
    width:100%;
    border:1px solid var(--line);
    border-radius:999px;
    padding:12px 16px;
    color:var(--ink);
    background:#fff;
    outline:0;
}
.catalogue-tools select{display:none}
.filter-pills{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    justify-content:flex-end;
}
.filter-pill{
    min-height:42px;
    padding:9px 13px;
    border:1px solid var(--line);
    border-radius:999px;
    color:#475467;
    background:#fff;
    font-weight:900;
}
.filter-pill.active,
.filter-pill:hover{
    color:#fff;
    border-color:var(--green);
    background:var(--green);
}

.promo-editorial{min-height:560px}
.promo-copy h1{color:var(--orange)}

.service-editorial{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}
.service-editorial article{
    min-height:280px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border:1px solid var(--line);
    border-radius:24px;
    padding:24px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}
.service-editorial span{
    color:var(--orange);
    font-weight:950;
}
.service-editorial h2{
    margin:30px 0 12px;
    font-size:24px;
    line-height:1.12;
}
.service-editorial p{color:var(--muted);margin:0}

.client-form,
.tracking-card,
.insurance-panel{
    border:1px solid var(--line);
    border-radius:24px;
    padding:26px;
    background:rgba(255,255,255,.94);
    box-shadow:var(--shadow-soft);
}
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}
.form-grid.single{grid-template-columns:1fr}
label{
    display:grid;
    gap:7px;
    color:#344054;
    font-size:14px;
    font-weight:900;
}
input,select,textarea{
    min-height:50px;
    width:100%;
    border:1px solid var(--line);
    border-radius:16px;
    padding:13px 15px;
    color:var(--ink);
    background:#fff;
    outline:0;
    font-size:16px;
}
textarea{
    min-height:110px;
    resize:vertical;
}
input:focus,select:focus,textarea:focus{
    border-color:rgba(11,111,186,.52);
    box-shadow:0 0 0 4px rgba(11,111,186,.12);
}
.notice{
    display:none;
    margin-top:14px;
    border-radius:16px;
    padding:13px 15px;
    font-weight:800;
    line-height:1.45;
}
.notice.ok{display:block;color:#075c35;background:#e8f8ef}
.notice.warn{display:block;color:#6b4600;background:#fff4d8}
.notice.err{display:block;color:#8a1020;background:#ffe2e7}
.empty-state{
    border:1px dashed rgba(17,24,39,.18);
    border-radius:20px;
    padding:24px;
    color:var(--muted);
    background:#fbfdff;
    font-weight:800;
}

.tracking-layout{
    display:grid;
    grid-template-columns:390px minmax(0,1fr);
    gap:20px;
    align-items:start;
}
.tracking-card-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    margin-bottom:18px;
}
.tracking-card h2,
.client-space h2{
    margin:8px 0;
    font-size:30px;
    line-height:1.1;
}
.account-box{
    display:grid;
    gap:14px;
}
.client-space p{color:var(--muted);font-weight:800}
.order-list{
    display:grid;
    gap:14px;
}
.order-card{
    border:1px solid var(--line);
    border-radius:24px;
    padding:20px;
    background:#fff;
    box-shadow:var(--shadow-soft);
}
.order-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
}
.order-top h3{
    margin:0 0 4px;
    font-size:25px;
}
.order-top p{
    margin:0;
    color:var(--muted);
}
.status{
    flex:0 0 auto;
    border-radius:999px;
    padding:8px 12px;
    color:#075c35;
    background:#e8f8ef;
    font-size:13px;
    font-weight:950;
}
.client-timeline{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
    margin:16px 0;
}
.timeline-step{
    position:relative;
    min-height:82px;
    border:1px solid var(--line);
    border-radius:18px;
    padding:12px;
    color:var(--muted);
    background:#f9fbfd;
    font-size:12px;
    font-weight:850;
}
.timeline-step strong{
    display:block;
    color:var(--ink);
    font-size:13px;
}
.timeline-step.done{
    border-color:rgba(0,143,83,.26);
    color:#075c35;
    background:#ecf9f2;
}
.timeline-step.current{
    border-color:rgba(245,116,33,.42);
    color:#9a4700;
    background:#fff4e9;
}
.order-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    color:#475467;
}
.order-grid div{
    border-radius:16px;
    padding:12px;
    background:#f7fafc;
}
.order-grid b{color:var(--ink)}
.order-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}
.client-receipt{
    display:grid;
    gap:12px;
    margin-top:16px;
    border:1px solid var(--line);
    border-radius:20px;
    padding:16px;
    background:linear-gradient(180deg,#fff,#fbfdff);
}
.receipt-head{
    display:flex;
    align-items:center;
    gap:14px;
    padding-bottom:12px;
    border-bottom:2px solid rgba(0,143,83,.24);
}
.receipt-head img{
    width:82px;
    height:58px;
    object-fit:contain;
    border-radius:14px;
    background:#fff;
}
.receipt-head h3{margin:0;color:var(--orange)}
.receipt-head p{margin:2px 0;color:var(--muted);font-size:13px}
.receipt-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    font-weight:950;
}
.receipt-info{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    color:#475467;
}

.order-wizard{
    max-width:860px;
    margin:0 auto;
}
.wizard-progress{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
    margin-bottom:14px;
}
.step-dot{
    min-height:46px;
    border:1px solid var(--line);
    border-radius:999px;
    background:#fff;
    color:var(--muted);
    font-weight:900;
    cursor:pointer;
}
.step-dot.active{
    color:#fff;
    border-color:var(--ink);
    background:var(--ink);
}
.wizard-panel{display:none}
.wizard-panel.active{
    display:grid;
    gap:18px;
}
.wizard-panel h2{
    margin:0 0 8px;
    font-size:32px;
}
.wizard-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:10px;
    margin-top:18px;
}
.order-summary{
    display:grid;
    gap:10px;
    border:1px solid var(--line);
    border-radius:20px;
    padding:16px;
    background:#f9fbfd;
}
.order-summary div{
    display:flex;
    justify-content:space-between;
    gap:12px;
    border-bottom:1px solid rgba(17,24,39,.08);
    padding-bottom:8px;
}
.order-summary div:last-child{border-bottom:0;padding-bottom:0}
.fine-print{
    margin:4px 0 0;
    color:var(--muted);
    font-size:13px;
    font-weight:700;
}

.insurance-search{
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
    margin-bottom:18px;
}
.tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.tag{
    color:#344054;
    background:#fff;
}

.contact-list{
    display:grid;
    gap:12px;
    margin:18px 0 4px;
}
.contact-list div{
    border-top:1px solid var(--line);
    padding-top:12px;
}
.contact-list strong{
    display:block;
    color:var(--orange);
    margin-bottom:4px;
}
.contact-list span{color:var(--muted)}

.site-footer{
    width:min(1220px,100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin:0 auto;
    padding:26px 28px 44px;
    color:#475467;
}
.site-footer nav{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.site-footer button{
    color:#475467;
    font-weight:900;
}
.site-footer button:hover{color:var(--orange)}

.product-modal{
    position:fixed;
    inset:0;
    z-index:240;
    display:grid;
    place-items:center;
    padding:22px;
    background:rgba(17,24,39,.58);
}
.product-modal[hidden]{display:none}
.product-dialog{
    position:relative;
    width:min(980px,100%);
    max-height:92vh;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    overflow:auto;
    border-radius:28px;
    background:#fff;
    box-shadow:0 36px 100px rgba(0,0,0,.28);
}
.modal-close{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border:0;
    border-radius:50%;
    background:var(--ink);
    color:#fff;
    font-weight:900;
    cursor:pointer;
}
.product-dialog>.modal-close{
    position:absolute;
    top:14px;
    right:14px;
    z-index:2;
}
.product-gallery{
    min-height:540px;
    background:#f2f7fa;
}
.product-gallery img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.product-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:16px;
    padding:44px;
}
.product-info h2{
    margin:0;
    font-size:42px;
    line-height:1.04;
}
.product-info p{
    margin:0;
    color:var(--muted);
    font-size:17px;
}
.product-meta{
    display:grid;
    gap:10px;
    margin:0;
}
.product-meta div{
    display:flex;
    justify-content:space-between;
    gap:14px;
    padding-bottom:10px;
    border-bottom:1px solid var(--line);
}
.product-meta dt{
    color:var(--muted);
    font-weight:800;
}
.product-meta dd{
    margin:0;
    text-align:right;
    font-weight:950;
}
.floating-whatsapp{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:180;
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border:3px solid rgba(255,255,255,.84);
    border-radius:50%;
    color:#fff;
    background:#25d366;
    box-shadow:0 16px 34px rgba(6,95,46,.28);
    animation:whatsappPulse 2.8s ease-in-out infinite;
}
.floating-whatsapp svg{
    width:31px;
    height:31px;
}
.floating-whatsapp span{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
    outline:3px solid rgba(11,111,186,.32);
    outline-offset:3px;
}

@keyframes pageIn{
    from{opacity:0;transform:translateY(12px)}
    to{opacity:1;transform:translateY(0)}
}
@keyframes revealIn{
    from{opacity:0;transform:translateY(18px)}
    to{opacity:1;transform:translateY(0)}
}
@keyframes floatPhoto{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-12px)}
}
@keyframes whatsappPulse{
    0%,100%{box-shadow:0 16px 34px rgba(6,95,46,.28)}
    50%{box-shadow:0 20px 44px rgba(6,95,46,.42)}
}

@media(max-width:1180px){
    .site-header{
        grid-template-columns:auto 1fr auto;
        padding:12px 20px;
    }
    .desktop-nav{display:none}
    .menu-toggle{display:grid}
    .editorial-hero{
        min-height:auto;
        grid-template-columns:1fr;
    }
    .hero-copy{padding:38px 0 10px}
    .hero-gallery{min-height:460px;padding:0 0 20px 34px}
    .hero-photo-main{min-height:440px}
    .campaign-strip{grid-template-columns:1fr}
    .featured-products,
    .catalogue-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .editorial-split,
    .promo-editorial,
    .contact-layout{grid-template-columns:1fr}
    .service-editorial{grid-template-columns:repeat(2,minmax(0,1fr))}
    .tracking-layout{grid-template-columns:1fr}
}

@media(max-width:768px){
    :root{--header-height:68px}
    .site-header{
        min-height:var(--header-height);
        padding:9px 12px;
        gap:10px;
    }
    .brand-logo-wrap{
        width:48px;
        height:48px;
        flex-basis:48px;
        border-radius:16px;
    }
    .brand-logo-wrap img{width:39px;height:39px}
    .brand-copy strong{font-size:18px}
    .brand-copy small{font-size:11px}
    .header-actions .btn-dark{display:none}
    #mainContent{padding:16px 12px 28px}
    .hero-copy h1,
    .page-hero h1,
    .tracking-hero h1,
    .promo-copy h1,
    .contact-panel h1{
        font-size:42px;
    }
    .hero-copy p,
    .page-hero p,
    .tracking-hero p,
    .promo-copy p,
    .split-copy p,
    .contact-panel p{
        font-size:16px;
    }
    .editorial-hero{gap:8px}
    .hero-copy{padding:24px 0 4px}
    .hero-gallery{
        min-height:390px;
        padding:0;
    }
    .hero-photo-main{
        min-height:360px;
        height:360px;
    }
    .hero-photo-float{
        left:16px;
        bottom:16px;
        width:54%;
        height:130px;
        border-width:6px;
    }
    .campaign-strip,
    .split-copy,
    .promo-copy,
    .contact-panel,
    .client-form,
    .tracking-card,
    .insurance-panel{
        border-radius:20px;
        padding:20px;
    }
    .campaign-strip h2,
    .section-heading h2,
    .split-copy h2{font-size:30px}
    .section-heading{grid-template-columns:1fr}
    .page-hero,
    .tracking-hero{
        min-height:300px;
        padding:24px;
        margin-bottom:16px;
    }
    .catalogue-tools{
        position:static;
        grid-template-columns:1fr;
        border-radius:20px;
    }
    .filter-pills{
        flex-wrap:nowrap;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:2px;
        scrollbar-width:none;
    }
    .filter-pills::-webkit-scrollbar{display:none}
    .filter-pill{
        flex:0 0 auto;
        min-height:40px;
        padding:8px 12px;
        font-size:13px;
    }
    .product-media{height:230px}
    .product-copy{padding:14px}
    .product-top{
        display:grid;
        gap:4px;
    }
    .product-actions{grid-template-columns:1fr}
    .form-grid,
    .receipt-info,
    .order-grid,
    .wizard-progress,
    .client-timeline,
    .insurance-search{grid-template-columns:1fr}
    .wizard-progress{
        display:flex;
        overflow-x:auto;
        scrollbar-width:none;
    }
    .wizard-progress::-webkit-scrollbar{display:none}
    .step-dot{
        flex:0 0 auto;
        min-width:112px;
    }
    .service-editorial{grid-template-columns:1fr}
    .service-editorial article{min-height:210px}
    .split-media,
    .promo-visual,
    .contact-map{min-height:290px}
    .product-dialog{grid-template-columns:1fr}
    .product-gallery{min-height:300px}
    .product-info{padding:24px}
    .product-info h2{font-size:31px}
    .site-footer{
        display:grid;
        gap:18px;
        padding:20px 14px 34px;
    }
}

@media(max-width:520px){
    body{background-attachment:scroll}
    .mobile-menu-panel{width:92vw}
    .editorial-hero{padding-top:8px}
    .hero-copy h1,
    .page-hero h1,
    .tracking-hero h1,
    .promo-copy h1,
    .contact-panel h1{
        font-size:34px;
    }
    .hero-actions,
    .wizard-actions{
        display:grid;
        grid-template-columns:1fr;
    }
    .hero-actions .btn,
    .wizard-actions .btn{width:100%}
    .hero-gallery{min-height:330px}
    .hero-photo-main{height:310px;min-height:310px}
    .hero-photo-float{height:110px}
    .featured-products,
    .catalogue-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
    }
    .product-card{border-radius:18px}
    .product-media{height:150px}
    .product-copy{gap:6px;padding:11px}
    .product-top h3{font-size:15px}
    .product-ref,
    .product-tags,
    .product-copy p{display:none}
    .product-price{font-size:13px;white-space:normal}
    .product-actions .btn{
        min-height:38px;
        padding:8px 10px;
        font-size:12px;
    }
    .campaign-strip{margin:14px 0 34px}
    .page-hero,
    .tracking-hero{min-height:260px}
    .tracking-card-head{display:grid}
    .order-top{display:grid}
    .status{width:max-content;max-width:100%}
    .receipt-head{
        align-items:flex-start;
        flex-direction:column;
    }
    .floating-whatsapp{
        width:52px;
        height:52px;
        right:12px;
        bottom:12px;
    }
}

@media(max-width:360px){
    .brand-copy strong{font-size:16px}
    .brand-copy small{display:none}
    .hero-copy h1,
    .page-hero h1,
    .tracking-hero h1,
    .promo-copy h1,
    .contact-panel h1{font-size:30px}
    .featured-products,
    .catalogue-grid{grid-template-columns:1fr}
    .product-media{height:210px}
    .product-copy p,
    .product-tags{display:flex}
    .product-copy p{display:block}
}

@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation:none!important;
        transition:none!important;
        scroll-behavior:auto!important;
    }
}
