/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    padding-top:90px; /* Prevent content hiding under fixed navbar */
}


/* NAVBAR */

.navbar{
    background:#3b6eea;
    padding:12px 40px;

    position:fixed;   /* Fixed navbar */
    top:0;
    left:0;
    width:100%;
    z-index:1000;     /* Always above content */
}

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
}


/* LOGO */

.navbar-brand img{
    height:60px;
    border-radius:50%;
}


/* NAV LINKS */

.navbar-nav{
    gap:25px;
}

.nav-link{
    color:white !important;
    font-size:16px;
    font-weight:500;
}

.nav-link.active{
    color:#ffd54f !important;
}


/* SEARCH */

.search-box{
    width:240px;
    border-radius:25px;
    padding:8px 15px;
    border:none;
    background:#e6e6e6;
}


/* ICONS */

.icon-btn{
    color:white;
    margin-left:15px;
    font-size:18px;
}


/* HERO SECTION */

.product-hero{
    height:80vh;
    background:url('/assets/abstract-blur-shopping-mall.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}


/* DARK OVERLAY */

.product-hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}


/* HERO CONTENT */

.product-hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.product-hero h1{
    font-size:54px;
    font-weight:700;
    margin-bottom:15px;
}

.product-hero p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:30px;
    color:#f1f1f1;
}


/* BUTTONS */

.product-hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.product-hero-buttons .btn{
    padding:12px 28px;
    border-radius:30px;
    font-size:16px;
}


/* SHOP BUTTON */

.btn-yellow{
    background:#ffc107;
    border:none;
    color:black;
    font-weight:600;
}


/* DEALS BUTTON */

.btn-outline{
    border:2px solid white;
    color:white;
    background:transparent;
}

.btn-outline:hover{
    background:white;
    color:black;
}


/* CATEGORY SECTION */

.product-container{
    max-width:1200px;
    margin:auto;
}

.section-title h2{
    font-weight:700;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}


/* CATEGORY CARD */

.category-card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
    transition:0.3s;
}

.category-card:hover{
    transform:translateY(-5px);
}

.icon-circle{
    width:60px;
    height:60px;
    background:#f1f3f7;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:10px;
}

.icon-circle img{
    width:28px;
}


/* PRODUCT CARD */

.product-card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    position:relative;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-img{
    font-size:50px;
    text-align:center;
    margin-bottom:10px;
}

.badge-new{
    position:absolute;
    top:10px;
    left:10px;
    background:#00c853;
    color:white;
    padding:4px 8px;
    font-size:12px;
    border-radius:5px;
}

.category{
    font-size:12px;
    color:#888;
    margin-bottom:5px;
}

.product-title{
    font-weight:600;
}

.product-desc{
    font-size:14px;
    color:#666;
}

.stars{
    color:#ffc107;
    margin:5px 0;
}

.price{
    font-size:18px;
    font-weight:700;
}

.old-price{
    text-decoration:line-through;
    color:#888;
    margin-left:8px;
}

.save{
    color:#00c853;
    margin-left:8px;
    font-size:13px;
}

.add-cart{
    width:100%;
    margin-top:10px;
    border:none;
    background:#3b6eea;
    color:white;
    padding:10px;
    border-radius:6px;
}