/** Shopify CDN: Minification failed

Line 430:0 Unexpected "}"

**/
/* ==========================================================
   NEWOW SMART HOME
   HERO SECTION
========================================================== */

.smart-home-hero{
    background:linear-gradient(180deg,#ffffff 0%,#f7f9fc 100%);
    padding:120px 0;
    overflow:hidden;
}

.smart-home-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 50px;

    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:60px;
}

/* LEFT */

.hero-left{
    position:relative;
    z-index:5;
}

.hero-tag{
    display:inline-block;
    margin-bottom:18px;

    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#2563eb;
}

.hero-title{

    max-width:700px;

    font-size:72px;
    line-height:1.05;
    font-weight:700;

    color:#111827;

    margin:0 0 30px;
}

.hero-description{

    max-width:620px;

    font-size:22px;
    line-height:1.7;

    color:#6b7280;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.hero-btn{

    padding:18px 34px;

    border-radius:999px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.hero-btn-primary{

    background:#2563eb;

    color:white;

}

.hero-btn-primary:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

}

.hero-btn-secondary{

    border:2px solid #2563eb;

    color:#2563eb;

}

.hero-btn-secondary:hover{

    background:#2563eb;

    color:white;

}

/* BADGES */

.hero-badges{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:45px;

}

.hero-badges span{

    background:white;

    padding:12px 22px;

    border-radius:999px;

    font-weight:600;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

/* RIGHT */

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:600px;

}

/* Glow */

.hero-glow{

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(37,99,235,.22) 0%,
    rgba(37,99,235,0) 70%);

    filter:blur(60px);

    z-index:1;

}

/* Image */

.hero-product-image{
    width:100%;
    max-width:820px;
    transform:rotate(-8deg);
    filter:drop-shadow(0 50px 80px rgba(0,0,0,.35));
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width:1200px){

.hero-title{

    font-size:58px;

}

.smart-home-container{

    grid-template-columns:1fr 1fr;

}

.hero-product-image{

    max-width:500px;

}

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:991px){

.smart-home-hero{

    padding:70px 0;

}

.smart-home-container{

    display:flex;

    flex-direction:column;

    text-align:center;

    gap:40px;

}

.hero-right{

    order:-1;

    min-height:auto;

}

.hero-title{

    font-size:46px;

    max-width:100%;

}

.hero-description{

    max-width:100%;

    font-size:18px;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-badges{

    justify-content:center;

}

.hero-product-image{

    max-width:420px;

}

.hero-glow{

    width:350px;

    height:350px;

}

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:576px){

.smart-home-container{

    padding:0 20px;

}

.hero-title{

    font-size:36px;

}

.hero-btn{

    width:100%;

    text-align:center;

}

.hero-buttons{

    flex-direction:column;

}

.hero-product-image{

    max-width:320px;

}
}
/*==========================
TRUST SECTION
==========================*/

.smart-trust{

    background:white;

    padding:50px 0;

    border-top:1px solid #eef2f7;

    border-bottom:1px solid #eef2f7;

}

.smart-trust-container{

    max-width:1300px;

    margin:auto;

    padding:0 40px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

}

.trust-item{

    text-align:center;

}

.trust-item h3{

    font-size:38px;

    color:#2563eb;

    margin-bottom:10px;

    font-weight:700;

}

.trust-item p{

    font-size:18px;

    color:#6b7280;

}

@media(max-width:900px){

.smart-trust-container{

grid-template-columns:repeat(2,1fr);

}

}

}