/* =========================================================
   REGAL — MOSQUITO NETS PAGE
   CORRECTED VERSION
   ---------------------------------------------------------
   IMPORTANT:
   This stylesheet uses the ACTUAL class names in
   mosquito-nets.html.

   Design system:
   Display : Bebas Neue
   Body    : Inter
   Rail    : 1316px / 22px side spacing
   Heading weight : 400
   ========================================================= */


/* =========================================================
   PAGE SCOPE + VARIABLES
========================================================= */

.mosquito-page{
    --mn-red:#ed2d35;
    --mn-red-dark:#c91f28;
    --mn-black:#090b0e;
    --mn-black-2:#111417;
    --mn-paper:#f7f6f2;
    --mn-white:#fff;
    --mn-text:#171918;
    --mn-muted:#777b78;
    --mn-line:rgba(20,22,21,.12);

    --mn-max:1316px;
    --mn-side:22px;
    --mn-rail:min(var(--mn-max),calc(100% - (var(--mn-side) * 2)));

    --mn-display:"Bebas Neue",sans-serif;
    --mn-body:"Inter",sans-serif;
    --mn-ease:cubic-bezier(.16,1,.3,1);

    width:100%;
    overflow:hidden;
    color:var(--mn-text);
    background:var(--mn-paper);
    font-family:var(--mn-body);
}

.mosquito-page *,
.mosquito-page *::before,
.mosquito-page *::after{
    box-sizing:border-box;
}

.mosquito-page h1,
.mosquito-page h2,
.mosquito-page h3,
.mosquito-page h4,
.mosquito-page p{
    margin-top:0;
}

.mosquito-page img{
    display:block;
    max-width:100%;
}

.mosquito-page a{
    color:inherit;
    text-decoration:none;
}


/* =========================================================
   BOOTSTRAP CONTAINER ALIGNMENT
   This is the main fix for horizontal alignment.
========================================================= */

.mosquito-page .container,
.mosquito-page .container-fluid{
    width:var(--mn-rail) !important;
    max-width:none !important;
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:0 !important;
    padding-right:0 !important;
}

.mosquito-page .row{
    margin-left:0;
    margin-right:0;
}

.mosquito-page .row > *{
    padding-left:0;
    padding-right:0;
}


/* =========================================================
   COMMON SECTION TAG
========================================================= */

.mosquito-page .section-tag{
    display:flex;
    align-items:center;
    gap:12px;

    width:max-content;

    margin:0 0 24px;

    color:var(--mn-muted);

    font-family:var(--mn-body);
    font-size:9px;
    font-weight:800;
    line-height:1;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

.mosquito-page .section-tag::after{
    content:"";
    width:38px;
    height:1px;
    flex:0 0 38px;
    background:var(--mn-red);
}

.mosquito-page .section-tag span{
    color:var(--mn-red);
}

.mosquito-page .section-tag.light{
    color:rgba(255,255,255,.62);
}


/* =========================================================
   COMMON DISPLAY TYPE
========================================================= */

.mosquito-page h1,
.mosquito-page h2,
.mosquito-page h3{
    font-family:var(--mn-display) !important;
    font-weight:400 !important;
    letter-spacing:0 !important;
    text-transform:uppercase;
}

.mosquito-page h1 span,
.mosquito-page h2 span,
.mosquito-page h3 span{
    color:var(--mn-red);
}


/* =========================================================
   BUTTONS
========================================================= */

.mosquito-page .primary-btn,
.mosquito-page .secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;

    min-height:56px;
    width:max-content;

    padding:17px 20px;

    font-family:var(--mn-body);
    font-size:9px;
    font-weight:800;
    line-height:1;
    letter-spacing:2px;
    text-transform:uppercase;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.mosquito-page .primary-btn{
    background:var(--mn-red);
    border:1px solid var(--mn-red);
    color:#fff;
}

.mosquito-page .primary-btn:hover{
    background:var(--mn-red-dark);
    border-color:var(--mn-red-dark);
    color:#fff;
    transform:translateY(-2px);
}

.mosquito-page .secondary-btn{
    border-bottom:1px solid currentColor;
    color:var(--mn-text);
    padding-left:0;
    padding-right:0;
}

.mosquito-page .secondary-btn:hover{
    color:var(--mn-red);
}


/* =========================================================
   HERO
========================================================= */

.mosquito-page .mosquito-hero{
    position:relative;
    width:100%;
    background:var(--mn-paper);
    overflow:hidden;
}

.mosquito-page .mosquito-hero-grid{
    min-height:calc(100vh - 96px);

    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:84px;

    align-items:center;

    padding:110px 0 90px;
}

.mosquito-page .mosquito-hero-content{
    min-width:0;
}

.mosquito-page .mosquito-hero-content h1{
    max-width:720px;

    margin:0;

    font-size:clamp(82px,8.2vw,116px);
    line-height:.78;
}

.mosquito-page .mosquito-hero-content h1 span{
    display:block;
}

.mosquito-page .mosquito-hero-content > p{
    max-width:590px;

    margin:30px 0 0;

    color:#5c615f;

    font-family:var(--mn-body);
    font-size:16px;
    font-weight:400;
    line-height:1.85;
}

.mosquito-page .hero-actions{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:28px;

    margin-top:32px;
}

.mosquito-page .mosquito-hero-visual{
    position:relative;
    min-width:0;
}

.mosquito-page .hero-main-image{
    position:relative;
    width:100%;
    height:610px;
    overflow:hidden;
    background:#ddd;
}

.mosquito-page .hero-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform 1s var(--mn-ease);
}

.mosquito-page .mosquito-hero-visual:hover .hero-main-image img{
    transform:scale(1.035);
}

.mosquito-page .hero-floating-card{
    position:absolute;
    left:-42px;
    bottom:34px;

    z-index:3;

    width:235px;

    padding:22px 24px;

    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .hero-floating-card span{
    display:block;

    margin-bottom:10px;

    color:var(--mn-red);

    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
}

.mosquito-page .hero-floating-card strong{
    display:block;

    font-family:var(--mn-display);
    font-size:29px;
    font-weight:400;
    line-height:.9;
    text-transform:uppercase;
}

.mosquito-page .hero-number{
    position:absolute;
    top:-13px;
    right:-2px;

    z-index:3;

    color:var(--mn-red);

    font-family:var(--mn-display);
    font-size:90px;
    font-weight:400;
    line-height:1;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.mosquito-page .mosquito-introduction{
    width:100%;
    padding:110px 0;
    background:var(--mn-paper);
}

.mosquito-page .intro-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:84px;
    align-items:center;
}

.mosquito-page .intro-image-wrap{
    position:relative;
    height:570px;
    overflow:hidden;
    background:#ddd;
}

.mosquito-page .intro-image-wrap > img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform 1s var(--mn-ease);
}

.mosquito-page .intro-image-wrap:hover > img{
    transform:scale(1.04);
}

.mosquito-page .intro-image-label{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;

    z-index:2;

    display:flex;
    align-items:end;
    gap:16px;

    color:#fff;
}

.mosquito-page .intro-image-label span{
    color:var(--mn-red);

    font-family:var(--mn-display);
    font-size:42px;
    line-height:.8;
}

.mosquito-page .intro-image-label p{
    margin:0;

    max-width:250px;

    font-size:9px;
    font-weight:800;
    line-height:1.4;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.mosquito-page .intro-content{
    min-width:0;
}

.mosquito-page .intro-content h2{
    max-width:650px;

    margin:0 0 30px;

    font-size:clamp(72px,6.1vw,98px);
    line-height:.78;
}

.mosquito-page .intro-content p{
    max-width:570px;

    margin:0 0 18px;

    color:#555a58;

    font-family:var(--mn-body);
    font-size:14px;
    font-weight:400;
    line-height:1.85;
}

.mosquito-page .intro-content p.large-text{
    color:#303432;
    font-size:16px;
    line-height:1.8;
}

.mosquito-page .intro-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    margin-top:34px;

    border-top:1px solid var(--mn-line);
    border-bottom:1px solid var(--mn-line);
}

.mosquito-page .intro-stats > div{
    padding:18px 18px 18px 0;
    border-right:1px solid var(--mn-line);
}

.mosquito-page .intro-stats > div:last-child{
    border-right:0;
    padding-left:18px;
}

.mosquito-page .intro-stats > div:nth-child(2){
    padding-left:18px;
}

.mosquito-page .intro-stats strong{
    display:block;

    margin-bottom:8px;

    color:var(--mn-red);

    font-family:var(--mn-display);
    font-size:30px;
    font-weight:400;
    line-height:1;
}

.mosquito-page .intro-stats span{
    display:block;

    color:#575c5a;

    font-size:9px;
    font-weight:800;
    line-height:1.35;
    letter-spacing:1px;
    text-transform:uppercase;
}


/* =========================================================
   CATEGORY INTRO — DARK SECTION
========================================================= */

