*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#0d0d0d;
    color:white;
    overflow-x:hidden;
}

/* NAVBAR */

.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:#111;
    border-bottom:1px solid #222;
}

.navbar{
    width: 95% !important;
    max-width: 1440px !important;
    margin: 12px auto !important;
    padding: 0 25px !important;
    border-radius: 16px !important;
    height: 80px;

    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
}

.logo span{
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #000000 !important;
    letter-spacing: 0.5px !important;
}

.logo p{
    font-size: 13.5px !important;
    letter-spacing: 4px !important;
    color: #222222 !important;
}

.search-box{
    width: 100% !important;
    max-width: 500px !important;
    position: relative;
    margin: 0 20px !important;
}

.search-box input{
    width:100%;
    padding:14px 45px 14px 18px;
    border:none;
    outline:none;
    border-radius:40px;
    background:#1b1b1b;
    color:white;
    font-size:15px;
}

.search-box i{
    position:absolute;
    right:18px;
    top:15px;
    color:#00ff99;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.add-product-btn{
    padding:12px 22px;
    border:none;
    border-radius:30px;
    background:#00ff99;
    color:black;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.add-product-btn:hover{
    transform:scale(1.05);
}

.menu-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(124, 58, 237, 0.08) !important;
    color: #7c3aed !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 17px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04) !important;
}

.menu-btn:hover {
    background: #7c3aed !important;
    color: white !important;
    transform: scale(1.08) !important;
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.25) !important;
}

/* SIDEBAR */

.sidebar{
    position:fixed;
    top:0;
    right:-320px;
    width:320px;
    height:100%;
    background:#141414;
    z-index:2000;
    padding:30px;
    transition:0.4s;
}

.sidebar.active{
    right:0;
}

.sidebar-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.sidebar-top h2{
    color:#00ff99;
}

.sidebar-top i{
    font-size:28px;
    cursor:pointer;
}

.sidebar a{
    display:flex;
    align-items:center;
    gap:15px;

    text-decoration:none;
    color:white;

    padding:18px;
    margin-bottom:15px;

    background:#1d1d1d;

    border-radius:12px;

    transition:0.3s;
}

.sidebar a:hover{
    background:#00ff99;
    color:black;
    transform:translateX(-5px);
}

.overlay{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    top:0;
    left:0;
    z-index:1500;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.overlay.show{
    opacity:1;
    visibility:visible;
}

/* HERO */
.hero{
    min-height:72vh;

    margin-top: 0px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:50px;

    padding:30px 8%;

    background:#000;
}

/* LEFT SIDE */

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:60px;
    line-height:1.2;
    color:white;
}

.hero-content h1 span{
    display:block;
    color:#00ff99;
}

.hero-content p{
    margin-top:5px;
    font-size:20px;
    color:#d1d5db;
    max-width:500px;
}

.shop-btn{
    display:inline-block;

    margin-top:10px;

    padding:14px 35px;

    border-radius:50px;

    background:#00ff99;

    color:black;

    font-weight:bold;

    text-decoration:none;
}

/* RIGHT SIDE */

.hero-slider{
    flex:1;
    position:relative;
}

.slide{
    display:none;
    animation: slideFade 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active{
    display:block;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide img{
    width:100%;
    aspect-ratio: 16 / 9;
    height:auto;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.5);
}

/* ARROWS */

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:#00ff99;

    color:black;

    font-size:24px;

    cursor:pointer;

    z-index:10;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

@media(max-width:768px){

.hero{

    flex-direction:column;

    text-align:center;

    padding:15px 8% 30px;

    gap:25px;
}

.hero-content h1{

    font-size:42px;
    margin-top:0px;
}

.hero-content p{

    font-size:18px;
    max-width:100%;
}

.hero-slider{

    width:100%;
}

.slide img{

    width:100%;
    aspect-ratio: 16 / 9;
    height:auto;

    object-fit:cover;

    border-radius:20px;
}

.slider-btn{

    width:38px;
    height:38px;

    font-size:20px;
}
}
/* PRODUCTS */

.products-section{
    width:90%;
    margin:100px auto;
}

.section-title{
    text-align:center;
    font-size:50px;
    margin-bottom:60px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;

    padding:0 15px;
}
.product-card{
    background:#111827;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 8px 25px rgba(0,0,0,.35);

    transition:.3s;

    margin:0 5px;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-image{
    width:100%;
    height:250px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.product-details{
    padding:20px;
}

.product-details h3{
    font-size:30px;
    margin-bottom:12px;
}

.product-details p{
    color:#cbd5e1;
    line-height:1.7;
}

.price{
    margin-top:15px;
    font-size:38px;
    font-weight:bold;
    color:#00ff99;
}

@media(max-width:768px){

    .products-grid{
        padding:0 12px;
    }

    .product-card{
        margin:0 auto;
        width:100%;
    }

}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-image{
        height:220px;
    }

    .product-details h3{
        font-size:24px;
    }

    .price{
        font-size:30px;
    }
}

.product-card button{
    margin:20px;
    padding:14px 25px;
    border:none;
    border-radius:30px;
    background:#00ff99;
    color:black;
    font-weight:bold;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#111;
    text-align:center;
    padding:50px 20px;
}

.footer h2{
    color:#00ff99;
    margin-bottom:15px;
}

.footer p{
    color:#bbb;
    margin-bottom:10px;
}

/* RESPONSIVE */
@media (max-width:768px){

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:nowrap !important;
        gap:12px !important; /* Elegant equal gaps between direct flex items */
        padding: 0 16px !important; /* Symmetrical viewport border padding */
        margin: 0 !important;
        width: 100% !important;      /* Forces full screen width spacing */
        border-radius: 0px !important;
        height: 64px !important;
    }

    .search-box{
        display:flex !important;
        width:auto !important;
        flex:1 !important;
        margin:0 !important;
        max-width:220px !important; /* Elegant flexible text box size */
    }

    .search-box input{
        width:100%;
        font-size:13px !important;
        height:36px !important;
        padding: 6px 30px 6px 12px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(139, 94, 43, 0.3) !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .search-box i{
        right: 12px !important;
        top: 10px !important;
        font-size: 13px !important;
    }

    /* Fine-tune logo sizing on mobile for enhanced readability */
    .logo span {
        font-size: 20px !important;
        font-weight: 800 !important;
        letter-spacing: 0.3px !important;
    }
    .logo p {
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }
    .nav-back-arrow-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
        margin-right: 0px !important; /* Spacing handled by flex gaps */
    }
    .cart-icon {
        font-size: 22px !important;
        margin-right: 0px !important;
    }
    .cart-icon span {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        top: -6px !important;
        right: -6px !important;
    }
    .menu-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
        display: inline-flex !important;
    }
}

