/* LEDRID HOME V2
   Modern wholesale fashion direction
   Palette: yellow / black / white / soft gray
*/

:root{
    --yellow:#FFD400;
    --black:#0B0B0B;
    --charcoal:#202020;
    --gray:#707070;
    --soft:#F5F5F2;
    --line:#E5E5E2;
    --white:#FFFFFF;
    --container:1280px;
    --radius:18px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
    font-family:"DM Sans",sans-serif;
    background:var(--white);
    color:var(--black);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
button{border:0;background:none}
.site-container{
    width:min(calc(100% - 48px),var(--container));
    margin-inline:auto;
}
.eyebrow{
    display:inline-block;
    margin-bottom:18px;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--gray);
}
.eyebrow--dark{color:rgba(11,11,11,.68)}
.eyebrow--light{color:rgba(255,255,255,.62)}

/* TOP */
.topbar{
    background:var(--black);
    color:rgba(255,255,255,.72);
    font-size:.78rem;
}
.topbar__inner{
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.93);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(14px);
}
.site-header__inner{
    min-height:82px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:24px;
}
.brand{
    justify-self:start;
    font-family:"Manrope",sans-serif;
    font-size:1.55rem;
    font-weight:800;
    letter-spacing:-.06em;
}
.brand span{color:var(--yellow)}
.main-nav{
    display:flex;
    align-items:center;
    gap:30px;
}
.main-nav a{
    position:relative;
    font-size:.9rem;
    font-weight:600;
}
.main-nav a:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:100%;
    height:2px;
    background:var(--black);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .22s ease;
}
.main-nav a:hover:after{transform:scaleX(1)}
.header-actions{
    justify-self:end;
    display:flex;
    align-items:center;
    gap:15px;
}
.header-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-height:44px;
    padding:0 18px;
    border-radius:999px;
    background:var(--yellow);
    font-size:.84rem;
    font-weight:700;
    transition:transform .2s ease;
}
.header-cta:hover{transform:translateY(-2px)}
.menu-toggle{display:none}

/* HERO */
.hero-v2{
    padding:34px 0 72px;
}
.hero-v2__grid{
    min-height:690px;
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    background:var(--soft);
}
.hero-v2__content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px clamp(40px,6vw,90px);
}
.hero-v2 h1{
    max-width:700px;
    font-family:"Manrope",sans-serif;
    font-size:clamp(3.3rem,6vw,6.5rem);
    font-weight:800;
    line-height:.95;
    letter-spacing:-.075em;
}
.hero-v2 h1 span{
    position:relative;
    display:inline-block;
}
.hero-v2 h1 span:after{
    content:"";
    position:absolute;
    left:0;
    bottom:.04em;
    width:100%;
    height:.13em;
    background:var(--yellow);
    z-index:-1;
}
.hero-v2__content > p{
    max-width:590px;
    margin-top:32px;
    color:#4e4e4e;
    font-size:1.06rem;
    line-height:1.7;
}
.hero-actions{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:34px;
}
.btn-v2{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:0 24px;
    border-radius:999px;
    font-size:.9rem;
    font-weight:700;
    transition:transform .2s ease,background .2s ease;
}
.btn-v2:hover{transform:translateY(-2px)}
.btn-v2--dark{background:var(--black);color:var(--white)}
.btn-v2--yellow{background:var(--yellow);color:var(--black)}
.text-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.9rem;
    font-weight:700;
}
.text-link span{transition:transform .2s ease}
.text-link:hover span{transform:translate(3px,-3px)}
.hero-proof{
    display:flex;
    align-items:baseline;
    gap:10px;
    margin-top:55px;
    padding-top:20px;
    border-top:1px solid #d7d7d3;
    color:var(--gray);
    font-size:.86rem;
}
.hero-proof strong{
    color:var(--black);
    font-size:1.1rem;
}
.hero-v2__media{
    position:relative;
    min-height:690px;
    overflow:hidden;
    background:#ddd;
}
.hero-v2__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-label{
    position:absolute;
    right:24px;
    bottom:24px;
    min-width:220px;
    padding:18px 20px;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(8px);
}
.hero-label span{
    display:block;
    margin-bottom:5px;
    color:var(--gray);
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.12em;
}
.hero-label strong{font-size:.92rem}