.mosquito-page .category-intro{
    width:100%;
    padding:110px 0;

    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .category-intro-grid{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:84px;

    align-items:end;
}

.mosquito-page .category-intro h2{
    margin:0;

    font-size:clamp(82px,7.2vw,116px);
    line-height:.78;
}

.mosquito-page .category-intro-grid > div:last-child{
    display:flex;
    justify-content:flex-end;
}

.mosquito-page .category-intro p{
    max-width:430px;

    margin:0;

    color:#aeb4b6;

    font-size:14px;
    line-height:1.85;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.mosquito-page .mosquito-category-grid-section{
    width:100%;
    padding:0 0 110px;
    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .mosquito-category-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.mosquito-page .mosquito-category-card{
    position:relative;

    display:flex;
    flex-direction:column;

    min-width:0;
    min-height:610px;

    overflow:hidden;

    background:#15191b;
    color:#fff;
}

.mosquito-page .mosquito-category-card.featured{
    min-height:700px;
}

.mosquito-page .category-card-image{
    position:absolute;
    inset:0;

    z-index:0;
}

.mosquito-page .category-card-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    filter:brightness(.64);

    transition:
        transform 1s var(--mn-ease),
        filter .5s ease;
}

.mosquito-page .mosquito-category-card:hover .category-card-image img{
    transform:scale(1.045);
    filter:brightness(.73);
}

.mosquito-page .category-card-image::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            0deg,
            rgba(4,6,7,.96),
            rgba(4,6,7,.15) 70%
        );
}

.mosquito-page .category-number{
    position:absolute;
    top:22px;
    left:22px;

    z-index:2;

    color:var(--mn-red);

    font-family:var(--mn-display);
    font-size:44px;
    font-weight:400;
    line-height:1;
}

.mosquito-page .category-card-content{
    position:relative;

    z-index:2;

    min-height:610px;

    margin-top:auto;

    padding:34px;
}

.mosquito-page .featured .category-card-content{
    min-height:700px;
}

.mosquito-page .category-card-content small{
    display:block;

    margin-bottom:16px;

    color:#b4babc;

    font-size:8px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.mosquito-page .category-card-content h3{
    max-width:620px;

    margin:0;

    padding-right:50px;

    font-size:10px;
    line-height:.8;
}

.mosquito-page .category-arrow{
    position:absolute;
    right:30px;
    bottom:31px;

    display:flex;
    align-items:center;
    justify-content:center;

    width:45px;
    height:45px;

    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;

    color:#fff;

    transition:
        background .3s ease,
        border-color .3s ease;
}

.mosquito-page .mosquito-category-card:hover .category-arrow{
    background:var(--mn-red);
    border-color:var(--mn-red);
}


/* =========================================================
   PRODUCT DETAIL SECTIONS
========================================================= */

.mosquito-page .net-detail-section{
    width:100%;
    padding:110px 0;
    background:var(--mn-paper);
}

.mosquito-page .net-detail-section.dark-section{
    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .net-detail-grid{
    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:84px;

    align-items:center;
}

.mosquito-page .net-detail-grid.reverse{
    grid-template-columns:.95fr 1.05fr;
}

.mosquito-page .net-detail-grid.reverse .net-detail-image{
    order:2;
}

.mosquito-page .net-detail-grid.reverse .net-detail-content{
    order:1;
}

.mosquito-page .net-detail-image{
    position:relative;

    height:570px;

    overflow:hidden;

    background:#ddd;
}

.mosquito-page .net-detail-image.tall{
    height:610px;
}

.mosquito-page .net-detail-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform 1s var(--mn-ease);
}

.mosquito-page .net-detail-image:hover img{
    transform:scale(1.04);
}

.mosquito-page .detail-index{
    position:absolute;
    left:0;
    bottom:0;

    min-width:86px;

    padding:15px 19px;

    background:var(--mn-red);
    color:#fff;

    font-family:var(--mn-display);
    font-size:30px;
    font-weight:400;
    line-height:1;
}

.mosquito-page .net-detail-content{
    min-width:0;
}

.mosquito-page .net-detail-content h2{
    max-width:650px;

    margin:0 0 28px;

    font-size:clamp(64px,5.7vw,92px);
    line-height:.8;
}

.mosquito-page .net-detail-content h2 span{
    display:block;
}

.mosquito-page .net-detail-content p{
    max-width:570px;

    margin:0 0 18px;

    color:#5b605e;

    font-size:14px;
    font-weight:400;
    line-height:1.85;
}

.mosquito-page .dark-section .net-detail-content p{
    color:#aeb4b6;
}

.mosquito-page .net-detail-content p.detail-lead{
    color:#303432;
    font-size:16px;
    line-height:1.8;
}

.mosquito-page .dark-section .net-detail-content p.detail-lead{
    color:#d1d5d6;
}

.mosquito-page .detail-features{
    margin-top:28px;

    border-top:1px solid var(--mn-line);
}

.mosquito-page .dark-section .detail-features{
    border-color:rgba(255,255,255,.16);
}

.mosquito-page .detail-features > div{
    display:flex;
    align-items:center;
    gap:14px;

    padding:14px 0;

    border-bottom:1px solid var(--mn-line);

    font-size:12px;
    font-weight:600;
}

.mosquito-page .dark-section .detail-features > div{
    border-color:rgba(255,255,255,.16);
}

.mosquito-page .detail-features i{
    color:var(--mn-red);
    font-size:15px;
}

.mosquito-page .detail-link{
    display:inline-flex;
    align-items:center;
    gap:25px;

    width:max-content;

    margin-top:28px;
    padding-bottom:10px;

    border-bottom:1px solid currentColor;

    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;

    transition:color .3s ease;
}

.mosquito-page .detail-link i{
    color:var(--mn-red);
    font-size:17px;
}

.mosquito-page .detail-link:hover{
    color:var(--mn-red);
}


/* =========================================================
   ROLL DOWN FEATURE
========================================================= */

.mosquito-page .rolldown-feature{
    position:relative;

    min-height:650px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .rolldown-background{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(4,6,7,.94),
            rgba(4,6,7,.68) 55%,
            rgba(4,6,7,.25)
        ),
        url("../images/mosquito-rolldown.jpg")
        center/cover no-repeat;
}

.mosquito-page .rolldown-content{
    position:relative;
    z-index:2;

    width:var(--mn-rail);

    margin:0 auto;

    padding:110px 0;
}

.mosquito-page .huge-number{
    margin-bottom:8px;

    color:rgba(255,255,255,.08);

    font-family:var(--mn-display);
    font-size:150px;
    font-weight:400;
    line-height:.65;
}

.mosquito-page .rolldown-content h2{
    max-width:850px;

    margin:0 0 30px;

    font-size:clamp(76px,7.2vw,116px);
    line-height:.78;
}

.mosquito-page .rolldown-content h2 span{
    display:block;
}

.mosquito-page .rolldown-content > p{
    max-width:610px;

    margin:0 0 18px;

    color:#bdc2c4;

    font-size:14px;
    line-height:1.85;
}

.mosquito-page .roll-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    max-width:800px;

    margin:35px 0 32px;

    border-top:1px solid rgba(255,255,255,.17);
    border-bottom:1px solid rgba(255,255,255,.17);
}

.mosquito-page .roll-features > div{
    padding:20px 18px 20px 0;

    border-right:1px solid rgba(255,255,255,.17);
}

.mosquito-page .roll-features > div:not(:first-child){
    padding-left:18px;
}

.mosquito-page .roll-features > div:last-child{
    border-right:0;
}

.mosquito-page .roll-features i{
    display:block;

    margin-bottom:18px;

    color:var(--mn-red);

    font-size:20px;
}

.mosquito-page .roll-features strong{
    display:block;

    margin-bottom:6px;

    font-family:var(--mn-display);
    font-size:30px;
    font-weight:400;
    line-height:.9;
    text-transform:uppercase;
}

.mosquito-page .roll-features span{
    color:#92999c;

    font-size:10px;
    line-height:1.5;
}


/* =========================================================
   UPVC WINDOW TYPES
========================================================= */

.mosquito-page .window-types{
    display:grid;
    grid-template-columns:1fr 1fr;

    margin-top:30px;

    border-top:1px solid var(--mn-line);
    border-bottom:1px solid var(--mn-line);
}

.mosquito-page .window-type{
    display:flex;
    align-items:flex-start;
    gap:15px;

    padding:20px 20px 20px 0;

    border-right:1px solid var(--mn-line);
}

.mosquito-page .window-type:last-child{
    padding-left:20px;
    border-right:0;
}

.mosquito-page .window-type > span{
    color:var(--mn-red);

    font-family:var(--mn-display);
    font-size:28px;
    line-height:1;
}

.mosquito-page .window-type strong{
    display:block;

    margin-bottom:5px;

    font-family:var(--mn-display);
    font-size:30px;
    font-weight:400;
    line-height:.9;
    text-transform:uppercase;
}

.mosquito-page .window-type small{
    color:#777b78;

    font-size:10px;
    line-height:1.5;
}


/* =========================================================
   PROTECTION BAND
========================================================= */

.mosquito-page .protection-band{
    width:100%;
    padding:0;

    background:var(--mn-red);
    color:#fff;
}