@media(max-width:900px){

    .search-box{
        display:flex;
    }

    .hero-content h1{
        font-size:45px;
        line-height:60px;
    }

    .section-title{
        font-size:35px;
    }

}

@media(max-width:600px){

    .add-product-btn{
        display:none;
    }

    .hero{
        padding:20px;
        text-align:center;
        justify-content:center;
    }

    .hero-content h1{
        font-size:38px;
        line-height:50px;
    }

}

/* LOGIN PAGE */

.login-page{
    width:100%;
    min-height:100vh;

    background:radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.08) 0%, #09090b 100%);

    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:20px;
    padding-top:25px;
}

.login-container{
    width:1100px;
    min-height:580px;

    background:#111;

    border-radius:25px;

    overflow:hidden;

    display:grid;
    grid-template-columns:1fr 1fr;

    box-shadow:0 0 40px rgba(0,255,153,0.2);
}

/* LEFT SIDE */

.login-left{
    background:#00ff99;

    padding:60px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.login-left h1{
    font-size:55px;
    color:black;
    margin-bottom:20px;
}

.login-left p{
    font-size:18px;
    color:#222;
    line-height:30px;
    margin-bottom:40px;
}

.login-left img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
}

/* RIGHT SIDE */

.login-right{
    padding:40px 60px;


    display:flex;
    flex-direction:column;
    justify-content:center;
}

.login-right h2{
    font-size:40px;
    margin-bottom:25px;

    text-align:center;
}

/* INPUT BOX */

.input-box{
    margin-bottom:25px;
}

.input-box label{
    display:block;
    margin-bottom:12px;
    font-size:15px;
    color:#ccc;
}

.input-field{
    width:100%;
    height:60px;

    background:#1c1c1c;

    border-radius:15px;

    display:flex;
    align-items:center;

    padding:0 20px;
}

.input-field i{
    color:#00ff99;
    font-size:18px;
    margin-right:15px;
}

.input-field input{
    width:100%;
    background:none;
    border:none;
    outline:none;

    color:white;
    font-size:16px;
}

/* OPTIONS */

.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:30px;
}

.remember{
    display:flex;
    align-items:center;
    gap:10px;
}

.login-options a{
    color:#00ff99;
    text-decoration:none;
}

/* BUTTON */

.login-btn{
    width:100%;
    height:60px;

    border:none;

    border-radius:15px;

    background:#00ff99;

    color:black;

    font-size:18px;
    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.login-btn:hover{
    transform:scale(1.02);
    box-shadow:0 0 20px #00ff99;
}

/* SIGNUP LINK */

.signup-link{
    margin-top:30px;
    text-align:center;
    color:#bbb;
}

.signup-link a{
    color:#00ff99;
    text-decoration:none;
    font-weight:bold;
}

/* RESPONSIVE */

@media(max-width:900px){

    .login-container{
        grid-template-columns:1fr;
    }

    .login-left{
        display:none;
    }

    .login-right{
        padding:40px 25px;
    }

    .login-right h2{
        font-size:32px;
    }

}

/* FORGOT PASSWORD */

.forgot-page{
    width:100%;
    min-height:100vh;

    background:radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.08) 0%, #09090b 100%);

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;
}

.forgot-container{
    width:500px;

    background:#121212;

    padding:50px 40px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 0 30px rgba(0,255,153,0.2);
}