/* COMMERCE STRIP */
.commerce-strip{
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}
.commerce-strip__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}
.commerce-strip__grid > div{
    padding:34px 34px 32px 0;
}
.commerce-strip__grid > div + div{
    padding-left:34px;
    border-left:1px solid var(--line);
}
.commerce-strip span{
    display:block;
    margin-bottom:16px;
    color:#999;
    font-size:.7rem;
    font-weight:700;
}
.commerce-strip strong{
    display:block;
    margin-bottom:6px;
    font-family:"Manrope",sans-serif;
    font-size:1rem;
}
.commerce-strip p{
    color:var(--gray);
    font-size:.88rem;
}

/* SECTIONS */
.categories-section,
.products-section,
.how-section,
.story-section,
.shipping-section{
    padding:110px 0;
}
.products-section--soft{background:var(--soft)}
.section-heading{max-width:760px;margin-bottom:54px}
.section-heading h2{
    font-family:"Manrope",sans-serif;
    font-size:clamp(2.25rem,4vw,4.4rem);
    font-weight:800;
    line-height:1.03;
    letter-spacing:-.055em;
}
.section-heading--split{
    max-width:none;
    display:grid;
    grid-template-columns:1.15fr .65fr;
    align-items:end;
    gap:60px;
}
.section-heading--split p{
    padding-bottom:8px;
    color:var(--gray);
    line-height:1.7;
}
.section-heading--row{
    max-width:none;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:35px;
}

/* CATEGORY */
.category-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.category-card{
    position:relative;
    min-height:390px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    padding:42px;
    overflow:hidden;
    transition:transform .25s ease;
}
.category-card:hover{transform:translateY(-5px)}
.category-card--dark{background:var(--black);color:var(--white)}
.category-card--yellow{background:var(--yellow);color:var(--black)}
.category-card > div > span{
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.15em;
    opacity:.66;
}
.category-card h3{
    margin-top:16px;
    font-family:"Manrope",sans-serif;
    font-size:clamp(2.2rem,4vw,4.5rem);
    letter-spacing:-.06em;
    line-height:1;
}
.category-card p{
    max-width:410px;
    margin-top:16px;
    opacity:.72;
}
.category-arrow{
    align-self:flex-start;
    font-size:2rem;
}

/* PRODUCTS */
.productSwiper{
    width:100%;
    min-width:0;
    overflow:hidden;
}
.productSwiper .swiper-slide{height:auto}
.product-card{
    height:100%;
    background:var(--white);
}
.products-section--soft .product-card{background:var(--white)}
.product-card__media{
    position:relative;
    width:100%;
    aspect-ratio:4/5;
    overflow:hidden;
    cursor:zoom-in;
    background:#efefec;
}
.product-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .55s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card__media img{transform:scale(1.035)}
.product-badge,
.product-reel{
    position:absolute;
    top:16px;
    z-index:2;
    padding:7px 10px;
    border-radius:999px;
    font-size:.68rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.product-badge{left:16px;background:var(--yellow);color:var(--black)}
.product-reel{right:16px;background:rgba(11,11,11,.85);color:var(--white)}
.product-card__body{padding:20px 2px 0}
.product-card__topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:#949494;
    font-size:.68rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.product-card h3{
    margin-top:10px;
    font-family:"Manrope",sans-serif;
    font-size:1.14rem;
    font-weight:700;
    letter-spacing:-.025em;
}
.product-price{
    margin-top:7px;
    font-weight:800;
    font-size:.94rem;
}
.product-card p{
    min-height:43px;
    margin-top:9px;
    color:var(--gray);
    font-size:.84rem;
    line-height:1.55;
}
.product-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:17px;
    padding-top:14px;
    border-top:1px solid var(--line);
}
.product-link{
    display:flex;
    align-items:center;
    gap:7px;
    font-size:.82rem;
    font-weight:700;
}
.product-instagram{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid var(--line);
    border-radius:50%;
}
.swiper-controls{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
    min-height:68px;
    margin-top:24px;
}
.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev{
    position:static;
    width:42px;
    height:42px;
    margin:0;
    border:1px solid var(--line);
    border-radius:50%;
    color:var(--black);
}
.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after{
    font-size:14px;
    font-weight:800;
}
.productSwiper .swiper-pagination{
    position:static;
    width:auto;
    margin-right:auto;
}
.productSwiper .swiper-pagination-bullet{
    width:26px;
    height:2px;
    border-radius:0;
    background:#c8c8c4;
    opacity:1;
}
.productSwiper .swiper-pagination-bullet-active{background:var(--black)}
.empty-state{
    padding:50px;
    background:var(--soft);
    color:var(--gray);
    text-align:center;
}