.mosquito-page .protection-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.mosquito-page .protection-item{
    min-height:210px;

    padding:30px 25px;

    border-right:1px solid rgba(255,255,255,.3);

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.mosquito-page .protection-item:last-child{
    border-right:0;
}

.mosquito-page .protection-item i{
    margin-bottom:22px;

    font-size:24px;
}

.mosquito-page .protection-item strong{
    margin-bottom:8px;

    font-family:var(--mn-display);
    font-size:38px;
    font-weight:400;
    line-height:.9;
    text-transform:uppercase;
}

.mosquito-page .protection-item span{
    font-size:10px;
    line-height:1.5;
}


/* =========================================================
   BABY INTRO
========================================================= */

.mosquito-page .baby-intro{
    width:100%;
    padding:110px 0;
    background:var(--mn-paper);
}

.mosquito-page .baby-intro-grid{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:84px;

    align-items:end;
}

.mosquito-page .baby-intro-grid h2{
    margin:0;

    font-size:clamp(76px,6.8vw,108px);
    line-height:.78;
}

.mosquito-page .baby-intro-grid > div:last-child{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    gap:25px;
}

.mosquito-page .baby-intro-grid p{
    max-width:410px;

    margin:0;

    color:#606562;

    font-size:14px;
    line-height:1.85;
}

.mosquito-page .baby-count{
    display:block;

    white-space:nowrap;

    color:var(--mn-red);

    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
}


/* =========================================================
   BABY CATEGORY CARDS
========================================================= */

.mosquito-page .baby-category-section{
    width:100%;
    padding:0 0 110px;
    background:var(--mn-paper);
}

.mosquito-page .baby-category-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.mosquito-page .baby-product-card{
    position:relative;

    min-height:610px;

    overflow:hidden;

    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .baby-card-image{
    position:absolute;
    inset:0;
}

.mosquito-page .baby-card-image::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            0deg,
            rgba(4,6,7,.95),
            rgba(4,6,7,.12) 72%
        );
}

.mosquito-page .baby-card-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    filter:brightness(.68);

    transition:
        transform 1s var(--mn-ease),
        filter .5s ease;
}

.mosquito-page .baby-product-card:hover .baby-card-image img{
    transform:scale(1.045);
    filter:brightness(.76);
}

.mosquito-page .baby-card-image > span{
    position:absolute;
    top:22px;
    left:22px;

    z-index:2;

    color:var(--mn-red);

    font-family:var(--mn-display);
    font-size:44px;
    line-height:1;
}

.mosquito-page .baby-card-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    z-index:3;

    padding:35px;
}

.mosquito-page .baby-card-content small{
    display:block;

    margin-bottom:16px;

    color:#b4babc;

    font-size:8px;
    font-weight:800;
    letter-spacing:2px;
}

.mosquito-page .baby-card-content h3{
    margin:0 0 20px;

    max-width:600px;

    font-size:clamp(56px,5vw,76px);
    line-height:.8;
}

.mosquito-page .baby-card-content p{
    max-width:520px;

    margin:0;

    color:#c1c6c8;

    font-size:13px;
    line-height:1.8;
}

.mosquito-page .baby-card-content a{
    display:inline-flex;
    align-items:center;
    gap:24px;

    margin-top:25px;
    padding-bottom:9px;

    border-bottom:1px solid rgba(255,255,255,.5);

    color:#fff;

    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.mosquito-page .baby-card-content a i{
    color:var(--mn-red);
    font-size:17px;
}


/* =========================================================
   BABY DETAIL
========================================================= */

.mosquito-page .baby-detail{
    width:100%;
    padding:110px 0;

    background:var(--mn-paper);
}

.mosquito-page .baby-detail.mother-detail{
    background:#ecebe6;
}

.mosquito-page .baby-detail-grid{
    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:84px;

    align-items:center;
}

.mosquito-page .baby-detail-grid.reverse{
    grid-template-columns:.95fr 1.05fr;
}

.mosquito-page .baby-detail-grid.reverse .baby-detail-image{
    order:2;
}

.mosquito-page .baby-detail-grid.reverse .baby-detail-content{
    order:1;
}

.mosquito-page .baby-detail-image{
    position:relative;

    height:570px;

    overflow:hidden;

    background:#ddd;
}

.mosquito-page .baby-detail-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform 1s var(--mn-ease);
}

.mosquito-page .baby-detail-image:hover img{
    transform:scale(1.04);
}

.mosquito-page .baby-detail-number{
    position:absolute;
    left:0;
    bottom:0;

    min-width:86px;

    padding:15px 19px;

    background:var(--mn-red);
    color:#fff;

    font-family:var(--mn-display);
    font-size:30px;
    line-height:1;
}

.mosquito-page .baby-detail-content h2{
    max-width:620px;

    margin:0 0 28px;

    font-size:clamp(64px,5.7vw,92px);
    line-height:.8;
}

.mosquito-page .baby-detail-content h2 span{
    display:block;
}

.mosquito-page .baby-detail-content > p{
    max-width:570px;

    margin:0 0 17px;

    color:#595e5c;

    font-size:14px;
    line-height:1.85;
}

.mosquito-page .baby-feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;

    margin-top:28px;

    border-top:1px solid var(--mn-line);
    border-bottom:1px solid var(--mn-line);
}

.mosquito-page .baby-feature-list > span{
    display:flex;
    align-items:center;
    gap:10px;

    min-height:52px;

    padding:10px 15px 10px 0;

    border-right:1px solid var(--mn-line);

    font-size:11px;
    font-weight:600;
}

.mosquito-page .baby-feature-list > span:nth-child(2n){
    padding-left:15px;
    border-right:0;
}

.mosquito-page .baby-feature-list > span:nth-child(-n+2){
    border-bottom:1px solid var(--mn-line);
}

.mosquito-page .baby-feature-list i{
    color:var(--mn-red);
}


/* =========================================================
   BABY BENEFITS
========================================================= */

.mosquito-page .baby-benefits{
    width:100%;
    padding:110px 0;

    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .baby-benefits-heading{
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:84px;

    align-items:end;

    margin-bottom:65px;
}

.mosquito-page .baby-benefits-heading h2{
    margin:0;

    font-size:clamp(76px,6.8vw,108px);
    line-height:.78;
}

.mosquito-page .baby-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    border-top:1px solid rgba(255,255,255,.16);
    border-bottom:1px solid rgba(255,255,255,.16);
}

.mosquito-page .baby-benefit{
    min-height:230px;

    padding:30px 25px;

    border-right:1px solid rgba(255,255,255,.16);
}

.mosquito-page .baby-benefit:last-child{
    border-right:0;
}

.mosquito-page .benefit-icon{
    margin-bottom:45px;

    color:var(--mn-red);

    font-size:23px;
}

.mosquito-page .baby-benefit h3{
    margin:0 0 12px;

    font-size:40px;
    line-height:.9;
}

.mosquito-page .baby-benefit p{
    max-width:220px;

    margin:0;

    color:#9ca2a5;

    font-size:11px;
    line-height:1.7;
}


/* =========================================================
   GALLERY
========================================================= */

.mosquito-page .mosquito-gallery{
    width:100%;
    padding:110px 0;

    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .gallery-heading{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:84px;

    align-items:end;

    width:var(--mn-rail);
    margin:0 auto 65px;
}

.mosquito-page .gallery-heading h2{
    margin:0;

    font-size:clamp(76px,6.8vw,108px);
    line-height:.78;
}

.mosquito-page .gallery-heading > p{
    max-width:360px;

    margin:0 0 2px;

    color:#aab0b2;

    font-size:14px;
    line-height:1.85;
}

.mosquito-page .gallery-grid{
    width:var(--mn-rail);
    margin:0 auto;

    display:grid;

    grid-template-columns:1.15fr .85fr .85fr;
    grid-template-rows:300px 300px;

    gap:16px;
}

.mosquito-page .gallery-image{
    position:relative;

    min-width:0;

    overflow:hidden;

    background:#15191b;
}

.mosquito-page .gallery-image.gallery-large{
    grid-row:span 2;
}

.mosquito-page .gallery-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform 1s var(--mn-ease);
}

.mosquito-page .gallery-image:hover img{
    transform:scale(1.045);
}

.mosquito-page .gallery-image::after{
    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
        0deg,
        rgba(4,6,7,.65),
        transparent 50%
    );

    pointer-events:none;
}

.mosquito-page .gallery-image span{
    position:absolute;
    left:18px;
    bottom:17px;

    z-index:2;

    color:#fff;

    font-size:8px;
    font-weight:800;
    letter-spacing:2px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.mosquito-page .mosquito-final-cta{
    position:relative;

    min-height:620px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:var(--mn-black);
    color:#fff;
}

.mosquito-page .cta-background{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(4,6,7,.95),
            rgba(4,6,7,.68) 55%,
            rgba(4,6,7,.22)
        ),
        url("../images/mosquito-detail-04.jpg")
        center/cover no-repeat;
}

.mosquito-page .cta-content{
    position:relative;
    z-index:2;

    width:var(--mn-rail);

    margin:0 auto;

    padding:110px 0;
}

.mosquito-page .cta-content h2{
    max-width:850px;

    margin:0 0 35px;

    font-size:clamp(80px,8vw,128px);
    line-height:.78;
}

.mosquito-page .cta-content h2 span{
    display:block;
}

.mosquito-page .cta-content p{
    max-width:570px;

    margin:0 0 30px;

    color:#c0c5c7;

    font-size:15px;
    line-height:1.85;
}


/* =========================================================
   TABLET — SAME BREAKPOINT FAMILY AS INDEX
========================================================= */