.forgot-icon{
    width:90px;
    height:90px;

    background:#00ff99;

    border-radius:50%;

    margin:auto auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.forgot-icon i{
    font-size:35px;
    color:black;
}

.forgot-container h1{
    font-size:38px;
    margin-bottom:15px;
}

.forgot-container p{
    color:#aaa;
    line-height:28px;
    margin-bottom:35px;
}

.forgot-input{
    width:100%;
    height:60px;

    background:#1d1d1d;

    border-radius:15px;

    display:flex;
    align-items:center;

    padding:0 20px;

    margin-bottom:25px;
}

.forgot-input i{
    color:#00ff99;
    font-size:18px;
    margin-right:15px;
}

.forgot-input input{
    width:100%;

    background:none;

    border:none;

    outline:none;

    color:white;

    font-size:16px;
}

.forgot-container button{
    width:100%;
    height:60px;

    border:none;

    border-radius:15px;

    background:#00ff99;

    color:black;

    font-size:17px;
    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.forgot-container button:hover{
    transform:scale(1.02);

    box-shadow:0 0 20px #00ff99;
}

.back-login{
    margin-top:30px;

    color:#bbb;
}

.back-login a{
    color:#00ff99;

    text-decoration:none;

    font-weight:bold;
}

/* SIGNUP PAGE */

.signup-page{

    width:100%;
    min-height:100vh;

    background:radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.08) 0%, #09090b 100%);

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;
}

.signup-container{

    width:1200px;

    min-height:750px;

    background:#111;

    border-radius:30px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    box-shadow:0 0 40px rgba(0,255,153,0.2);
}

/* LEFT SIDE */

.signup-left{

    background:#00ff99;

    padding:60px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.signup-left h1{

    font-size:55px;

    color:black;

    margin-bottom:20px;

    line-height:70px;
}

.signup-left p{

    font-size:18px;

    color:#222;

    line-height:32px;

    margin-bottom:35px;
}

.signup-left img{

    width:100%;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* RIGHT SIDE */

.signup-right{

    padding:60px;
}

.signup-right h2{

    font-size:42px;

    margin-bottom:35px;
}

/* INPUTS */

.signup-input-box{

    margin-bottom:22px;
}

.signup-input-box label{

    display:block;

    margin-bottom:10px;

    color:#ccc;

    font-size:15px;
}

.signup-input-field{

    width:100%;

    height:62px;

    background:#1d1d1d;

    border-radius:16px;

    display:flex;

    align-items:center;

    padding:0 20px;
}

.signup-input-field i{

    color:#00ff99;

    font-size:18px;

    margin-right:15px;
}

.signup-input-field input{

    width:100%;

    background:none;

    border:none;

    outline:none;

    color:white;

    font-size:16px;
}

/* TERMS */

.terms-box{

    display:flex;

    align-items:center;

    gap:12px;

    margin:20px 0 30px;

    color:#bbb;
}

/* BUTTON */

.signup-btn{

    width:100%;

    height:62px;

    border:none;

    border-radius:16px;

    background:#00ff99;

    color:black;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.signup-btn:hover{

    transform:scale(1.02);

    box-shadow:0 0 25px #00ff99;
}

/* LOGIN LINK */

.login-link{

    margin-top:30px;

    text-align:center;

    color:#bbb;
}

.login-link a{

    color:#00ff99;

    text-decoration:none;

    font-weight:bold;
}

/* RESPONSIVE */

@media(max-width:950px){

    .signup-container{

        grid-template-columns:1fr;
    }

    .signup-left{

        display:none;
    }

    .signup-right{

        padding:40px 25px;
    }

    .signup-right h2{

        font-size:34px;
    }
}

/* CART ICON */

.cart-icon{

    position:relative;

    font-size:24px;

    color:white;

    margin-right:25px;

    cursor:pointer;
}

.cart-icon span{

    position:absolute;

    top:-10px;
    right:-12px;

    width:22px;
    height:22px;

    background:#00ff99;

    color:black;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:12px;

    font-weight:bold;
}
.cart-icon{
    position:relative;
    color:white;
    text-decoration:none;
    font-size:24px;
    cursor:pointer;
}

.cart-icon span{
    position:absolute;
    top:-10px;
    right:-10px;
    width:20px;
    height:20px;
    background:#00ff99;
    color:black;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
}

.product-buttons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.cart-btn,
.buy-btn{

    flex:1;

    min-height:48px;

    padding:0 12px;

    border:none;
    border-radius:12px;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:6px;

    white-space:nowrap;
}

.cart-btn{
    background:#00ff99;
    color:black;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    text-align:center;
}

.buy-btn{
    background:#2563eb;
    color:#fff;
}

.quantity-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:15px;
}

.quantity-box button{
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:#111827;
    color:white;
    cursor:pointer;
    font-size:18px;
}
.quantity-controls{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:15px;
}

.quantity-controls button{
    width:35px;
    height:35px;
    border:none;
    border-radius:50%;
    background:#00ff99;
    color:black;
    font-size:20px;
    cursor:pointer;
    font-weight:bold;
}

.quantity-controls span{
    font-size:20px;
    font-weight:bold;
}
.topbar{
   display:flex;
   align-items:center;
   gap:12px;
   padding:14px 16px;
   background:#111;
   color:white;
   position:sticky;
   top:0;
   z-index:1000;
}

.back-btn{
   width:40px;
   height:40px;
   border:none;
   border-radius:50%;
   background:rgba(255,255,255,0.1);
   color:white;
   font-size:22px;
   cursor:pointer;
   display:flex;
   align-items:center;
   justify-content:center;
   transition:0.3s;
}

.back-btn:hover{
   background:rgba(255,255,255,0.2);
}

/* ==========================
   PREMIUM NEW LAUNCHES
========================== */

.new-launches{
    margin-top:30px;
    margin-bottom:40px; /* Space below the section */

    padding:30px 15px 50px;

    background:#000000;

    border-radius:35px;

    max-width:1400px;

    margin-left:auto;
    margin-right:auto;
}
/* Heading */

.new-launches .section-title{

    color:#ffffff !important;

    font-size:52px;

    font-weight:800;

    text-align:center;

    line-height:1.15;

    margin-bottom:25px;   /* Reduced space */

    letter-spacing:-1px;
}

/* Product Container */

.launch-grid{

    background:linear-gradient(
        135deg,
        #eef6ff 0%,
        #e9ecff 50%,
        #f8efff 100%
    );

    padding:35px;

    border-radius:35px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);
}

/* Product Card */

.launch-card{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    text-decoration:none;

    color:#111827;

    transition:0.35s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.08);
}

.launch-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}