/* STEPS */
.steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line);
}
.steps-grid article{
    min-height:230px;
    padding:34px 36px 30px 0;
}
.steps-grid article + article{
    padding-left:36px;
    border-left:1px solid var(--line);
}
.steps-grid span{
    display:block;
    margin-bottom:45px;
    color:#aaa;
    font-size:.75rem;
    font-weight:700;
}
.steps-grid h3{
    font-family:"Manrope",sans-serif;
    font-size:1.55rem;
}
.steps-grid p{
    max-width:290px;
    margin-top:10px;
    color:var(--gray);
    font-size:.9rem;
}

/* STORY */
.story-section{
    background:var(--black);
    color:var(--white);
}
.story-section__grid{
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    gap:90px;
    align-items:center;
}
.story-number{
    font-family:"Manrope",sans-serif;
    font-size:clamp(8rem,18vw,18rem);
    font-weight:800;
    line-height:.78;
    letter-spacing:-.1em;
    color:var(--yellow);
}
.story-number span{font-size:.3em;vertical-align:top}
.story-section h2{
    max-width:850px;
    font-family:"Manrope",sans-serif;
    font-size:clamp(2.6rem,5vw,5.3rem);
    line-height:.98;
    letter-spacing:-.065em;
}
.story-section p{
    max-width:720px;
    margin-top:28px;
    color:rgba(255,255,255,.64);
    font-size:1rem;
    line-height:1.75;
}

/* SHIPPING */
.shipping-section{text-align:center}
.shipping-section h2{
    font-family:"Manrope",sans-serif;
    font-size:clamp(2.4rem,4vw,4.5rem);
    letter-spacing:-.055em;
}
.shipping-logos{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:60px;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}
.shipping-logos span{
    padding:38px 18px;
    font-family:"Manrope",sans-serif;
    font-weight:800;
    font-size:1.05rem;
    letter-spacing:-.03em;
}
.shipping-logos span + span{border-left:1px solid var(--line)}
.shipping-note{
    margin-top:24px;
    color:var(--gray);
    font-size:.86rem;
}

/* FINAL CTA */
.final-cta{
    padding:100px 0;
    background:#151515;
    color:var(--white);
}
.final-cta__grid{
    display:grid;
    grid-template-columns:1.15fr .7fr;
    gap:80px;
    align-items:end;
}
.final-cta h2{
    max-width:820px;
    font-family:"Manrope",sans-serif;
    font-size:clamp(3rem,6vw,6.4rem);
    line-height:.94;
    letter-spacing:-.07em;
}
.final-cta__action p{
    margin-bottom:26px;
    color:rgba(255,255,255,.66);
    line-height:1.7;
}