@media (max-width:900px){

    .mosquito-page{
        --mn-side:22px;
    }

    .mosquito-page .mosquito-hero-grid{
        min-height:auto;

        grid-template-columns:1fr;

        gap:55px;

        padding:100px 0 90px;
    }

    .mosquito-page .mosquito-hero-content h1{
        font-size:clamp(76px,12vw,108px);
    }

    .mosquito-page .hero-main-image{
        height:520px;
    }

    .mosquito-page .hero-floating-card{
        left:20px;
    }

    .mosquito-page .hero-number{
        right:15px;
    }

    .mosquito-page .mosquito-introduction,
    .mosquito-page .net-detail-section,
    .mosquito-page .baby-detail,
    .mosquito-page .baby-benefits{
        padding:90px 0;
    }

    .mosquito-page .intro-grid,
    .mosquito-page .net-detail-grid,
    .mosquito-page .net-detail-grid.reverse,
    .mosquito-page .baby-detail-grid,
    .mosquito-page .baby-detail-grid.reverse{
        grid-template-columns:1fr;
        gap:50px;
    }

    .mosquito-page .net-detail-grid.reverse .net-detail-image,
    .mosquito-page .net-detail-grid.reverse .net-detail-content,
    .mosquito-page .baby-detail-grid.reverse .baby-detail-image,
    .mosquito-page .baby-detail-grid.reverse .baby-detail-content{
        order:initial;
    }

    .mosquito-page .intro-image-wrap,
    .mosquito-page .net-detail-image,
    .mosquito-page .net-detail-image.tall,
    .mosquito-page .baby-detail-image{
        height:520px;
    }

    .mosquito-page .category-intro{
        padding:90px 0;
    }

    .mosquito-page .category-intro-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .mosquito-page .category-intro-grid > div:last-child{
        justify-content:flex-start;
    }

    .mosquito-page .mosquito-category-grid{
        grid-template-columns:1fr 1fr;
    }

    .mosquito-page .mosquito-category-card,
    .mosquito-page .mosquito-category-card.featured{
        min-height:520px;
    }

    .mosquito-page .category-card-content,
    .mosquito-page .featured .category-card-content{
        min-height:520px;
    }

    .mosquito-page .protection-grid{
        grid-template-columns:1fr 1fr;
    }

    .mosquito-page .protection-item:nth-child(2){
        border-right:0;
    }

    .mosquito-page .protection-item:nth-child(-n+2){
        border-bottom:1px solid rgba(255,255,255,.3);
    }

    .mosquito-page .baby-intro{
        padding:90px 0;
    }

    .mosquito-page .baby-intro-grid,
    .mosquito-page .baby-benefits-heading{
        grid-template-columns:1fr;
        gap:30px;
    }

    .mosquito-page .baby-intro-grid > div:last-child{
        justify-content:flex-start;
        align-items:flex-start;
    }

    .mosquito-page .baby-category-grid{
        grid-template-columns:1fr 1fr;
    }

    .mosquito-page .baby-product-card{
        min-height:520px;
    }

    .mosquito-page .baby-benefit-grid{
        grid-template-columns:1fr 1fr;
    }

    .mosquito-page .baby-benefit:nth-child(2){
        border-right:0;
    }

    .mosquito-page .baby-benefit:nth-child(-n+2){
        border-bottom:1px solid rgba(255,255,255,.16);
    }

    .mosquito-page .mosquito-gallery{
        padding:90px 0;
    }

    .mosquito-page .gallery-heading{
        grid-template-columns:1fr;
        gap:25px;
    }

    .mosquito-page .gallery-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:320px 240px 240px;
    }

    .mosquito-page .gallery-image.gallery-large{
        grid-column:span 2;
        grid-row:auto;
    }

    .mosquito-page .mosquito-final-cta{
        min-height:560px;
    }

    .mosquito-page .cta-content{
        padding:90px 0;
    }

    .mosquito-page .rolldown-feature{
        min-height:560px;
    }

    .mosquito-page .rolldown-content{
        width:var(--mn-rail);
        padding:90px 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:650px){

    .mosquito-page{
        --mn-side:15px;
    }

    .mosquito-page .mosquito-hero-grid{
        gap:40px;
        padding:90px 0 70px;
    }

    .mosquito-page .mosquito-hero-content h1{
        font-size:clamp(64px,17vw,92px);
        line-height:.8;
    }

    .mosquito-page .mosquito-hero-content > p{
        margin-top:22px;
        font-size:14px;
        line-height:1.8;
    }

    .mosquito-page .hero-actions{
        align-items:flex-start;
        flex-direction:column;
        gap:20px;
    }

    .mosquito-page .hero-main-image{
        height:390px;
    }

    .mosquito-page .hero-floating-card{
        left:12px;
        bottom:15px;
        width:210px;
        padding:18px 20px;
    }

    .mosquito-page .hero-floating-card strong{
        font-size:25px;
    }

    .mosquito-page .hero-number{
        top:-7px;
        right:8px;
        font-size:70px;
    }

    .mosquito-page .mosquito-introduction,
    .mosquito-page .net-detail-section,
    .mosquito-page .baby-detail,
    .mosquito-page .baby-benefits,
    .mosquito-page .mosquito-gallery{
        padding:80px 0;
    }

    .mosquito-page .intro-grid,
    .mosquito-page .net-detail-grid,
    .mosquito-page .net-detail-grid.reverse,
    .mosquito-page .baby-detail-grid,
    .mosquito-page .baby-detail-grid.reverse{
        gap:38px;
    }

    .mosquito-page .intro-image-wrap,
    .mosquito-page .net-detail-image,
    .mosquito-page .net-detail-image.tall,
    .mosquito-page .baby-detail-image{
        height:390px;
    }

    .mosquito-page .intro-content h2,
    .mosquito-page .net-detail-content h2,
    .mosquito-page .baby-detail-content h2{
        font-size:clamp(58px,15vw,82px);
        line-height:.8;
    }

    .mosquito-page .intro-content p,
    .mosquito-page .net-detail-content p,
    .mosquito-page .baby-detail-content > p{
        font-size:14px;
    }

    .mosquito-page .intro-content p.large-text{
        font-size:15px;
    }

    .mosquito-page .intro-stats{
        grid-template-columns:1fr;
    }

    .mosquito-page .intro-stats > div,
    .mosquito-page .intro-stats > div:nth-child(2),
    .mosquito-page .intro-stats > div:last-child{
        padding:14px 0;
        border-right:0;
        border-bottom:1px solid var(--mn-line);
    }

    .mosquito-page .intro-stats > div:last-child{
        border-bottom:0;
    }

    .mosquito-page .category-intro{
        padding:80px 0;
    }

    .mosquito-page .category-intro h2{
        font-size:clamp(64px,17vw,92px);
    }

    .mosquito-page .mosquito-category-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .mosquito-page .mosquito-category-card,
    .mosquito-page .mosquito-category-card.featured{
        min-height:470px;
    }

    .mosquito-page .category-card-content,
    .mosquito-page .featured .category-card-content{
        min-height:470px;
        padding:25px;
    }

    .mosquito-page .category-card-content h3{
        font-size:clamp(50px,14vw,72px);
    }

    .mosquito-page .category-number,
    .mosquito-page .baby-card-image > span{
        top:17px;
        left:17px;
        font-size:38px;
    }

    .mosquito-page .rolldown-feature{
        min-height:570px;
    }

    .mosquito-page .rolldown-content{
        width:var(--mn-rail);
        padding:80px 0;
    }

    .mosquito-page .huge-number{
        font-size:110px;
    }

    .mosquito-page .rolldown-content h2{
        font-size:clamp(64px,17vw,92px);
    }

    .mosquito-page .roll-features{
        grid-template-columns:1fr;
        max-width:none;
    }

    .mosquito-page .roll-features > div,
    .mosquito-page .roll-features > div:not(:first-child){
        padding:17px 0;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.17);
    }

    .mosquito-page .roll-features > div:last-child{
        border-bottom:0;
    }

    .mosquito-page .window-types{
        grid-template-columns:1fr;
    }

    .mosquito-page .window-type,
    .mosquito-page .window-type:last-child{
        padding:16px 0;
        border-right:0;
        border-bottom:1px solid var(--mn-line);
    }

    .mosquito-page .window-type:last-child{
        border-bottom:0;
    }

    .mosquito-page .protection-grid{
        grid-template-columns:1fr;
    }

    .mosquito-page .protection-item{
        min-height:150px;
        padding:25px 0;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.3);
    }

    .mosquito-page .protection-item:last-child{
        border-bottom:0;
    }

    .mosquito-page .baby-intro{
        padding:80px 0;
    }

    .mosquito-page .baby-intro-grid h2,
    .mosquito-page .baby-benefits-heading h2{
        font-size:clamp(64px,17vw,92px);
    }

    .mosquito-page .baby-category-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .mosquito-page .baby-product-card{
        min-height:480px;
    }

    .mosquito-page .baby-card-content{
        padding:25px;
    }

    .mosquito-page .baby-card-content h3{
        font-size:clamp(52px,14vw,72px);
    }

    .mosquito-page .baby-feature-list{
        grid-template-columns:1fr;
    }

    .mosquito-page .baby-feature-list > span,
    .mosquito-page .baby-feature-list > span:nth-child(2){
        padding:12px 0;
        border-right:0;
        border-bottom:1px solid var(--mn-line);
    }

    .mosquito-page .baby-feature-list > span:last-child{
        border-bottom:0;
    }

    .mosquito-page .baby-benefit-grid{
        grid-template-columns:1fr;
    }

    .mosquito-page .baby-benefit{
        min-height:auto;
        padding:25px 0;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.16);
    }

    .mosquito-page .baby-benefit:last-child{
        border-bottom:0;
    }

    .mosquito-page .benefit-icon{
        margin-bottom:28px;
    }

    .mosquito-page .mosquito-gallery{
        padding:80px 0;
    }

    .mosquito-page .gallery-heading h2{
        font-size:clamp(64px,17vw,92px);
    }

    .mosquito-page .gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:300px 230px 230px 230px 230px;
        gap:12px;
    }

    .mosquito-page .gallery-image.gallery-large{
        grid-column:auto;
    }

    .mosquito-page .mosquito-final-cta{
        min-height:560px;
    }

    .mosquito-page .cta-content{
        padding:80px 0;
    }

    .mosquito-page .cta-content h2{
        font-size:clamp(66px,17vw,94px);
    }

    .mosquito-page .cta-content p{
        font-size:14px;
    }

    .mosquito-page .primary-btn{
        width:100%;
        max-width:280px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:360px){

    .mosquito-page{
        --mn-side:12px;
    }

    .mosquito-page .mosquito-hero-content h1{
        font-size:64px;
    }

    .mosquito-page .intro-content h2,
    .mosquito-page .net-detail-content h2,
    .mosquito-page .baby-detail-content h2{
        font-size:58px;
    }

    .mosquito-page .category-intro h2,
    .mosquito-page .baby-intro-grid h2,
    .mosquito-page .baby-benefits-heading h2,
    .mosquito-page .gallery-heading h2{
        font-size:62px;
    }

    .mosquito-page .hero-main-image,
    .mosquito-page .intro-image-wrap,
    .mosquito-page .net-detail-image,
    .mosquito-page .net-detail-image.tall,
    .mosquito-page .baby-detail-image{
        height:330px;
    }

    .mosquito-page .mosquito-category-card,
    .mosquito-page .mosquito-category-card.featured,
    .mosquito-page .category-card-content,
    .mosquito-page .featured .category-card-content{
        min-height:430px;
    }

    .mosquito-page .baby-product-card{
        min-height:440px;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    .mosquito-page *,
    .mosquito-page *::before,
    .mosquito-page *::after{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }
}
/* =========================================================
   MOSQUITO NET — CATEGORY HEADER
   INDEX PAGE ALIGNMENT
========================================================= */

.mosquito-page .category-intro {
    width: 100%;
    background: var(--mn-black);
    color: #fff;

    /* Extra top space because the site header is fixed */
    padding: 150px 0 95px;

    position: relative;
    scroll-margin-top: 90px;
}

.mosquito-page .category-intro .container {
    width: var(--mn-rail) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mosquito-page .category-intro-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 84px;

    align-items: end;
}

/* LEFT SIDE */

.mosquito-page .category-intro-grid > div:first-child {
    min-width: 0;
}

.mosquito-page .category-intro .section-tag {
    margin-bottom: 24px;
}

.mosquito-page .category-intro h2 {
    width: 100%;
    max-width: 650px;

    margin: 0;

    font-family: var(--mn-display) !important;
    font-size: clamp(80px, 7.2vw, 116px);
    font-weight: 400 !important;
    line-height: .78;
    letter-spacing: 0 !important;

    text-transform: uppercase;
}

.mosquito-page .category-intro h2 span {
    display: block;
    color: var(--mn-red);
}


/* RIGHT SIDE */

.mosquito-page .category-intro-grid > div:last-child {
    min-width: 0;

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.mosquito-page .category-intro p {
    width: 100%;
    max-width: 430px;

    margin: 0;

    color: #aeb4b6;

    font-family: var(--mn-body) !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0;
}


/* =========================================================
   MOSQUITO CATEGORY CARDS
========================================================= */

.mosquito-page .mosquito-category-grid-section {
    width: 100%;

    padding: 0 0 110px;

    background: var(--mn-black);
    color: #fff;
}

.mosquito-page .mosquito-category-grid-section .container {
    width: var(--mn-rail) !important;
    max-width: none !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mosquito-page .mosquito-category-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;

    align-items: stretch;
}


/* CARD */

.mosquito-page .mosquito-category-card {
    position: relative;

    display: block;

    width: 100%;
    min-width: 0;
    height: 610px;

    overflow: hidden;

    background: #15191b;
    color: #fff;

    scroll-margin-top: 100px;
}


/* CARD IMAGE */

.mosquito-page .category-card-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
    overflow: hidden;
}

.mosquito-page .category-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: brightness(.64);

    transition:
        transform 1s var(--mn-ease),
        filter .5s ease;
}