.launch-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    background:#f8fafc;
    padding:16px;
    display:block;
    margin-bottom:0;
    box-sizing:border-box;
}

.launch-card h3{

    padding:15px 20px 8px;

    font-size:24px;

    font-weight:700;

    text-align:center;

    color:#111827;
}

.launch-card p{

    padding:0 20px 20px;

    color:#64748b;

    text-align:center;

    line-height:1.6;
}

/* Mobile */

@media(max-width:768px){

    .new-launches{

        padding:20px 10px 35px;

        border-radius:25px;
    }

    .new-launches .section-title{

        font-size:34px;

        margin-bottom:18px;

        line-height:1.2;
    }

    .launch-grid{

        padding:18px;

        gap:18px;

        border-radius:22px;
    }

    .launch-card img{
        height:190px;
        padding:12px;
    }
}

/* =========================
   WHY CHOOSE US
========================= */

.why-us{

    margin:70px 4% 50px;

    padding:35px;

    background:#111827;

    border-radius:30px;

    box-shadow:
    0 0 30px rgba(0,0,0,.35);
}

.why-us-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:35px;
}

.why-card{

    background:#1e293b;

    padding:25px;

    border-radius:20px;

    text-align:center;

    transition:.3s;
}

.why-card:hover{

    transform:translateY(-8px);
}

.why-card i{

    font-size:38px;

    color:#00ff99;

    margin-bottom:15px;
}

.why-card h3{

    margin-bottom:10px;

    font-size:22px;
}

.why-card p{

    color:#cbd5e1;

    line-height:1.7;
}

/* =========================
   SOCIAL SECTION
========================= */

.social-section{

    margin:0 4% 60px;

    padding:30px;

    background:#111827;

    border-radius:25px;

    text-align:center;
}

.social-section h2{

    margin-bottom:25px;
}

.social-icons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.social-icons a{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:white;

    background:#1e293b;

    font-size:26px;

    transition:.3s;
}

.social-icons a:hover{

    transform:translateY(-6px);

    background:#00ff99;

    color:black;
}

/* MOBILE */

@media(max-width:768px){

    .why-us{

        margin:50px 4% 40px;

        padding:25px;
    }

    .why-card{

        padding:20px;
    }

    .social-icons a{

        width:55px;
        height:55px;

        font-size:24px;
    }
}

.footer-links{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin:40px 4%;
}

.footer-links a{

    text-decoration:none;

    color: #1f2937 !important; /* Visible dark slate text */

    background: #f1f5f9 !important; /* Soft gray border box */

    border: 1px solid #e2e8f0 !important;

    padding:14px 24px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

    box-shadow:
    0 4px 15px rgba(0,0,0,.03) !important;
}

.footer-links a:hover{

    background: #7c3aed !important; /* Premium brand purple */

    color: white !important;

    border-color: #7c3aed !important;

    transform:translateY(-3px);
}

/* ===================================
   ORANGE + DARK FITNESS THEME
   ADD AT END OF style.css
=================================== */

:root{

    --primary:#F5F1E8;
    --secondary:#2C2C2C;
    --dark:#111111;

    --accent:#C58A3D;
    --accent-hover:#D89B48;

    --text:#F5F1E8;
    --text-light:#D6D1C7;

}

/* BODY */

body{
    background:#111111;
    color:var(--text);
}
/* HEADER */

.header{
    background:#111;
    border-bottom:1px solid rgba(255,122,0,.15);
}

/* LOGO */

.logo span{
    color:var(--accent);
}

/* SEARCH */

.search-box input{

    background:#1F1F1F;

    border:1px solid rgba(197,138,61,.3);

}

.search-box i{
    color:var(--accent);
}

/* SIDEBAR */

.sidebar{
    background:#151515;
}

.sidebar-top h2{
    color:var(--orange);
}

.sidebar a{
    background:#1e1e1e;
}

.sidebar a:hover{
    background:var(--orange);
    color:white;
}

/* HERO */

.hero{
    background:
    linear-gradient(
    135deg,
    #0f0f0f,
    #181818
    );
}

.hero-content h1 span{
    color:var(--orange);
}

.shop-btn{

    background:var(--accent);

    color:white;

    font-weight:700;

}

