﻿/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* ================= TOPBAR ================= */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #0b1a3a, #102a5c);
    color: white;
    padding: 6px 20px;
    font-size: 14px;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b1a3a;
    padding: 10px;
    color: white;
}

.logo img {
    width: 80px;
}

/* SEARCH */
.search-box {
    width: 40%;
    display: flex;
}

    .search-box input {
        width: 80%;
        padding: 10px;
        border: none;
        outline: none;
    }

    .search-box button {
        width: 20%;
        background: gold;
        border: none;
        cursor: pointer;
    }

/* NAV */
.nav-icons a,
.nav-icons button {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-icons a:hover,
    .nav-icons button:hover {
        color: gold;
    }

/* ================= MENU ================= */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #102a5c;
    padding: 10px;
    color: white;
}

    .menu span {
        cursor: pointer;
        padding: 5px 10px;
    }

        .menu span:hover {
            background: white;
            color: #0b1a3a;
            border-radius: 5px;
        }

/* ================= SLIDER ================= */
.premium-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: 0.8s;
}

    .slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* BUTTONS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ================= CATEGORY ================= */
.category {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    flex-wrap: wrap;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 150px;
    text-align: center;
    transition: 0.3s;
}

    .box:hover {
        background: #0b1a3a;
        color: white;
        transform: translateY(-5px);
    }

/* ================= PRODUCTS (FINAL FIX) ================= */
#product-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* ✅ 5 products fix */
    gap: 15px;
    padding: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}

    .card:hover {
        transform: scale(1.03);
    }

    .card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