/* FOOTER */
.footer-v2{
    padding:75px 0 28px;
    background:var(--black);
    color:var(--white);
    border-top:1px solid #2e2e2e;
}
.footer-v2__top{
    display:grid;
    grid-template-columns:1fr 1.45fr;
    gap:70px;
    padding-bottom:60px;
}
.brand--footer{display:inline-block;font-size:2.2rem}
.footer-v2__top > div:first-child p{
    max-width:290px;
    margin-top:16px;
    color:rgba(255,255,255,.55);
}
.footer-links{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.footer-links > div{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.footer-links strong{
    margin-bottom:8px;
    font-size:.75rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:rgba(255,255,255,.46);
}
.footer-links a{
    color:rgba(255,255,255,.78);
    font-size:.88rem;
}
.footer-links a:hover{color:var(--yellow)}
.footer-v2__bottom{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding-top:22px;
    border-top:1px solid #252525;
    color:rgba(255,255,255,.42);
    font-size:.75rem;
}
.footer-v2__bottom a{color:rgba(255,255,255,.68)}

/* WHATSAPP */
.whatsapp-float-v2{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:900;
    display:flex;
    align-items:center;
    gap:10px;
    min-height:48px;
    padding:0 16px;
    border-radius:999px;
    background:#25D366;
    color:#071c0e;
    box-shadow:0 10px 30px rgba(0,0,0,.17);
    font-size:.82rem;
    font-weight:800;
}
.whatsapp-float-v2 i{font-size:1.2rem}

/* LIGHTBOX */
.lightbox-modal-v2{
    position:fixed;
    inset:0;
    z-index:2000;
    display:none;
    place-items:center;
    padding:30px;
    background:rgba(0,0,0,.92);
}
.lightbox-modal-v2.active{display:grid}
.lightbox-panel{
    max-width:min(900px,90vw);
    max-height:90vh;
    color:var(--white);
    text-align:center;
}
.lightbox-panel img{
    max-height:82vh;
    margin:auto;
    object-fit:contain;
}
.lightbox-panel div{
    margin-top:12px;
    font-size:.9rem;
}
.lightbox-close-v2{
    position:absolute;
    top:22px;
    right:25px;
    width:44px;
    height:44px;
    color:var(--white);
    font-size:2rem;
    cursor:pointer;
}

/* ACCESSIBILITY */
:focus-visible{
    outline:3px solid var(--yellow);
    outline-offset:3px;
}

/* MOBILE */
@media (max-width:980px){
    .site-header__inner{
        grid-template-columns:1fr auto;
    }
    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:18px 24px 28px;
        background:var(--white);
        border-bottom:1px solid var(--line);
    }
    .main-nav.is-open{display:flex}
    .main-nav a{
        width:100%;
        padding:15px 0;
        border-bottom:1px solid var(--line);
    }
    .header-cta{display:none}
    .menu-toggle{
        width:42px;
        height:42px;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:6px;
        cursor:pointer;
    }
    .menu-toggle span{
        width:23px;
        height:2px;
        background:var(--black);
        transition:.2s;
    }
    .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
    .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}

    .hero-v2__grid{
        min-height:auto;
        grid-template-columns:1fr;
    }
    .hero-v2__content{
        padding:65px 38px;
    }
    .hero-v2__media{min-height:640px}

    .section-heading--split,
    .channel-section__grid,
    .story-section__grid,
    .final-cta__grid,
    .footer-v2__top{
        grid-template-columns:1fr;
        gap:42px;
    }

    .category-card{min-height:330px}
    .story-number{font-size:9rem}
}

@media (max-width:720px){
    .site-container{width:min(calc(100% - 30px),var(--container))}
    .topbar__inner{
        min-height:32px;
        justify-content:center;
        text-align:center;
    }
    .topbar__inner span:last-child{display:none}
    .site-header__inner{min-height:70px}

    .hero-v2{padding:16px 0 55px}
    .hero-v2__content{padding:50px 25px}
    .hero-v2 h1{font-size:clamp(3rem,14vw,5rem)}
    .hero-v2__content > p{font-size:.96rem}
    .hero-actions{align-items:flex-start;flex-direction:column}
    .hero-proof{align-items:flex-start;flex-direction:column}
    .hero-v2__media{min-height:480px}
    .hero-label{right:15px;bottom:15px;min-width:180px}

    .commerce-strip__grid,
    .category-grid,
    .steps-grid,
    .shipping-logos,
    .footer-links{
        grid-template-columns:1fr;
    }
    .commerce-strip__grid > div,
    .commerce-strip__grid > div + div{
        padding:24px 0;
        border-left:0;
        border-top:1px solid var(--line);
    }
    .commerce-strip__grid > div:first-child{border-top:0}

    .categories-section,
    .products-section,
    .how-section,
    .story-section,
    .shipping-section{
        padding:75px 0;
    }

    .section-heading{margin-bottom:38px}
    .section-heading--split,
    .section-heading--row{
        display:block;
    }
    .section-heading--split p{margin-top:22px}
    .section-heading--row .text-link{
        margin-top:20px;
    }

    .category-card{
        min-height:290px;
        padding:30px;
    }

    .channel-section{padding:70px 0}
    .channel-section__grid{gap:42px}
    .channel-copy h2{font-size:clamp(3rem,13vw,5rem)}
    .channel-video-wrap{padding:12px}
    .channel-actions{align-items:flex-start;flex-direction:column}

    .steps-grid article,
    .steps-grid article + article{
        min-height:auto;
        padding:30px 0;
        border-left:0;
        border-top:1px solid var(--line);
    }
    .steps-grid article:first-child{border-top:0}
    .steps-grid span{margin-bottom:25px}

    .story-number{font-size:8rem}

    .shipping-logos span + span{border-left:0;border-top:1px solid var(--line)}

    .final-cta{padding:75px 0}

    .footer-v2{padding-top:55px}
    .footer-links{gap:32px}
    .footer-v2__bottom{
        flex-direction:column;
        gap:7px;
    }

    .whatsapp-float-v2 span{display:none}
    .whatsapp-float-v2{
        width:52px;
        height:52px;
        justify-content:center;
        padding:0;
        border-radius:50%;
    }
}

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