.shop-btn:hover{
    background:var(--orange-hover);
}

/* SLIDER BUTTONS */

.slider-btn{

    background:var(--accent);

    color:white;

}

/* PRODUCT CARDS */

.product-card{

    background:#1A1A1A;

    border:1px solid rgba(197,138,61,.15);

}

.product-card:hover{
    border-color:var(--orange);
}

.price{
    color:var(--accent);
}

/* BUTTONS */

.cart-btn{

    background:var(--accent);

    color:white;

}

.cart-btn:hover{
    background:var(--orange-hover);
}

.buy-btn{

    background:#2C2C2C;

    border:1px solid var(--accent);

    color:white;

}

.buy-btn:hover{
    background:var(--orange);
}

/* CART ICON */

.cart-icon span{
    background:var(--orange);
    color:white;
}


/* WHY US */

.why-us{
    background:var(--card);
}

.why-card{
    background:var(--card-light);
}

.why-card i{
    color:var(--accent);
}

/* SOCIAL */

.social-section{
    background:var(--card);
}

.social-icons a{
    background:var(--card-light);
    color:var(--orange);
}

.social-icons a:hover{

    background:var(--accent);

    color:white;

}
/* FOOTER LINKS */

.footer-links a{
    background:var(--card);
}

.footer-links a:hover{
    background:var(--orange);
    color:white;
}

/* FOOTER */

.footer{
    background:#111;
    border-top:2px solid var(--orange);
}

.footer h2{
    color:var(--accent);
}

/* LOGIN */

.login-container,
.signup-container{
    background:#161616;
}

.login-left,
.signup-left{
    background:var(--orange);
}

.login-btn,
.signup-btn{
    background:var(--orange);
    color:white;
}

.login-btn:hover,
.signup-btn:hover{
    background:var(--orange-hover);
}

/* INPUTS */

.input-field,
.signup-input-field,
.forgot-input{
    background:#202020;
}

.input-field i,
.signup-input-field i,
.forgot-input i{
    color:var(--orange);
}

/* FORGOT PASSWORD */

.forgot-icon{
    background:var(--orange);
}

.forgot-container button{
    background:var(--orange);
    color:white;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:var(--orange);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--orange-hover);
}

/* ===========================
   PREMIUM WHITE THEME UPDATE
=========================== */

/* Website Background */
body{
    background:#ffffff !important;
    color:#111111 !important;
}