/* BUTTON */
button {
    background: #ff9900;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

    button:hover {
        background: #e68a00;
    }

/* ================= PRODUCT PAGE ================= */
.product-page {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

    .main-img:hover {
        transform: scale(1.2);
    }

/* ================= PANEL ================= */
.panel {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 999;
}

/* ================= FOOTER ================= */
.footer {
    background: #0b1a3a;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-box {
    width: 200px;
}

    .footer-box a {
        display: block;
        color: #ccc;
        margin: 5px 0;
        text-decoration: none;
    }

        .footer-box a:hover {
            color: gold;
        }

/* ================= MOBILE ================= */
@media(max-width:1000px) {
    #product-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    #product-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-box {
        width: 60%;
    }

    .product-page {
        flex-direction: column;
    }
}

@media(max-width:480px) {
    #product-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.footer {
    background: #0b1a3a;
    color: white;
    margin-top: 40px;
}

/* MAIN ROW */
.footer-row {
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
    flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
    width: 22%;
    min-width: 200px;
}

    /* LEFT SIDE */
    .footer-col.left p {
        margin: 10px 0;
    }

.logo {
    width: 70px;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col h3 {
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin: 6px 0;
}

    .footer-col a:hover {
        color: #1e90ff;
    }

/* SOCIAL BAR */
.footer-social {
    background: #132c5c;
    text-align: center;
    padding: 12px;
    font-size: 15px;
}

    .footer-social span {
        margin: 0 10px;
    }

/* BOTTOM */
.footer-bottom {
    text-align: center;
    background: #07152d;
    padding: 10px;
    font-size: 14px;
}

/* MOBILE */
@media(max-width:768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 20px;
    }
}
.earn-btn {
    background: linear-gradient(45deg, #00c853, #64dd17);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
}

    .earn-btn:hover {
        background: linear-gradient(45deg, #00e676, #76ff03);
        transform: scale(1.05);
    }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

    /* LINKS */
    .nav-icons a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        transition: 0.3s;
    }

        .nav-icons a:hover {
            color: gold;
        }

/* EARN BUTTON */
.earn-btn {
    background: linear-gradient(45deg, #00c853, #64dd17);
    color: white;
    border: none;
    padding: 7px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

    .earn-btn:hover {
        transform: scale(1.05);
        background: linear-gradient(45deg, #00e676, #76ff03);
    }
.nav-icons a, .earn-btn {
    padding: 6px 10px;
    border-radius: 5px;
}

    .nav-icons a:hover {
        background: rgba(255,255,255,0.1);
    }
.menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    background: #0b1a3a;
    padding: 12px;
}

    /* MENU ITEM */
    .menu span {
        position: relative;
        cursor: pointer;
        color: white;
        font-size: 16px;
        padding: 6px 10px;
        transition: 0.3s;
    }

        /* HOVER COLOR CHANGE */
        .menu span:hover {
            color: #00e5ff; /* neon blue */
        }

        /* UNDERLINE ANIMATION */
        .menu span::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            left: 0;
            bottom: -4px;
            background: #00e5ff;
            transition: 0.3s;
        }

        .menu span:hover::after {
            width: 100%;
        }
/* ================= FRANCHISE ================= */
.franchise {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0b1a3a, #1e3c72);
    color: white;
}

.franchise-left {
    width: 50%;
}

    .franchise-left h2 {
        font-size: 32px;
    }

    .franchise-left p {
        margin: 15px 0;
    }

    .franchise-left ul {
        list-style: none;
        padding: 0;
    }

    .franchise-left li {
        margin: 8px 0;
    }

    .franchise-left button {
        margin-top: 15px;
        padding: 12px 20px;
        background: gold;
        border: none;
        cursor: pointer;
        font-weight: bold;
    }

/* RIGHT IMAGE */
.franchise-right img {
    width: 350px;
    border-radius: 10px;
}

/* POPUP FORM */
.franchise-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.form-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

    .form-box input {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
    }

    .form-box button {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        background: orange;
        border: none;
        cursor: pointer;
    }

/* MOBILE */
@media(max-width:768px) {
    .franchise {
        flex-direction: column;
        text-align: center;
    }

    .franchise-left,
    .franchise-right {
        width: 100%;
    }

        .franchise-right img {
            width: 100%;
            margin-top: 20px;
        }
}
/* MENU */
.menu-item {
    position: relative;
    list-style: none;
}

    .menu-item a {
        text-decoration: none;
        color: black;
        font-weight: 600;
        padding: 15px;
        display: block;
    }

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    background: white;
    display: flex;
    gap: 40px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

/* HOVER EFFECT */
.mens-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* COLUMN */
.menu-column {
    min-width: 200px;
}

    .menu-column h3 {
        font-size: 18px;
        color: #0b1a3a;
        margin-bottom: 10px;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }

    .menu-column a {
        color: #444;
        padding: 6px 0;
        font-size: 14px;
        transition: 0.3s;
    }

        .menu-column a:hover {
            color: red;
            padding-left: 5px;
        }
/* WOMENS MENU */
.menu-item {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    cursor: pointer;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    background: #fff;
    display: flex;
    gap: 35px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

/* HOVER OPEN */
.womens-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* COLUMN */
.menu-column {
    min-width: 200px;
}

    /* HEADING */
    .menu-column h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #0b1a3a;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }

    /* LINKS */
    .menu-column a {
        display: block;
        text-decoration: none;
        color: #444;
        padding: 6px 0;
        transition: 0.3s;
        font-size: 14px;
    }

        .menu-column a:hover {
            color: red;
            padding-left: 5px;
        }
/* KIDS MENU */
.menu-item {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    cursor: pointer;
}

/* DROPDOWN */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    background: white;
    display: flex;
    gap: 35px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

/* HOVER EFFECT */
.kids-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* COLUMN */
.menu-column {
    min-width: 200px;
}

    /* TITLE */
    .menu-column h3 {
        font-size: 18px;
        color: #0b1a3a;
        margin-bottom: 10px;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }

    /* LINKS */
    .menu-column a {
        display: block;
        text-decoration: none;
        color: #444;
        padding: 6px 0;
        transition: 0.3s;
        font-size: 14px;
    }

        .menu-column a:hover {
            color: red;
            padding-left: 5px;
        }
/* GIRLS MENU */
.menu-item {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    cursor: pointer;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1100px;
    background: #fff;
    display: flex;
    gap: 35px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

/* HOVER EFFECT */
.girls-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* COLUMN */
.menu-column {
    min-width: 220px;
}

    /* HEADING */
    .menu-column h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #0b1a3a;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
    }

    /* LINKS */
    .menu-column a {
        display: block;
        text-decoration: none;
        color: #444;
        padding: 6px 0;
        font-size: 14px;
        transition: 0.3s;
    }

        /* HOVER */
        .menu-column a:hover {
            color: red;
            padding-left: 5px;
        }
.footer {
    background: #111827;
    padding: 50px 40px;
    color: white;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    width: 220px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-col p {
    color: #d1d5db;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

    .footer-col a:hover {
        color: #22c55e;
        padding-left: 5px;
    }

/* MOBILE */

@media(max-width:768px) {

    .footer-row {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
    }
}
.login-btn,
.signup-btn,
.wishlist-btn,
.cart-btn,
.earn-btn {
    background: #071739;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: .3s;
    text-decoration: none;
    display: inline-block;
    margin: 3px;
}

    .login-btn:hover,
    .signup-btn:hover,
    .wishlist-btn:hover,
    .cart-btn:hover,
    .earn-btn:hover {
        background: #ffb400;
        color: black;
        transform: translateY(-3px);
    }
    
    .top-menu{
display:flex;
gap:20px;
justify-content:center;
padding:15px;
background:#000;
}

.top-menu a{
color:#fff;
text-decoration:none;
font-size:18px;
font-weight:bold;
}

.top-menu a:hover{
color:#ff9800;
}
    
    
    
    
    /* PREMIUM TOP MENU DESIGN */

.premium-topbar{
display:flex;
justify-content:center;
align-items:center;
gap:18px;
padding:18px;
background:linear-gradient(135deg,#000,#111,#222);
flex-wrap:wrap;
box-shadow:0 5px 20px rgba(0,0,0,0.5);
position:sticky;
top:0;
z-index:999;
}

.nav-btn{
text-decoration:none;
padding:14px 24px;
border-radius:50px;
font-size:17px;
font-weight:600;
font-family:Arial;
transition:0.4s;
color:#fff;
display:flex;
align-items:center;
gap:8px;
letter-spacing:0.5px;
border:1px solid rgba(255,255,255,0.15);
backdrop-filter:blur(8px);
}

/* INDIVIDUAL COLORS */

.login-btn{
background:linear-gradient(135deg,#00bcd4,#0097a7);
}

.signup-btn{
background:linear-gradient(135deg,#ff9800,#ff5722);
}

.wishlist-btn{
background:linear-gradient(135deg,#e91e63,#c2185b);
}

.cart-btn{
background:linear-gradient(135deg,#4caf50,#2e7d32);
}

.earn-btn{
background:linear-gradient(135deg,#ffd700,#ff9800);
color:#000;
}

/* HOVER EFFECT */

.nav-btn:hover{
transform:translateY(-5px) scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.premium-topbar{
gap:10px;
padding:12px;
}

.nav-btn{
padding:12px 18px;
font-size:14px;
}

}

/* MOBILE SCREEN FIX */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
width:100%;
overflow-x:hidden;
font-family:Arial,sans-serif;
background:#f3f3f3;
}

/* MAIN CONTAINER */

.container,
.signup-container,
.login-container{
width:100%;
max-width:400px;
margin:auto;
}

/* INPUT FIX */

input,
button{
width:100%;
max-width:100%;
}

/* IMAGE FIX */

img{
max-width:100%;
height:auto;
display:block;
}

/* FLEX FIX */

.row,
.premium-topbar{
display:flex;
flex-wrap:wrap;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

body{
padding:10px;
}

.signup-container,
.login-container{
width:100%;
padding:20px;
border-radius:10px;
}

.premium-topbar{
gap:10px;
justify-content:center;
}

.nav-btn{
font-size:14px;
padding:10px 14px;
}

}

/* REMOVE SIDE SCROLL */

body{
overflow-x:hidden;
}






    