/* ============================================================
   RESPONSIVE STRUCTURE — no horizontal document overflow
   ============================================================ */

html,
body{
    width:100%;
    min-width:0;
    margin:0;
}

body{
    min-width:0;
}

main,
section,
header,
footer,
.site-container,
.hero-v2__grid,
.hero-v2__content,
.hero-v2__media,
.section-heading,
.section-heading--split,
.section-heading--row,
.category-grid,
.productSwiper,
.productSwiper .swiper-wrapper,
.productSwiper .swiper-slide,
.product-card,
.product-card__body,
.commerce-strip__grid,
.steps-grid,
.story-section__grid,
.final-cta__grid,
.footer-v2__top,
.footer-links{
    min-width:0;
}

.productSwiper .swiper-wrapper{
    box-sizing:border-box;
}

.productSwiper .swiper-slide{
    max-width:100%;
}

@media (max-width:720px){
    .site-container{
        width:calc(100% - 30px);
        max-width:100%;
    }

    .productSwiper{
        width:100%;
        max-width:100%;
    }

    .hero-v2__grid,
    .category-grid,
    .commerce-strip__grid,
    .steps-grid,
    .shipping-logos,
    .footer-links{
        width:100%;
        max-width:100%;
    }
}


/* ============================================================
   CANAL OFICIAL DE WHATSAPP — moved from index.php
   ============================================================ */