/* Header / Navbar with Glassmorphism Finish */
.header{
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom:1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Logo */
.logo span{
    color:#000000 !important;
    font-weight:900;
    letter-spacing:1px;
    text-shadow:
    0 1px 0 rgba(0,0,0,0.05),
    0 2px 8px rgba(0,0,0,0.05);
}

.logo p{
    color:#222222 !important;
}

/* Search Box */
.search-box input{
    background:#ffffff !important;
    color:#111 !important;

    border:2px solid #111111 !important;

    box-shadow:
    0 4px 15px rgba(0,0,0,0.08);

    font-weight:500;
}

.search-box input::placeholder{
    color:#666;
}

.search-box i{
    color:#111111 !important;
    font-size:18px;
}

/* Cart Icon */
.cart-icon{
    color:#111111 !important;
}

.cart-icon i{
    color:#111111 !important;
}

.cart-icon span{
    background:#8B5E2B !important;
    color:#ffffff !important;
}

/* Menu Icon */
.menu-btn span{
    background:#111111 !important;
}

/* Hero Section */
/* Premium Obsidian-Navy Content Box */
.hero-content{
    background: linear-gradient(
        135deg,
        #09090b 0%,
        #151522 55%,
        #241a3a 100%
    ) !important;

    padding: 35px 45px;
    border-radius: 30px;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.2),
    0 5px 15px rgba(139,94,43,0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;

    color: white;
    transition: all 0.3s ease;
}

/* Keep text white on violet background */
.hero-content h1{
    color: #ffffff !important;
}

.hero-content h1 span{
    color: #facc15 !important; /* premium gold highlight */
}

.hero-content p{
    color: rgba(255,255,255,0.9) !important;
}

/* Responsive */
@media(max-width:768px){

    .hero-content{
        padding: 22px 20px;
        border-radius: 22px;
    }

}

/* Section Titles */
.section-title{
    color:#111111 !important;
    text-shadow:none !important;
}

/* Product Cards */
.product-card{
    background:#ffffff !important;

    border:1px solid #e5e7eb !important;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.08);
}

.product-details h3{
    color:#111111 !important;
}

.product-details p{
    color:#555 !important;
}

.price{
    color:#8B5E2B !important;
}

/* Why Us */
.why-us{
    background:#ffffff !important;
}

.why-card{
    background:#f8f9fa !important;
}

.why-card h3{
    color:#111111 !important;
}

.why-card p{
    color:#555 !important;
}

.why-card i{
    color:#8B5E2B !important;
}

/* Social Section */
.social-section{
    background:#ffffff !important;
}

.social-icons a{
    background:#f3f4f6 !important;
    color:#111111 !important;
}

.social-icons a:hover{
    background:#8B5E2B !important;
    color:#ffffff !important;
}



/* Sidebar */
.sidebar{
    background:#ffffff !important;
}

.sidebar-top h2{
    color:#8B5E2B !important;
}

.sidebar a{
    background:#f8f9fa !important;
    color:#111111 !important;
}

.sidebar a:hover{
    background:#8B5E2B !important;
    color:#ffffff !important;
}

/* ===================================
   SHOP BY NEED SECTION IMPROVEMENTS
=================================== */

/* Less space between New Launches and Shop By Need */
.products-section{
    margin-top:40px !important;
}

/* Light Alabaster Background for Shop By Need */
.products-section{
    background:#F5F5F0;
    padding:40px 25px;
    border-radius:30px;
}

/* Product Cards */
.products-section .product-card{
    background:#ffffff !important;
    border:1px solid #ececec !important;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ===================================
   BUTTON COLORS
=================================== */

/* Add To Cart - Premium Purple */
.cart-btn{
    background:linear-gradient(
        135deg,
        #7c3aed,
        #8b5cf6
    ) !important;

    color:white !important;
}

.cart-btn:hover{
    background:linear-gradient(
        135deg,
        #6d28d9,
        #7c3aed
    ) !important;

    transform:translateY(-2px);
}

/* Buy Now - Premium Orange */
.buy-btn{
    background:linear-gradient(
        135deg,
        #f97316,
        #fb923c
    ) !important;

    border:none !important;

    color:white !important;
}

.buy-btn:hover{
    background:linear-gradient(
        135deg,
        #ea580c,
        #f97316
    ) !important;

    transform:translateY(-2px);
}

/* ===================================
   WHY CHOOSE US SECTION
=================================== */

/* Premium Soft Lavender Background */
.why-us{

    background:
    linear-gradient(
        135deg,
        #f8f5ff,
        #f3efff
    ) !important;

    border:1px solid #e9ddff;

    box-shadow:
    0 10px 30px rgba(124,58,237,0.08);

    padding:45px;
}

/* Individual Cards */
.why-card{

    background:#ffffff !important;

    border:1px solid #ececec;

    box-shadow:
    0 6px 18px rgba(0,0,0,0.06);
}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 12px 25px rgba(124,58,237,0.12);
}

/* Heading */
.why-us .section-title{
    color:#111111 !important;
}

/* Icons */
.why-card i{
    color:#7c3aed !important;
}

/* Text */
.why-card h3{
    color:#111111 !important;
}

.why-card p{
    color:#555555 !important;
}

.products-section{
    margin-top:60px;
    background:#F5F5F0;
    padding:40px 25px;
    border-radius:30px;
}

/* ===================================
   PREMIUM CONNECT WITH US SECTION
=================================== */

.social-section{

    max-width:900px;

    margin:60px auto;

    padding:40px 30px;

    border-radius:35px;

    background:linear-gradient(
        135deg,
        #ff512f 0%,
        #ff7b00 35%,
        #ffb703 70%,
        #ffd60a 100%
    ) !important;

    box-shadow:
    0 15px 40px rgba(255,123,0,0.25);

    text-align:center;
}

.social-section h2{

    color:white !important;

    font-size:42px;

    font-weight:800;

    margin-bottom:35px;

    text-shadow:
    0 3px 12px rgba(0,0,0,0.15);
}

/* ICON CONTAINER */

.social-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:28px;

    flex-wrap:wrap;
}

/* INDIVIDUAL ICON CARD */

.social-icons a{

    width:75px;

    height:75px;

    border-radius:50%;

    background:white !important;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:34px;

    transition:0.35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

.social-icons a:hover{

    transform:
    translateY(-8px)
    scale(1.08);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.18);
}

/* INSTAGRAM */

.social-icons a.instagram i{
    background:linear-gradient(
        45deg,
        #f58529,
        #feda77,
        #dd2a7b,
        #8134af,
        #515bd4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* FACEBOOK */

.social-icons a.facebook i{
    color:#1877F2;
}

/* YOUTUBE */

.social-icons a.youtube i{
    color:#FF0000;
}


/* MOBILE */

@media(max-width:768px){

    .social-section{

        margin:40px 15px;

        padding:30px 20px;

        border-radius:25px;
    }

    .social-section h2{

        font-size:30px;
    }

    .social-icons{

        gap:18px;
    }

    .social-icons a{

        width:65px;
        height:65px;

        font-size:28px;
    }
}

/* ===================================
   PREMIUM WHITE LOGIN PAGE
=================================== */

/* Login Page Background */
.login-page{
    background:#f8fafc !important;
    background-image:none !important;
}

/* Main Login Card */
.login-container{

    background:#ffffff !important;

    box-shadow:
    0 15px 50px rgba(0,0,0,0.08);

    border:1px solid #e5e7eb;

    border-radius:30px;
}

/* Left Side */
.login-left{

    background:linear-gradient(
        135deg,
        #7c3aed,
        #8b5cf6
    ) !important;

    color:white;
}

.login-left h1{
    color:white !important;
}

.login-left p{
    color:rgba(255,255,255,0.9) !important;
}

/* Right Side */
.login-right{

    background:#ffffff !important;
}

/* Login Heading */
.login-right h2{

    color:#111111 !important;

    font-size:42px;

    font-weight:800;
}

/* Email & Password Labels */
.input-box label{

    color:#111111 !important;

    font-size:16px;

    font-weight:600;
}

/* Input Field */
.input-field{

    background:#f8fafc !important;

    border:2px solid #e5e7eb;

    transition:.3s;
}

.input-field:hover{

    border-color:#8b5cf6;
}

/* Active Input */
.input-field:focus-within{

    border-color:#8b5cf6;

    box-shadow:
    0 0 0 4px rgba(139,92,246,.12);
}

/* Icons */
.input-field i{

    color:#8b5cf6 !important;
}

/* Input Text */
.input-field input{

    color:#111111 !important;
}

/* Placeholder */
.input-field input::placeholder{

    color:#6b7280;
}

/* Remember Me */
.remember{

    color:#111111;
}

/* Forgot Password */
.login-options a{

    color:#7c3aed !important;

    font-weight:600;
}

/* Login Button */
.login-btn{

    background:linear-gradient(
        135deg,
        #7c3aed,
        #8b5cf6
    ) !important;

    color:white !important;

    border:none;
}

.login-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(124,58,237,.25);
}

/* Signup Text */
.signup-link{

    color:#555 !important;
}

.signup-link a{

    color:#7c3aed !important;

    font-weight:700;
}

/* =========================
   LOGIN PAGE BACK BUTTON
========================= */

/* LOGIN CARD */
.login-container{
    position:relative;
}

/* BACK BUTTON */
.top-nav{
    position:absolute;
    top:25px;
    left:25px;
    z-index:100;
}

.back-btn{
    width:48px;
    height:48px;

    border:none;
    border-radius:50%;

    background:#ffffff;

    color:#7c3aed;

    font-size:22px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.08);

    transition:0.3s ease;
}