.mosquito-page .category-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4,6,7,.08) 0%,
            rgba(4,6,7,.20) 35%,
            rgba(4,6,7,.96) 100%
        );

    pointer-events: none;
}

.mosquito-page .mosquito-category-card:hover
.category-card-image img {
    transform: scale(1.045);
    filter: brightness(.73);
}


/* NUMBER */

.mosquito-page .category-number {
    position: absolute;

    top: 24px;
    left: 24px;

    z-index: 3;

    color: var(--mn-red);

    font-family: var(--mn-display) !important;
    font-size: 44px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: 0;
}


/* CARD CONTENT */

.mosquito-page .category-card-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;

    width: 100%;
    height: 100%;

    padding: 38px 34px 34px;
}


/* SMALL CATEGORY LABEL */

.mosquito-page .category-card-content small {
    display: block;

    margin: 0 0 16px;

    color: #b4babc;

    font-family: var(--mn-body) !important;
    font-size: 8px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: 2px;

    text-transform: uppercase;
}


/* CARD HEADING */

.mosquito-page .category-card-content h3 {
    width: 100%;
    max-width: 620px;

    margin: 0;
    padding: 0 50px 0 0;

    color: #fff;

    font-family: var(--mn-display) !important;
    font-size: 40px  !important;
    font-weight: 400 !important;

    line-height: .80;
    letter-spacing: 1 !important;

    text-transform: uppercase;
}


/* ARROW */

.mosquito-page .category-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;

    color: #fff;

    transition:
        background .3s ease,
        border-color .3s ease;
}

.mosquito-page .mosquito-category-card:hover
.category-arrow {
    background: var(--mn-red);
    border-color: var(--mn-red);
}


/* =========================================================
   IMPORTANT:
   ANCHOR TARGETS MUST CLEAR FIXED HEADER
========================================================= */

.mosquito-page #horizontal-net,
.mosquito-page #vertical-net,
.mosquito-page #rolldown-net,
.mosquito-page #upvc-net {
    scroll-margin-top: 105px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .mosquito-page .category-intro {
        padding: 125px 0 85px;
    }

    .mosquito-page .category-intro-grid {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .mosquito-page .category-intro-grid > div:last-child {
        justify-content: flex-start;
    }

    .mosquito-page .category-intro p {
        max-width: 520px;
    }

    .mosquito-page .mosquito-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mosquito-page .mosquito-category-card {
        height: 520px;
    }

    .mosquito-page .category-card-content {
        padding: 32px 28px 28px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: clamp(48px, 6vw, 64px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .mosquito-page .category-intro {
        padding: 105px 0 70px;
    }

    .mosquito-page .category-intro-grid {
        row-gap: 28px;
    }

    .mosquito-page .category-intro h2 {
        font-size: clamp(64px, 17vw, 92px);
    }

    .mosquito-page .category-intro p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.8;
    }

    .mosquito-page .mosquito-category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mosquito-page .mosquito-category-card {
        height: 470px;
    }

    .mosquito-page .category-card-content {
        padding: 28px 25px 25px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: clamp(50px, 14vw, 72px);
        line-height: .80;
    }

    .mosquito-page .category-number {
        top: 17px;
        left: 17px;
        font-size: 38px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .mosquito-page .category-intro {
        padding-top: 95px;
    }

    .mosquito-page .category-intro h2 {
        font-size: 62px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: 56px;
    }
}
/* =========================================================
   CATEGORY CARD — CORRECT VERTICAL ALIGNMENT
========================================================= */

.mosquito-page .category-card-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    /* KEEP CONTENT AT THE BOTTOM */
    justify-content: flex-end;

    width: 100%;
    height: 100%;

    padding: 34px;
}


/* SMALL LABEL */

.mosquito-page .category-card-content small {
    display: block;

    margin: 0 0 16px;

    color: #b4babc;

    font-family: var(--mn-body) !important;
    font-size: 8px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: 2px;

    text-transform: uppercase;
}


/* MAIN HEADING */

.mosquito-page .category-card-content h3 {
    width: 100%;
    max-width: 620px;

    margin: 0;
    padding: 0 55px 0 0;

    color: #fff;

    font-family: var(--mn-display) !important;
    font: size 45px;
    font-weight: 400 !important;

    line-height: .80;
    letter-spacing: 1 !important;

    text-transform: uppercase;
}


/* NUMBER STAYS AT TOP */

.mosquito-page .category-number {
    position: absolute;

    top: 24px;
    left: 24px;

    z-index: 3;

    color: var(--mn-red);

    font-family: var(--mn-display) !important;
    font-size: 44px;
    font-weight: 400;

    line-height: 1;
}


/* ARROW STAYS AT BOTTOM RIGHT */

.mosquito-page .category-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;

    color: #fff;
}


