/* ==========================================================
   NextRiseX Custom Styles
   Version : 1.0
   Author  : NextRiseX
========================================================== */


/* ==========================================================
   COLORS
========================================================== */

:root{

    --primary:#F5B942;
    --primary-light:#FFD56A;
    --primary-dark:#D89E2C;

    --bg:#0B0B0F;
    --bg-light:#141419;
    --bg-card:#17171D;
    --bg-hover:#1E1E26;

    --border:#2A2A34;

    --text:#FFFFFF;
    --text-light:#D1D5DB;
    --text-muted:#9CA3AF;

    --success:#22C55E;
    --danger:#EF4444;

}


/* ==========================================================
   GLOBAL
========================================================== */

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg);
    color:var(--text);
}

::selection{

    background:var(--primary);
    color:black;
}


/* Scrollbar */

::-webkit-scrollbar{

    width:8px;
}

::-webkit-scrollbar-track{

    background:#111;
}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;
}



/* ==========================================================
   CONTAINER
========================================================== */

.section-space{

    padding-top:90px;
    padding-bottom:90px;
}

.section-title{

    font-size:42px;
    font-weight:700;
    line-height:1.2;
    color:white;
}

.section-subtitle{

    color:var(--text-muted);
    margin-top:18px;
    font-size:18px;
    line-height:1.8;
}


/* ==========================================================
   TEXT
========================================================== */

.text-gradient{

    background:linear-gradient(
        135deg,
        var(--primary-light),
        var(--primary)
    );
background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.text-gold{

    color:var(--primary);
}

.text-muted{

    color:var(--text-muted);
}


/* ==========================================================
   BACKGROUND
========================================================== */

.hero-glow{

    position:relative;
}

.hero-glow::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    right:-150px;
    top:-150px;

    border-radius:100%;

    background:
    radial-gradient(
        circle,
        rgba(245,185,66,.15),
        transparent 70%
    );

    pointer-events:none;
}



/* ==========================================================
   BUTTONS
========================================================== */

.btn-gold{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:black;

    font-weight:600;

    border-radius:14px;

    transition:.3s;

    box-shadow:
    0 12px 30px rgba(245,185,66,.20);

}

.btn-gold:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 40px rgba(245,185,66,.35);
}

.btn-outline{

    border:1px solid var(--border);

    color:white;

    border-radius:14px;

    transition:.3s;
}

.btn-outline:hover{

    border-color:var(--primary);

    color:white;

    background:rgba(255,255,255,.03);
}



/* ==========================================================
   GLASS
========================================================== */

.glass{

    background:
    rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.06);

}



/* ==========================================================
   CARD
========================================================== */

.nx-card{

    background:var(--bg-card);

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:.35s;
}

.nx-card:hover{

    transform:translateY(-8px);

    border-color:rgba(245,185,66,.45);

    box-shadow:
    0 20px 40px rgba(245,185,66,.15);
}


.card-image{

    overflow:hidden;
}

.card-image img{

    transition:.4s;
}

.nx-card:hover img{

    transform:scale(1.05);
}



/* ==========================================================
   BADGES
========================================================== */

.badge{

    display:inline-flex;

    align-items:center;

    padding:5px 12px;

    border-radius:999px;

    background:#1C1C22;

    color:white;

    font-size:13px;

    border:1px solid #2B2B35;

}

.badge-gold{

    background:var(--primary);

    color:black;

    font-weight:600;
}



/* ==========================================================
   CATEGORY CHIP
========================================================== */

.category-chip{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    border:1px solid var(--border);

    color:var(--text-light);

    transition:.3s;
}

.category-chip:hover{

    background:rgba(255,255,255,.03);

    border-color:var(--primary);

    color:white;
}



/* ==========================================================
   ICON BOX
========================================================== */

.icon-box{

    width:60px;

    height:60px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#18181E;

    border:1px solid #2B2B35;

    color:var(--primary);

    font-size:24px;

}



/* ==========================================================
   TRUST BOX
========================================================== */

.trust-box{

    background:#15151B;

    border:1px solid var(--border);

    border-radius:20px;

    transition:.3s;
}

.trust-box:hover{

    border-color:var(--primary);
}



/* ==========================================================
   NEWSLETTER
========================================================== */

.newsletter{

    background:
    linear-gradient(
        135deg,
        rgba(245,185,66,.12),
        transparent
    );

    border:1px solid rgba(245,185,66,.20);

    border-radius:24px;

}



/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.product-thumb{

    border-radius:18px;

    overflow:hidden;
}

.product-thumb img{

    transition:.4s;
}

.product-thumb:hover img{

    transform:scale(1.04);
}



/* ==========================================================
   DIVIDER
========================================================== */

.section-divider{

    width:100%;

    height:1px;

    background:
    linear-gradient(
        to right,
        transparent,
        #3B3B45,
        transparent
    );
}



/* ==========================================================
   INPUT
========================================================== */

.input-dark{

    background:#111116;

    border:1px solid var(--border);

    border-radius:14px;

    color:white;

    transition:.3s;
}

.input-dark:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:
    0 0 0 3px rgba(245,185,66,.12);
}