.back-btn:hover{
    transform:translateY(-2px);
    background:#7c3aed;
    color:#ffffff;
}

/* Mobile */
@media(max-width:900px){

    .top-nav{
        top:18px;
        left:18px;
    }

    .back-btn{
        width:42px;
        height:42px;
        font-size:20px;
    }

}

/* ==========================================================
   HORIZONTAL CARDS REDESIGN, RATING STARS & SVG SPARKLINES
   ========================================================== */

/* Star Ratings container */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 13px;
}
.rating-stars i {
    color: #fbbf24 !important; /* Premium gold stars */
}
.rating-value {
    font-weight: 700;
    color: #111111 !important;
    margin-left: 5px;
}
.rating-count {
    color: #64748b !important;
    font-size: 12px;
}

/* Stars Interactive Hover & Click Container */
.stars-container {
    display: inline-flex;
    cursor: pointer;
    gap: 3px;
}
.stars-container i {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.15s ease !important;
}
.stars-container i:hover {
    transform: scale(1.35) !important;
    color: #f59e0b !important; /* Brighter gold hover color */
}
.rating-stars-bounce {
    animation: starBounce 0.5s ease-out;
}
@keyframes starBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.35); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Demand indicator sparkline container */
.demand-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    background: rgba(249, 115, 22, 0.05) !important;
    border: 1px solid rgba(249, 115, 22, 0.12) !important;
    padding: 5px 12px;
    border-radius: 8px;
    color: #ea580c !important;
    font-weight: 600;
    width: fit-content;
}
.sparkline svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.2));
}
.demand-percentage {
    color: #64748b !important;
    font-size: 11px;
    font-weight: 500;
    margin-left: 2px;
}

/* Redesign product grid as list rows */
.products-grid {
    grid-template-columns: 1fr !important; /* Single column of horizontal rows */
    max-width: 1200px !important;
    margin: 0 auto !important;
    gap: 25px !important;
}

.product-card {
    display: flex !important;
    flex-direction: row !important; /* Left-to-right layout */
    align-items: stretch !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04) !important;
    width: 100% !important;
    margin: 0 !important;
    height: auto !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08) !important;
    border-color: #8b5cf6 !important;
}

.product-image {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    height: auto !important;
    background: #f8fafc !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    border-right: 1px solid #f1f5f9 !important;
    cursor: pointer;
}

.product-image img {
    max-width: 100% !important;
    max-height: 220px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
}

.product-card:hover .product-image img {
    transform: scale(1.05) !important;
}

.product-details {
    flex: 1 !important;
    padding: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.product-details h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    color: #111111 !important;
    line-height: 1.2 !important;
}

.product-details p {
    color: #475569 !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.product-info {
    margin-bottom: 15px !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
}

.product-buttons {
    margin-top: 15px !important;
    display: flex !important;
    gap: 15px !important;
}

.cart-btn, .buy-btn {
    height: 52px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
}