/* =========================================================
   CARD HEIGHT
========================================================= */

.mosquito-page .mosquito-category-card {
    position: relative;

    width: 100%;
    height: 610px;

    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .mosquito-page .mosquito-category-card {
        height: 520px;
    }

    .mosquito-page .category-card-content {
        padding: 30px 28px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: clamp(48px, 6vw, 64px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .mosquito-page .mosquito-category-card {
        height: 470px;
    }

    .mosquito-page .category-card-content {
        padding: 25px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: clamp(50px, 14vw, 72px);
        line-height: .80;
    }

    .mosquito-page .category-number {
        top: 17px;
        left: 17px;
        font-size: 38px;
    }

    .mosquito-page .category-arrow {
        right: 20px;
        bottom: 20px;
    }
}
/* =========================================================
   MOSQUITO CATEGORY CARDS
   FINAL ALIGNMENT FIX
========================================================= */

.mosquito-page .mosquito-category-grid-section {
    width: 100%;
    padding: 0 0 110px;
    background: var(--mn-black);
}


/* TWO EQUAL COLUMNS */

.mosquito-page .mosquito-category-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;

    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.mosquito-page .mosquito-category-card,
.mosquito-page .mosquito-category-card.featured {
    position: relative;

    display: block;

    width: 100%;
    height: 610px;
    min-height: 610px;

    overflow: hidden;

    background: #15191b;
    color: #fff;

    scroll-margin-top: 100px;
}


/* =========================================================
   IMAGE
========================================================= */

.mosquito-page .category-card-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
    overflow: hidden;
}

.mosquito-page .category-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: brightness(.58);

    transition:
        transform 1s var(--mn-ease),
        filter .5s ease;
}

.mosquito-page .category-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(5,7,8,.08) 0%,
            rgba(5,7,8,.18) 40%,
            rgba(5,7,8,.96) 100%
        );
}

.mosquito-page .mosquito-category-card:hover
.category-card-image img {
    transform: scale(1.045);
    filter: brightness(.70);
}


/* =========================================================
   NUMBER — TOP LEFT
========================================================= */

.mosquito-page .category-number {
    position: absolute;

    top: 24px;
    left: 24px;

    z-index: 4;

    color: var(--mn-red);

    font-family: var(--mn-display) !important;
    font-size: 44px;
    font-weight: 400 !important;

    line-height: 1;
    letter-spacing: 0;
}


/* =========================================================
   CARD CONTENT
   THIS IS THE IMPORTANT FIX
========================================================= */

.mosquito-page .category-card-content {
    position: absolute;
    inset: 0;

    z-index: 3;

    display: flex;
    flex-direction: column;

    /* PUSH TEXT TO BOTTOM */
    justify-content: flex-end;
    align-items: flex-start;

    width: 100%;
    height: 100%;

    /* REMOVE THE OLD 610px MIN-HEIGHT */
    min-height: 0 !important;

    margin: 0 !important;

    padding: 34px 34px 42px;
}


/* =========================================================
   CATEGORY LABEL
========================================================= */

.mosquito-page .category-card-content small {
    display: block;

    margin: 0 0 16px;

    color: rgba(255,255,255,.70);

    font-family: var(--mn-body) !important;
    font-size: 8px;
    font-weight: 800 !important;

    line-height: 1;
    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.mosquito-page .category-card-content h3 {
    width: 100%;
    max-width: 650px;

    margin: 0 !important;
    padding: 0 60px 0 0;

    color: #fff;

    font-family: var(--mn-display) !important;
    font-size: clamp(52px, 4.55vw, 70px);
    font-weight: 400 !important;

    line-height: .80;
    letter-spacing: 1px !important;

    text-transform: uppercase;
}


/* =========================================================
   ARROW
========================================================= */

.mosquito-page .category-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;

    color: #fff;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.mosquito-page .mosquito-category-card:hover
.category-arrow {
    background: var(--mn-red);
    border-color: var(--mn-red);
    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .mosquito-page .mosquito-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mosquito-page .mosquito-category-card,
    .mosquito-page .mosquito-category-card.featured {
        height: 520px;
        min-height: 520px;
    }

    .mosquito-page .category-card-content {
        padding: 30px 28px 34px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: clamp(46px, 6vw, 62px);
    }

    .mosquito-page .category-number {
        top: 20px;
        left: 20px;
        font-size: 40px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .mosquito-page .mosquito-category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mosquito-page .mosquito-category-card,
    .mosquito-page .mosquito-category-card.featured {
        height: 470px;
        min-height: 470px;
    }

    .mosquito-page .category-card-content {
        padding: 25px 25px 30px;
    }

    .mosquito-page .category-card-content small {
        margin-bottom: 14px;
        font-size: 8px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: clamp(48px, 14vw, 70px);
        line-height: .80;
        padding-right: 45px;
    }

    .mosquito-page .category-number {
        top: 17px;
        left: 17px;
        font-size: 38px;
    }

    .mosquito-page .category-arrow {
        right: 18px;
        bottom: 18px;

        width: 44px;
        height: 44px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .mosquito-page .mosquito-category-card,
    .mosquito-page .mosquito-category-card.featured {
        height: 450px;
        min-height: 450px;
    }

    .mosquito-page .category-card-content h3 {
        font-size: 54px;
    }
}
/* =========================================================
   REGAL MOSQUITO NETS
   BACKGROUND IMAGE ENHANCEMENT
========================================================= */


/* =========================================================
   01 — HERO BACKGROUND
========================================================= */

.mosquito-page .mosquito-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.94) 35%,
            rgba(0, 0, 0, 0.78) 65%,
            rgba(0, 0, 0, 0.55) 100%
        ),
        url("../images/mosquito-intro.png")
        center/cover no-repeat;

    color: #fff;
}

/* Remove previous light overlay */
.mosquito-page .mosquito-hero::before {
    display: none !important;
}

/* Keep content above background */
.mosquito-page .mosquito-hero .container,
.mosquito-page .mosquito-hero-grid {
    position: relative;
    z-index: 2;
}

/* White text */
.mosquito-page .mosquito-hero-content h1,
.mosquito-page .mosquito-hero-content h1 span {
    color: #fff;
}

.mosquito-page .mosquito-hero-content > p {
    color: rgba(255, 255, 255, 0.72);
}

.mosquito-page .mosquito-hero-content .secondary-btn {
    color: #fff;
}


/* subtle image texture */

.mosquito-page .mosquito-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(247,246,242,.95),
            rgba(247,246,242,.55) 55%,
            rgba(247,246,242,.12)
        );

    z-index: 0;

    pointer-events: none;
}


/* keep content above background */

.mosquito-page .mosquito-hero .container {
    position: relative;
    z-index: 2;
}


/* hero image slightly separated */

.mosquito-page .hero-main-image {
    box-shadow:
        0 25px 70px rgba(0,0,0,.18);
}


/* =========================================================
   02 — INTRODUCTION BACKGROUND
========================================================= */

.mosquito-page .mosquito-introduction {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(247,246,242,.97),
            rgba(247,246,242,.88)
        ),
        url("../images/mosquito-horizontal.png")
        center/cover no-repeat;
}


/* subtle decorative background */

.mosquito-page .mosquito-introduction::before {
    content: "REGAL";

    position: absolute;

    right: -40px;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(9,11,14,.035);

    font-family: var(--mn-display);
    font-size: clamp(180px,20vw,330px);
    line-height: .7;

    pointer-events: none;
    white-space: nowrap;
}


/* keep actual content above decoration */

.mosquito-page .mosquito-introduction .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   03 — MOSQUITO CATEGORY INTRO
   DARK IMAGE BACKGROUND
========================================================= */

.mosquito-page .category-intro {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5,7,8,.96),
            rgba(5,7,8,.82) 48%,
            rgba(5,7,8,.60) 100%
        ),
        url("../images/mosquito-horizontal.png")
        center/cover no-repeat;
}


/* large background number */

.mosquito-page .category-intro::after {
    content: "03";

    position: absolute;

    right: 2%;
    bottom: -55px;

    color: rgba(255,255,255,.045);

    font-family: var(--mn-display);
    font-size: clamp(260px,30vw,480px);
    line-height: .65;

    pointer-events: none;
}


/* content above background */

.mosquito-page .category-intro .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   04 — CATEGORY CARDS
   KEEP PRODUCT IMAGES STRONG
========================================================= */

.mosquito-page .mosquito-category-card {
    box-shadow:
        0 20px 55px rgba(0,0,0,.18);
}

.mosquito-page .mosquito-category-card::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 0%,
            rgba(0,0,0,.08) 35%,
            rgba(0,0,0,.88) 100%
        );

    pointer-events: none;
}


/* =========================================================
   05 — HORIZONTAL PRODUCT DETAIL
   LIGHT IMAGE TEXTURE
========================================================= */

.mosquito-page #horizontal-net {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(247,246,242,.97),
            rgba(247,246,242,.90)
        ),
        url("../images/mosquito-horizontal.png")
        center/cover no-repeat;
}

.mosquito-page #horizontal-net::before {
    content: "";

    position: absolute;
    width: 420px;
    height: 420px;

    right: -180px;
    top: -150px;

    background:
        url("../images/mosquito-horizontal.png")
        center/cover no-repeat;

    opacity: .08;

    border-radius: 50%;

    pointer-events: none;
}

