/*
|--------------------------------------------------------------------------
| RESET
|--------------------------------------------------------------------------
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#f8fafc;

    color:#111827;

    font-family:Arial,sans-serif;

    line-height:1.7;
}

/*
|--------------------------------------------------------------------------
| CONTAINER
|--------------------------------------------------------------------------
*/

.nm-container{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 20px;
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.nm-header{

    position:sticky;

    top:0;

    z-index:999;

    background:#fff;

    padding:20px 0;

    box-shadow:
        0 2px 20px
        rgba(0,0,0,0.05);
}

.nm-header .nm-container{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.nm-logo a{

    text-decoration:none;

    font-size:28px;

    font-weight:bold;

    color:#7c3aed;
}

.nm-nav ul{

    display:flex;

    list-style:none;

    gap:20px;
}

.nm-nav a{

    text-decoration:none;

    color:#111827;

    font-weight:600;
}

/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.nm-hero{

    padding:140px 0;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a855f7
        );

    color:#fff;

    text-align:center;
}

.nm-hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:30px;

    max-width:900px;

    margin-left:auto;

    margin-right:auto;
}

.nm-hero p{

    font-size:22px;

    max-width:700px;

    margin:auto;

    opacity:0.9;
}

.nm-hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

    justify-content:center;
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.nm-btn-primary{

    display:inline-block;

    padding:18px 36px;

    background:#fff;

    color:#7c3aed;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

    transition:0.3s;
}

.nm-btn-primary:hover{

    transform:translateY(-3px);
}

.nm-btn-secondary{

    display:inline-block;

    padding:18px 36px;

    border:2px solid #fff;

    color:#fff;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;
}

/*
|--------------------------------------------------------------------------
| FEATURES
|--------------------------------------------------------------------------
*/

.nm-features{

    padding:120px 0;
}

.nm-section-title{

    text-align:center;

    margin-bottom:60px;
}

.nm-section-title h2{

    font-size:48px;

    margin-bottom:20px;
}

.nm-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.nm-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:
        0 10px 40px
        rgba(0,0,0,0.05);

    transition:0.3s;
}

.nm-card:hover{

    transform:translateY(-5px);
}

.nm-icon{

    font-size:42px;

    margin-bottom:20px;
}

.nm-card h3{

    margin-bottom:15px;

    font-size:24px;
}

/*
|--------------------------------------------------------------------------
| VIP
|--------------------------------------------------------------------------
*/

.nm-vip{

    padding:120px 0;

    background:#111827;

    color:#fff;

    text-align:center;
}

.nm-vip-box{

    max-width:800px;

    margin:auto;
}

.nm-vip h2{

    font-size:52px;

    margin-bottom:20px;
}

/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.nm-final-cta{

    padding:120px 0;

    text-align:center;
}

.nm-final-cta h2{

    font-size:56px;

    margin-bottom:20px;
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.nm-footer{

    background:#111827;

    color:#fff;

    text-align:center;

    padding:50px 0;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .nm-hero h1{

        font-size:42px;
    }

    .nm-section-title h2{

        font-size:36px;
    }

    .nm-final-cta h2{

        font-size:40px;
    }

    .nm-hero-buttons{

        flex-direction:column;
    }

    .nm-nav ul{

        gap:10px;
    }
}

/*
|--------------------------------------------------------------------------
| WOOCOMMERCE
|--------------------------------------------------------------------------
*/

.nm-shop{

    padding:100px 0;
}

.woocommerce ul.products{

    display:grid !important;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.woocommerce ul.products li.product{

    background:#fff;

    border-radius:20px;

    padding:25px;

    box-shadow:
        0 10px 40px
        rgba(0,0,0,0.05);

    transition:0.3s;
}

.woocommerce ul.products li.product:hover{

    transform:translateY(-5px);
}

.woocommerce ul.products li.product img{

    border-radius:16px;
}

.woocommerce ul.products li.product h2{

    font-size:24px !important;

    margin-top:20px !important;
}

.woocommerce ul.products li.product .price{

    color:#7c3aed !important;

    font-size:22px !important;

    font-weight:bold;
}

.woocommerce a.button{

    background:#7c3aed !important;

    color:#fff !important;

    border-radius:12px !important;

    padding:14px 24px !important;

    font-weight:bold !important;
}

.woocommerce div.product{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:
        0 10px 40px
        rgba(0,0,0,0.05);
}

.woocommerce div.product .price{

    color:#7c3aed !important;

    font-size:32px !important;

    font-weight:bold;
}

.woocommerce-checkout form.checkout{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:
        0 10px 40px
        rgba(0,0,0,0.05);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea{

    border-radius:12px;

    border:1px solid #ddd;

    padding:14px;
}

.woocommerce table.shop_table{

    border-radius:20px;

    overflow:hidden;
}