/* ==========================================================
   TABLE
========================================================== */

.table-dark{

    border:1px solid var(--border);
}

.table-dark tr{

    border-bottom:1px solid #222;
}



/* ==========================================================
   FAQ
========================================================== */

.faq-item{

    border:1px solid var(--border);

    border-radius:18px;

    background:#141419;

}



/* ==========================================================
   FOOTER
========================================================== */

.footer-link{

    color:#B8B8B8;

    transition:.3s;
}

.footer-link:hover{

    color:var(--primary);

    padding-left:6px;
}



/* ==========================================================
   IMAGE
========================================================== */

.image-rounded{

    border-radius:24px;
}



/* ==========================================================
   ANIMATIONS
========================================================== */

.hover-up{

    transition:.3s;
}

.hover-up:hover{

    transform:translateY(-5px);
}

.scale-hover{

    transition:.35s;
}

.scale-hover:hover{

    transform:scale(1.03);
}



/* ==========================================================
   SHADOWS
========================================================== */

.shadow-gold{

    box-shadow:
    0 20px 45px rgba(245,185,66,.18);
}



.feature-card{
    background:#121218;
    border:1px solid #252530;
    border-radius:20px;
    padding:32px 24px;
    text-align:center;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#F5B942;
    box-shadow:0 18px 45px rgba(245,185,66,.15);
}

.feature-icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    background:linear-gradient(135deg,#F5B942,#FFD36E);
    color:#111;
    padding: 15px;
}

.feature-card h3{
    color:white;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.feature-card p{
    color:#9CA3AF;
    line-height:1.8;
    font-size:15px;
}
.category-card{
    background:#141419;
    border:1px solid #252530;
    border-radius:20px;
    padding:30px;
    transition:.35s;
    display:block;
}

.category-card:hover{
    transform:translateY(-8px);
    border-color:#F5B942;
    box-shadow:0 20px 45px rgba(245,185,66,.15);
}

.category-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(245,185,66,.12);
    color:#F5B942;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.category-card h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.category-card p{
    color:#9CA3AF;
}

.category-card span{
    display:inline-block;
    margin-top:18px;
    color:#F5B942;
    font-weight:600;
}
.icon-style{
    padding-right: 10px;
}
/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1024px){

    .section-title{

        font-size:36px;
    }

}

@media(max-width:768px){

    .section-space{

        padding-top:70px;
        padding-bottom:70px;
    }

    .section-title{

        font-size:30px;
    }

    .section-subtitle{

        font-size:16px;
    }
        .footer-cta-form input{
        width:180px;
    }

}

@media(max-width:640px){

    .section-title{

        font-size:26px;
    }

}
.new-product-card{

    background:#121218;
    border:1px solid #252530;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    position:relative;

}

.new-product-card:hover{

    transform:translateY(-8px);
    border-color:#F5B942;
    box-shadow:0 20px 50px rgba(245,185,66,.15);

}

.new-badge{

    position:absolute;
    top:15px;
    left:15px;
    background:#10B981;
    color:#fff;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:999px;
    z-index:10;

}
.blog-card{

    background:#121218;
    border:1px solid #252530;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;

}

.blog-card:hover{

    transform:translateY(-8px);
    border-color:#F5B942;
    box-shadow:0 20px 50px rgba(245,185,66,.15);

}
.free-section{

    background:#121218;

    border:1px solid #252530;

    border-radius:28px;

    padding:70px 50px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.free-section::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(245,185,66,.08);

    border-radius:50%;

    left:-120px;

    top:-120px;

}

.free-section::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(245,185,66,.08);

    border-radius:50%;

    right:-100px;

    bottom:-100px;

}

.seller-section{

    background:#121218;
    border:1px solid #252530;
    border-radius:30px;
    padding:70px;

}

.seller-feature{

    background:#1B1B22;
    border:1px solid #2F2F38;
    padding:18px 22px;
    border-radius:14px;
    color:#fff;
    transition:.3s;

}

.seller-feature:hover{

    border-color:#F5B942;
    transform:translateY(-4px);

}
.product-card{

background:#121218;

border:1px solid #252530;

border-radius:20px;

overflow:hidden;

position:relative;

transition:.35s;

}

.product-card:hover{

transform:translateY(-8px);

border-color:#F5B942;

box-shadow:0 20px 60px rgba(245,185,66,.18);

}

.badge-primary{

background:#F5B942;

color:#111;

padding:6px 12px;

border-radius:999px;

font-size:12px;

font-weight:700;

}

.section-badge{

display:inline-block;

padding:8px 16px;

background:rgba(245,185,66,.12);

color:#F5B942;

border-radius:999px;

font-weight:600;

font-size:14px;

}

.section-title{

font-size:42px;

font-weight:700;

color:white;

}

.section-subtitle{

max-width:650px;

margin:auto;

margin-top:18px;

color:#9CA3AF;

font-size:18px;

line-height:1.8;

}

.btn-secondary{

display:inline-block;

padding:14px 30px;

border:1px solid #F5B942;

color:#F5B942;

border-radius:12px;

transition:.3s;

}

.btn-secondary:hover{

background:#F5B942;

color:#111;

}