.mosquito-page #horizontal-net .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   06 — VERTICAL PRODUCT DETAIL
   DARK IMAGE BACKGROUND
========================================================= */

.mosquito-page #vertical-net {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(7,9,10,.96),
            rgba(7,9,10,.82) 50%,
            rgba(7,9,10,.58)
        ),
        url("../images/mosquito-vertical.png")
        center/cover no-repeat;
}


/* subtle image on dark section */

.mosquito-page #vertical-net::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(237,45,53,.08),
            transparent 35%
        );

    pointer-events: none;
}

.mosquito-page #vertical-net .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   07 — ROLL DOWN
   ALREADY IMAGE BASED — MAKE IT STRONGER
========================================================= */

.mosquito-page .rolldown-feature {
    position: relative;
    overflow: hidden;

    min-height: 700px;
}

.mosquito-page .rolldown-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,6,7,.96) 0%,
            rgba(4,6,7,.78) 42%,
            rgba(4,6,7,.35) 100%
        ),
        url("../images/mosquito-rolldown.png")
        center/cover no-repeat;

    transform: scale(1.01);
}


/* =========================================================
   08 — UPVC PRODUCT DETAIL
========================================================= */

.mosquito-page #upvc-net {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(247,246,242,.97),
            rgba(247,246,242,.86)
        ),
        url("../images/mosquito-upvc.png")
        center/cover no-repeat;
}

.mosquito-page #upvc-net::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 55%,
            rgba(237,45,53,.045)
        );

    pointer-events: none;
}

.mosquito-page #upvc-net .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   09 — PROTECTION BAND
   IMAGE BACKGROUND
========================================================= */

.mosquito-page .protection-band {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(237,45,53,.96),
            rgba(190,25,34,.90)
        ),
        url("../images/mosquito-upvc.png")
        center/cover no-repeat;
}

.mosquito-page .protection-band::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 100px,
            rgba(255,255,255,.025) 101px,
            transparent 102px
        );

    pointer-events: none;
}

.mosquito-page .protection-band .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   10 — BABY INTRO
========================================================= */

.mosquito-page .baby-intro {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(247,246,242,.96),
            rgba(247,246,242,.82)
        ),
        url("../images/baby-mothertouch.png")
        center/cover no-repeat;
}


/* large soft background number */

.mosquito-page .baby-intro::after {
    content: "04";

    position: absolute;

    right: 2%;
    bottom: -55px;

    color: rgba(9,11,14,.045);

    font-family: var(--mn-display);
    font-size: clamp(260px,30vw,480px);
    line-height: .65;

    pointer-events: none;
}

.mosquito-page .baby-intro .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   11 — BABY CATEGORY SECTION
========================================================= */

.mosquito-page .baby-category-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(247,246,242,.92),
            rgba(247,246,242,.80)
        ),
        url("../images/baby-tollyjoy.png")
        center/cover no-repeat;
}


/* =========================================================
   12 — BABY BENEFITS
   DARK IMAGE BACKGROUND
========================================================= */

.mosquito-page .baby-benefits {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5,7,8,.96),
            rgba(5,7,8,.84) 50%,
            rgba(5,7,8,.60)
        ),
        url("../images/baby-mothertouch.png")
        center/cover no-repeat;
}

.mosquito-page .baby-benefits::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(237,45,53,.10),
            transparent 32%
        );

    pointer-events: none;
}

.mosquito-page .baby-benefits .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   13 — GALLERY BACKGROUND
========================================================= */

.mosquito-page .mosquito-gallery {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5,7,8,.95),
            rgba(5,7,8,.82)
        ),
        url("../images/mosquito-hero.png")
        center/cover no-repeat;
}

.mosquito-page .mosquito-gallery::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(237,45,53,.08),
            transparent 30%
        );

    pointer-events: none;
}

.mosquito-page .mosquito-gallery .gallery-heading,
.mosquito-page .mosquito-gallery .gallery-grid {
    position: relative;
    z-index: 2;
}


/* =========================================================
   14 — FINAL CTA
   STRONG FULL BACKGROUND IMAGE
========================================================= */

.mosquito-page .mosquito-final-cta {
    min-height: 680px;
}

.mosquito-page .cta-background {
    background:
        linear-gradient(
            90deg,
            rgba(4,6,7,.97) 0%,
            rgba(4,6,7,.82) 42%,
            rgba(4,6,7,.38) 75%,
            rgba(4,6,7,.20) 100%
        ),
        url("../images/mosquito-upvc.png")
        center/cover no-repeat;
}


/* subtle red glow */

.mosquito-page .mosquito-final-cta::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    bottom: -240px;

    border-radius: 50%;

    background: rgba(237,45,53,.10);

    filter: blur(20px);

    pointer-events: none;
}

.mosquito-page .mosquito-final-cta .cta-content {
    position: relative;
    z-index: 3;
}


/* =========================================================
   MOBILE BACKGROUND ADJUSTMENTS
========================================================= */

@media (max-width: 650px) {

    .mosquito-page .mosquito-hero {
        background:
            linear-gradient(
                180deg,
                rgba(247,246,242,.96),
                rgba(247,246,242,.82)
            ),
            url("../images/mosquito-intro.png")
            center/cover no-repeat;
    }

    .mosquito-page .category-intro {
        background:
            linear-gradient(
                180deg,
                rgba(5,7,8,.95),
                rgba(5,7,8,.78)
            ),
            url("../images/mosquito-horizontal.png")
            center/cover no-repeat;
    }

    .mosquito-page #vertical-net {
        background:
            linear-gradient(
                180deg,
                rgba(7,9,10,.95),
                rgba(7,9,10,.78)
            ),
            url("../images/mosquito-vertical.png")
            center/cover no-repeat;
    }

    .mosquito-page .baby-intro {
        background:
            linear-gradient(
                180deg,
                rgba(247,246,242,.96),
                rgba(247,246,242,.82)
            ),
            url("../images/baby-mothertouch.png")
            center/cover no-repeat;
    }

    .mosquito-page .baby-benefits {
        background:
            linear-gradient(
                180deg,
                rgba(5,7,8,.96),
                rgba(5,7,8,.80)
            ),
            url("../images/baby-mothertouch.png")
            center/cover no-repeat;
    }

    .mosquito-page .mosquito-gallery {
        background:
            linear-gradient(
                180deg,
                rgba(5,7,8,.96),
                rgba(5,7,8,.84)
            ),
            url("../images/mosquito-hero.png")
            center/cover no-repeat;
    }

    .mosquito-page .mosquito-final-cta {
        min-height: 560px;
    }

    .mosquito-page .cta-background {
        background:
            linear-gradient(
                180deg,
                rgba(4,6,7,.94),
                rgba(4,6,7,.72)
            ),
            url("../images/mosquito-upvc.png")
            center/cover no-repeat;
    }
}
/* =========================================================
   BRIGHT MOSQUITO NET CARD IMAGES
   ========================================================= */

.mosquito-page .category-card-image img {
    filter: brightness(1) !important;
}

.mosquito-page .mosquito-category-card:hover .category-card-image img {
    filter: brightness(1.05) !important;
    transform: scale(1.035);
}

/* Keep the image naturally visible */
.mosquito-page .category-card-image::after {
    background: linear-gradient(
        0deg,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.08) 55%,
        rgba(0,0,0,0) 100%
    ) !important;
}
/* =========================================================
   MOSQUITO NET
   ALTERNATING EDITORIAL SHOWCASE
========================================================= */

.mn-showcase {
    --mn-red: #ed2d35;
    --mn-black: #090b0e;
    --mn-paper: #f7f6f2;
    --mn-text: #171918;
    --mn-muted: #777b78;

    width: 100%;
    padding: 130px 22px 150px;

    background: var(--mn-paper);

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.mn-showcase-head {
    width: min(1316px, 100%);
    margin: 0 auto 110px;

    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 70px;

    align-items: end;
}


.mn-showcase-label {
    display: flex;
    align-items: center;

    gap: 13px;

    padding-bottom: 8px;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--mn-text);
}


.mn-showcase-label span {
    font-family: "Bebas Neue", sans-serif;

    font-size: 22px;

    color: var(--mn-red);

    letter-spacing: 0;
}


.mn-showcase-label i {
    display: block;

    width: 45px;
    height: 1px;

    background: var(--mn-red);
}


.mn-showcase-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}


.mn-showcase-heading h2 {
    margin: 0;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(75px, 9vw, 145px);

    font-weight: 400;

    line-height: .78;

    letter-spacing: -2px;

    color: var(--mn-black);
}


.mn-showcase-heading h2 em {
    font-style: normal;

    color: var(--mn-red);
}


.mn-showcase-heading p {
    width: 215px;

    flex-shrink: 0;

    margin: 0 0 5px;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    line-height: 1.6;

    color: var(--mn-muted);
}


/* =========================================================
   SHOWCASE ITEM
========================================================= */

.mn-showcase-item {
    width: min(1316px, 100%);
    min-height: 610px;

    margin: 0 auto 85px;

    display: grid;

    grid-template-columns: 1.35fr .65fr;

    gap: 0;

    align-items: stretch;
}


.mn-showcase-item.mn-reverse {
    grid-template-columns: .65fr 1.35fr;
}