/* Mobile & Tablet responsiveness for Horizontal Cards */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column !important; /* Stack card vertically on mobile */
    }
    .product-image {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 260px !important;
        padding: 16px !important;
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .product-image img {
        max-height: 220px !important;
    }
    .product-details {
        padding: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .product-details h3 {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }
    .product-details p {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .rating-stars {
        margin-bottom: 8px !important;
        font-size: 13px !important;
    }
    .demand-indicator {
        padding: 5px 10px !important;
        margin-bottom: 10px !important;
        font-size: 11px !important;
    }
    .sparkline svg {
        width: 60px !important;
        height: 18px !important;
    }
    .product-info {
        display: flex !important; /* Show specifications and badges on mobile */
        margin-bottom: 12px !important;
    }
    .price {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    .product-buttons {
        gap: 10px !important;
    }
    .cart-btn, .buy-btn {
        height: 44px !important;
        min-height: 44px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 550px) {
    .product-image {
        height: 220px !important;
        padding: 12px !important;
    }
    .product-image img {
        max-height: 195px !important;
    }
    .product-details {
        padding: 16px !important;
    }
    .product-details h3 {
        font-size: 18px !important;
    }
    .product-details p {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .demand-indicator {
        display: none !important;
    }
    .price {
        font-size: 22px !important;
    }
}

/* ===================================
   PREMIUM WHITE SIGNUP PAGE
=================================== */

/* Signup Page Background */
.signup-page{
    background:#f8fafc !important;
    background-image:none !important;
}

/* Main Signup Card */
.signup-container{

    background:#ffffff !important;

    border:1px solid #e5e7eb;

    border-radius:30px;

    box-shadow:
    0 15px 50px rgba(0,0,0,0.08);

    position:relative;
}

/* LEFT PANEL */

.signup-left{

    background:linear-gradient(
        135deg,
        #7c3aed,
        #8b5cf6
    ) !important;

    color:white;
}

.signup-left h1{
    color:white !important;
}

.signup-left p{
    color:rgba(255,255,255,0.9) !important;
}

.signup-left img{
    border-radius:25px;
}

/* RIGHT PANEL */

.signup-right{
    background:#ffffff !important;
}

/* HEADING */

.signup-right h2{

    color:#111111 !important;

    font-size:42px;

    font-weight:800;

    margin-bottom:30px;

    text-align:center;
}

/* LABELS */

.signup-input-box label{

    color:#111111 !important;

    font-size:16px;

    font-weight:600;
}

/* INPUT FIELD */

.signup-input-field{

    background:#f8fafc !important;

    border:2px solid #e5e7eb;

    transition:.3s ease;
}

.signup-input-field:hover{
    border-color:#8b5cf6;
}

.signup-input-field:focus-within{

    border-color:#8b5cf6;

    box-shadow:
    0 0 0 4px rgba(139,92,246,.12);
}

/* ICONS */

.signup-input-field i{
    color:#8b5cf6 !important;
}

/* INPUT TEXT */

.signup-input-field input{
    color:#111111 !important;
}

/* PLACEHOLDER */

.signup-input-field input::placeholder{
    color:#6b7280;
}

/* TERMS */

.terms-box{

    color:#555;

    font-size:15px;
}

.terms-box a{

    color:#7c3aed;

    text-decoration:none;

    font-weight:600;
}

/* CREATE ACCOUNT BUTTON */

.signup-btn{

    background:linear-gradient(
        135deg,
        #7c3aed,
        #8b5cf6
    ) !important;

    color:white !important;

    border:none;

    font-size:18px;

    font-weight:700;
}

.signup-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(124,58,237,.25);
}

/* LOGIN LINK */

.login-link{
    color:#555 !important;
}

.login-link a{

    color:#7c3aed !important;

    font-weight:700;

    text-decoration:none;
}

/* ===================================
   SIGNUP PAGE BACK BUTTON
=================================== */

.signup-top-nav{

    position:absolute;

    top:30px;

    left:30px;

    z-index:100;
}

.signup-back-btn{

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#7c3aed;

    font-size:22px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

    transition:0.3s ease;
}

.signup-back-btn:hover{

    background:#7c3aed;

    color:white;

    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:950px){

    .signup-right{
        padding:40px 25px;
    }

    .signup-right h2{
        font-size:34px;
    }

    .signup-top-nav{
        top:18px;
        left:18px;
    }

    .signup-back-btn{

        width:42px;
        height:42px;

        font-size:20px;
    }
}

/* ===================================
   PREMIUM WHITE FORGOT PASSWORD PAGE
=================================== */

/* Forgot Password Page Background */
.forgot-page {
    background: #f8fafc !important;
    background-image: none !important;
}

/* Main Forgot Password Card */
.forgot-container {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 30px !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08) !important;
    color: #111111 !important;
}

/* Icon Container */
.forgot-icon {
    background: rgba(124, 58, 237, 0.08) !important;
}

.forgot-icon i {
    color: #7c3aed !important;
}

/* Heading & Text */
.forgot-container h1 {
    color: #111111 !important;
    font-weight: 800 !important;
}

.forgot-container p {
    color: #4b5563 !important;
}

/* Input Fields */
.forgot-input {
    background: #f8fafc !important;
    border: 2px solid #e5e7eb !important;
    transition: .3s ease !important;
}

.forgot-input:hover {
    border-color: #8b5cf6 !important;
}

.forgot-input:focus-within {
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 4px rgba(139,92,246,.12) !important;
}

.forgot-input i {
    color: #8b5cf6 !important;
}

.forgot-input input {
    color: #111111 !important;
}

.forgot-input input::placeholder {
    color: #6b7280 !important;
}

/* Button styling */
.forgot-container button {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
}

.forgot-container button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(124,58,237,.25) !important;
}

/* Back Link */
.back-login {
    color: #555 !important;
}

.back-login a {
    color: #7c3aed !important;
    font-weight: 700 !important;
}