#ledrid-whatsapp-channel {
            background: #FFD400 !important;
            color: #0B0B0B !important;
            padding: 96px 0 !important;
            width: 100% !important;
        }
    
        #ledrid-whatsapp-channel * {
            box-sizing: border-box !important;
        }
    
        #ledrid-whatsapp-channel .lw-container {
            width: min(1280px, calc(100% - 48px)) !important;
            margin: 0 auto !important;
    
            display: grid !important;
            grid-template-columns: minmax(0, 1.05fr) 420px !important;
            align-items: center !important;
            gap: 90px !important;
        }
    
        #ledrid-whatsapp-channel .lw-content {
            min-width: 0 !important;
        }
    
        #ledrid-whatsapp-channel .lw-eyebrow {
            display: block !important;
            margin: 0 0 18px !important;
    
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 12px !important;
            line-height: 1.2 !important;
            font-weight: 700 !important;
    
            letter-spacing: .18em !important;
            text-transform: uppercase !important;
    
            color: rgba(11,11,11,.58) !important;
        }
    
        #ledrid-whatsapp-channel h2 {
            margin: 0 !important;
            padding: 0 !important;
    
            font-family: "Manrope", "DM Sans", Arial, sans-serif !important;
            font-size: clamp(52px, 5.2vw, 82px) !important;
            line-height: .96 !important;
            font-weight: 800 !important;
            letter-spacing: -.065em !important;
    
            color: #0B0B0B !important;
        }
    
        #ledrid-whatsapp-channel .lw-intro {
            max-width: 650px !important;
    
            margin: 28px 0 0 !important;
            padding: 0 !important;
    
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 17px !important;
            line-height: 1.7 !important;
    
            color: rgba(11,11,11,.72) !important;
        }
    
        #ledrid-whatsapp-channel .lw-features {
            max-width: 700px !important;
    
            margin-top: 38px !important;
    
            border-top: 1px solid rgba(11,11,11,.20) !important;
        }
    
        #ledrid-whatsapp-channel .lw-feature {
            display: grid !important;
            grid-template-columns: 52px 1fr !important;
            gap: 14px !important;
    
            padding: 18px 0 !important;
    
            border-bottom: 1px solid rgba(11,11,11,.20) !important;
        }
    
        #ledrid-whatsapp-channel .lw-feature-number {
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 11px !important;
            font-weight: 700 !important;
    
            color: rgba(11,11,11,.45) !important;
        }
    
        #ledrid-whatsapp-channel .lw-feature strong {
            display: block !important;
    
            margin: 0 0 3px !important;
    
            font-family: "Manrope", "DM Sans", Arial, sans-serif !important;
            font-size: 15px !important;
            line-height: 1.3 !important;
            font-weight: 800 !important;
    
            color: #0B0B0B !important;
        }
    
        #ledrid-whatsapp-channel .lw-feature p {
            margin: 0 !important;
    
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 14px !important;
            line-height: 1.5 !important;
    
            color: rgba(11,11,11,.62) !important;
        }
    
        #ledrid-whatsapp-channel .lw-actions {
            display: flex !important;
            align-items: center !important;
            flex-wrap: wrap !important;
            gap: 20px !important;
    
            margin-top: 32px !important;
        }
    
        #ledrid-whatsapp-channel .lw-button {
            min-height: 54px !important;
    
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px !important;
    
            padding: 0 24px !important;
    
            border-radius: 999px !important;
    
            background: #0B0B0B !important;
            color: #FFFFFF !important;
    
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 14px !important;
            font-weight: 700 !important;
    
            text-decoration: none !important;
        }
    
        #ledrid-whatsapp-channel .lw-button:hover {
            background: #202020 !important;
            transform: translateY(-2px) !important;
        }
    
        #ledrid-whatsapp-channel .lw-button i {
            font-size: 19px !important;
        }
    
        #ledrid-whatsapp-channel .lw-official {
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 13px !important;
            font-weight: 600 !important;
    
            color: rgba(11,11,11,.58) !important;
        }
    
    
        /* VIDEO */
    
        #ledrid-whatsapp-channel .lw-video-card {
            width: 100% !important;
            max-width: 420px !important;
    
            justify-self: end !important;
    
            padding: 16px !important;
    
            background: #0B0B0B !important;
    
            box-shadow: 0 28px 70px rgba(0,0,0,.20) !important;
        }
    
        #ledrid-whatsapp-channel .lw-video-head {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            gap: 20px !important;
    
            padding: 2px 2px 14px !important;
    
            color: #FFFFFF !important;
        }
    
        #ledrid-whatsapp-channel .lw-video-head span {
            display: block !important;
    
            margin-bottom: 3px !important;
    
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 10px !important;
            line-height: 1.2 !important;
            font-weight: 700 !important;
    
            letter-spacing: .15em !important;
            text-transform: uppercase !important;
    
            color: rgba(255,255,255,.42) !important;
        }
    
        #ledrid-whatsapp-channel .lw-video-head strong {
            display: block !important;
    
            font-family: "Manrope", "DM Sans", Arial, sans-serif !important;
            font-size: 15px !important;
            line-height: 1.3 !important;
            font-weight: 700 !important;
    
            color: #FFFFFF !important;
        }
    
        #ledrid-whatsapp-channel .lw-video-head i {
            font-size: 26px !important;
            color: #25D366 !important;
        }
    
        #ledrid-whatsapp-channel .lw-video-frame {
            width: 100% !important;
    
            aspect-ratio: 9 / 14 !important;
    
            overflow: hidden !important;
    
            background: #000 !important;
        }
    
        #ledrid-whatsapp-channel .lw-video-frame video {
            display: block !important;
    
            width: 100% !important;
            height: 100% !important;
    
            margin: 0 !important;
            padding: 0 !important;
    
            object-fit: cover !important;
    
            background: #000 !important;
        }
    
        #ledrid-whatsapp-channel .lw-video-caption {
            margin: 13px 2px 1px !important;
    
            font-family: "DM Sans", Arial, sans-serif !important;
            font-size: 12px !important;
            line-height: 1.5 !important;
    
            color: rgba(255,255,255,.50) !important;
        }
    
    
        /* TABLET */
    
        @media (max-width: 960px) {
    
            #ledrid-whatsapp-channel {
                padding: 75px 0 !important;
            }
    
            #ledrid-whatsapp-channel .lw-container {
                grid-template-columns: 1fr !important;
                gap: 48px !important;
            }
    
            #ledrid-whatsapp-channel .lw-video-card {
                width: min(100%, 420px) !important;
                justify-self: center !important;
            }
        }
    
    
        /* MOBILE */
    
        @media (max-width: 600px) {
    
            #ledrid-whatsapp-channel {
                padding: 60px 0 !important;
            }
    
            #ledrid-whatsapp-channel .lw-container {
                width: min(100% - 30px, 1280px) !important;
            }
    
            #ledrid-whatsapp-channel h2 {
                font-size: 43px !important;
            }
    
            #ledrid-whatsapp-channel .lw-intro {
                font-size: 16px !important;
            }
    
            #ledrid-whatsapp-channel .lw-feature {
                grid-template-columns: 38px 1fr !important;
            }
    
            #ledrid-whatsapp-channel .lw-actions {
                align-items: flex-start !important;
                flex-direction: column !important;
            }
    
            #ledrid-whatsapp-channel .lw-button {
                width: 100% !important;
            }
    
            #ledrid-whatsapp-channel .lw-video-card {
                padding: 11px !important;
            }
        }