/* =========================================================
   IMAGE
========================================================= */

.mn-showcase-image {
    position: relative;

    min-height: 610px;

    overflow: hidden;

    background: #ddd;
}


.mn-showcase-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9,11,14,.04),
            transparent 60%
        );

    pointer-events: none;
}


.mn-showcase-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);
}


.mn-showcase-item:hover .mn-showcase-image img {
    transform: scale(1.045);
}


/* =========================================================
   INFO PANEL
========================================================= */

.mn-showcase-info {
    position: relative;

    min-height: 610px;

    padding: 55px 55px 55px 65px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--mn-black);

    color: #fff;
}


.mn-showcase-item.mn-reverse .mn-showcase-info {
    order: -1;

    padding-left: 55px;
    padding-right: 65px;
}


/* =========================================================
   LARGE NUMBER
========================================================= */

.mn-showcase-number {
    position: absolute;

    top: 30px;
    right: 35px;

    font-family: "Bebas Neue", sans-serif;

    font-size: 105px;

    line-height: .7;

    color: rgba(255,255,255,.08);
}


/* =========================================================
   CATEGORY
========================================================= */

.mn-showcase-category {
    margin-bottom: 20px;

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--mn-red);
}


/* =========================================================
   TITLE
========================================================= */

.mn-showcase-info h3 {
    margin: 0 0 25px;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(52px, 5.2vw, 82px);

    font-weight: 400;

    line-height: .8;

    letter-spacing: -1px;

    color: #fff;
}


.mn-showcase-info h3 em {
    font-style: normal;

    color: var(--mn-red);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.mn-showcase-info p {
    max-width: 340px;

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255,255,255,.58);
}


/* =========================================================
   LINE
========================================================= */

.mn-showcase-line {
    width: 75px;

    height: 2px;

    margin-top: 35px;

    background: var(--mn-red);

    transition: width .4s ease;
}


.mn-showcase-item:hover .mn-showcase-line {
    width: 125px;
}


/* =========================================================
   LAST ITEM
========================================================= */

.mn-showcase-item.mn-last {
    margin-bottom: 0;
}


/* =========================================================
   RED EDGE
========================================================= */

.mn-showcase-item::before {
    content: "";

    position: absolute;

    width: 0;
    height: 0;
}


/* =========================================================
   ALTERNATING IMAGE TREATMENT
========================================================= */

.mn-showcase-item:nth-of-type(2) .mn-showcase-image img {
    object-position: center;
}


.mn-showcase-item:nth-of-type(3) .mn-showcase-image img {
    object-position: center;
}


.mn-showcase-item:nth-of-type(4) .mn-showcase-image img {
    object-position: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .mn-showcase {
        padding: 105px 20px 120px;
    }


    .mn-showcase-head {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 75px;
    }


    .mn-showcase-heading {
        align-items: flex-end;
    }


    .mn-showcase-heading h2 {
        font-size: clamp(75px, 13vw, 125px);
    }


    .mn-showcase-item,
    .mn-showcase-item.mn-reverse {
        grid-template-columns: 1fr 1fr;

        min-height: 500px;

        margin-bottom: 55px;
    }


    .mn-showcase-image {
        min-height: 500px;
    }


    .mn-showcase-info {
        min-height: 500px;

        padding: 40px;
    }


    .mn-showcase-item.mn-reverse .mn-showcase-info {
        padding: 40px;
    }


    .mn-showcase-info h3 {
        font-size: clamp(45px, 6vw, 65px);
    }


    .mn-showcase-number {
        font-size: 80px;

        top: 25px;
        right: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .mn-showcase {
        padding: 75px 15px 90px;
    }


    .mn-showcase-head {
        margin-bottom: 50px;
    }


    .mn-showcase-label {
        font-size: 7px;

        gap: 9px;
    }


    .mn-showcase-label i {
        width: 30px;
    }


    .mn-showcase-heading {
        display: block;
    }


    .mn-showcase-heading h2 {
        font-size: clamp(65px, 18vw, 105px);

        line-height: .8;

        letter-spacing: -1px;
    }


    .mn-showcase-heading p {
        width: 100%;

        max-width: 310px;

        margin-top: 25px;

        font-size: 9px;
    }


    /* STACK IMAGE + CONTENT */

    .mn-showcase-item,
    .mn-showcase-item.mn-reverse {
        display: flex;

        flex-direction: column;

        min-height: 0;

        margin-bottom: 45px;
    }


    .mn-showcase-image {
        width: 100%;

        height: 340px;

        min-height: 340px;
    }


    .mn-showcase-item.mn-reverse .mn-showcase-image {
        order: 0;
    }


    .mn-showcase-info,
    .mn-showcase-item.mn-reverse .mn-showcase-info {
        width: 100%;

        min-height: 350px;

        padding: 45px 28px;

        order: 1;
    }


    .mn-showcase-number {
        top: 22px;
        right: 22px;

        font-size: 75px;
    }


    .mn-showcase-category {
        font-size: 7px;

        margin-bottom: 17px;
    }


    .mn-showcase-info h3 {
        font-size: 52px;

        line-height: .82;

        margin-bottom: 20px;
    }


    .mn-showcase-info p {
        max-width: 310px;

        font-size: 9px;

        line-height: 1.6;
    }


    .mn-showcase-line {
        margin-top: 28px;

        width: 55px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .mn-showcase {
        padding: 65px 12px 75px;
    }


    .mn-showcase-image {
        height: 290px;

        min-height: 290px;
    }


    .mn-showcase-info,
    .mn-showcase-item.mn-reverse .mn-showcase-info {
        min-height: 320px;

        padding: 38px 22px;
    }


    .mn-showcase-info h3 {
        font-size: 45px;
    }


    .mn-showcase-info p {
        font-size: 8.5px;
    }

}
/* =========================================================
   MOBILE HERO — KEEP DESKTOP STYLE
========================================================= */

@media (max-width:650px){

    .mosquito-page .mosquito-hero{
        min-height:calc(100svh - 76px);
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.96) 0%,
                rgba(0,0,0,.82) 48%,
                rgba(0,0,0,.38) 100%
            ),
            url("../images/mosquito-intro.png")
            center/cover no-repeat !important;
    }

    /* Remove the unwanted white overlay */
    .mosquito-page .mosquito-hero::before{
        display:none !important;
        content:none !important;
    }

    /* Keep hero content and image visually together */
    .mosquito-page .mosquito-hero-grid{
        min-height:calc(100svh - 76px) !important;
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:0 !important;
        padding:70px 0 55px !important;
        align-items:center !important;
        position:relative !important;
    }

    .mosquito-page .mosquito-hero-content{
        position:relative !important;
        z-index:5 !important;
        max-width:72% !important;
    }

    .mosquito-page .mosquito-hero-content h1{
        font-size:clamp(62px,16vw,86px) !important;
        line-height:.82 !important;
        color:#fff !important;
    }

    .mosquito-page .mosquito-hero-content > p{
        color:rgba(255,255,255,.78) !important;
        font-size:13px !important;
        line-height:1.7 !important;
        max-width:100% !important;
        margin-top:22px !important;
    }

    /* Put hero image behind content, like desktop */
    .mosquito-page .mosquito-hero-visual{
        position:absolute !important;
        inset:0 !important;
        width:100% !important;
        height:100% !important;
        z-index:1 !important;
        pointer-events:none !important;
    }

    .mosquito-page .hero-main-image{
        position:absolute !important;
        right:-10% !important;
        top:16% !important;
        width:72% !important;
        height:68% !important;
        opacity:.72 !important;
        box-shadow:none !important;
    }

    .mosquito-page .hero-main-image img{
        width:100% !important;
        height:100% !important;
        object-fit:cover !important;
    }

    /* Darken image slightly so text stays readable */
    .mosquito-page .hero-main-image::after{
        content:"";
        position:absolute;
        inset:0;
        background:linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.25)
        );
    }

    .mosquito-page .hero-floating-card{
        left:auto !important;
        right:15px !important;
        bottom:20px !important;
        width:190px !important;
        padding:16px 18px !important;
        z-index:6 !important;
    }

    .mosquito-page .hero-floating-card strong{
        font-size:25px !important;
    }

    .mosquito-page .hero-number{
        top:8px !important;
        right:5px !important;
        font-size:70px !important;
        z-index:6 !important;
    }

    .mosquito-page .hero-actions{
        position:relative !important;
        z-index:6 !important;
        margin-top:28px !important;
        gap:18px !important;
    }

    .mosquito-page .primary-btn{
        min-height:52px !important;
        padding:16px 18px !important;
    }

    .mosquito-page .secondary-btn{
        color:#fff !important;
    }
}


/* Smaller phones */
@media (max-width:400px){

    .mosquito-page .mosquito-hero-grid{
        padding:65px 0 45px !important;
    }

    .mosquito-page .mosquito-hero-content{
        max-width:82% !important;
    }

    .mosquito-page .mosquito-hero-content h1{
        font-size:64px !important;
    }

    .mosquito-page .hero-main-image{
        right:-18% !important;
        width:78% !important;
        height:65% !important;
        top:20% !important;
    }

    .mosquito-page .hero-floating-card{
        width:175px !important;
        right:10px !important;
    }

    .mosquito-page .hero-number{
        font-size:62px !important;
    }
}