        :root {
            --primary-dark: #111;
            --accent-color: #e63946; /* Added a CTA accent color */
            --text-main: #222;
            --bg-light: #f9f9f9;
            --transition: all 0.3s ease;
        }

        * { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif; }
        body { background:#fff; color: var(--text-main); line-height: 1.6; }

        /* TOP HEADER */
 .topbar {
    background: var(--primary-dark);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 5%;
    font-size: 13px;
}
        .topbar a { color:#fff; text-decoration:none; margin-left:15px; transition: var(--transition); }
        .topbar a:hover { color: var(--accent-color); }

.top-links {
    margin-left: auto; /* 👈 pushes login/cart to right */
}

        /* NAVIGATION */
        header {
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
        }
        .logo { font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: 1px; }
        .logo{display:flex;align-items:center;gap:10px;font-weight:700;font-size:24px;}
	.logo img{height:40px;}
        .nav-links { list-style:none; display:flex; gap:20px; }
        .nav-links a { text-decoration:none; color: var(--text-main); font-weight:600; font-size: 15px; }
        .nav-links a:hover { color: var(--accent-color); }

        .search-container { display: flex; align-items: center; background: #eee; border-radius: 20px; padding: 5px 15px; }
        .search-container input { border: none; background: transparent; outline: none; padding: 5px; font-size: 14px; }

        /* HERO */
        .hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    letter-spacing: 1px;
}

.hero-content p {
    opacity: 0.9;
}

/* SLIDES */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}


        .hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 10px; }
        .btn-primary { 
            background: var(--accent-color); color: white; padding: 12px 30px; 
            text-decoration: none; border-radius: 5px; font-weight: 600; display: inline-block; margin-top: 20px;
        }

 .section-container { padding: 60px 5%; }
               .section-title { text-align: center; font-size: 32px; margin-bottom: 40px; position: relative; }
               .section-title::after { content: ''; width: 50px; height: 3px; background: var(--accent-color); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index:5;
}

.main-img {
    z-index: 1;
}

.hover-img {
    z-index: 2;
}

 /* PRODUCT GRID*/ 
               

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}  



/* CARD */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

/* IMAGE CONTAINER */
.product-image {
    position: relative;
    aspect-ratio: 3/ 3.5;   /* luxury fashion ratio */
    overflow: hidden;
    border-radius: 12px;
}

.product-image img {
    width: 100%;
    height: 1000%;
    object-fit: cover;
}

/* Smaller height of product on mobile 
@media (max-width: 768px) {
    .product-image img {
        height: 220px;
    }
}                            */

/* HOVER ZOOM 
.product-card:hover img {
    transform: scale(1.08);
}                             */

/* DARK OVERLAY ON HOVER */
.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: 0.4s ease;
}

.product-card:hover .product-image::after {
    background: rgba(0,0,0,0.08);
}

/* PRODUCT INFO */
.product-info {
    padding: 14px 6px;
    
}

/* TITLE */
.product-info h5:first-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: underline;
}

/* CATEGORY */
.product-info h5:nth-child(2) {
    font-size: 12px;
    color: #888;
}


/* PRICE */
.product-info h5:last-child {
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
}

    .price-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    }

    /* Current Price */
    .current-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    }

    /* Old Price (Strike) */
   .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    }

     /* Discount Badge */
    .discount {
    font-size: 11px;
    font-weight: 600;
    color: #e63946;
    background: rgba(230, 57, 70, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    }

/* Only Few Left*/
    .urgency {
    font-size: 12px;
    color: #e63946;
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 0.3px;
    animation: urgencyPulse 1.5s ease-in-out infinite;
    }

    @keyframes urgencyPulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
     }

.out-stock {
    color: red;
    font-size: 12px;
    font-weight: 500;
}


/* LUXURY HOVER EFFECT */  
    .product-card {
    transition: all 0.3s ease;
    }

    .product-card:hover {
    transform: translateY(-4px);
    }

   .product-image img {
    
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
      	height: 100%;
    	object-fit: cover;
    	transition: 0.25s ease;
        }

   .product-image img {
    will-change: opacity;
    }

   /* HOVER IMAGE*/ 

.main-img {
	opacity: 1;
	z-index: 1;
}

.hover-img {
	opacity: 0;
	z-index: 2;
}
                                                                                  

/* IMAGE SWAP */
.product-card:hover .hover-img {
    opacity: 1;
}

.product-card:hover .main-img {
    opacity: 0;
}




/* CLICKABLE LINK */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
        


/* CART*/
        .add-to-cart, .quick-view {
         width: 100%;
         padding: 10px;
         border: 2px solid var(--primary-dark);
          background: transparent;
         font-weight: 700;
         cursor: pointer;
         transition: var(--transition);
         text-transform: uppercase;
         font-size: 13px;
         margin-top: 10px;
         display: block;
          }

        .add-to-cart:hover, .quick-view:hover {
         background: var(--primary-dark);
         color: #fff;
          }


/* ANNOUNCEMENT BAR */

      .announcement-bar {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #ffffff, #f8f8f8);
    color: #111;
    text-align: center;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

/* TEXT STYLE */
.fade-text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease;
    
    font-family: 'Oswald', 'Montserrat', sans-serif; /* 🔥 energetic font */
    text-transform: uppercase;
    
    color: #111; /* richer than pure #000 */

    transform: translateY(10px);
}

/* ACTIVE TEXT */
.fade-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glow Effect */
.fade-text.active {
    text-shadow: 0 0 8px rgba(230, 57, 70, 0.3);
}

/* Smooth scrolling */
@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.announcement-track span {
    margin-right: 60px;
}

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}
@keyframes pulseText {
    0% { letter-spacing: 1px; }
    50% { letter-spacing: 2px; }
    100% { letter-spacing: 1px; }
}

.fade-text.active {
    animation: pulseText 1.5s ease-in-out;
}


        /* FOOTER */
        footer { background: var(--primary-dark); color: #ccc; padding: 60px 5% 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
        footer h4 { color: #fff; margin-bottom: 20px; }
        footer ul { list-style: none; }
        footer ul li { margin-bottom: 6px; }
        footer a { color: #ccc; text-decoration: none; font-size: 14px; transition: 0.2s; }
        footer a:hover { color: #fff; padding-left: 5px; }

        /* RESPONSIVE */
        @media(max-width: 992px) {
            .nav-links { display: none; } /* In production, add a Hamburger Menu here */
        }

.quick-view-modal{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;

}

.quick-view-modal.active{
display:flex;
}

.quick-view-content{

background:white;
padding:30px;
width:400px;
border-radius:10px;
text-align:center;
position:relative;

}

.quick-view-content img{

width:100%;
height:250px;
object-fit:cover;
margin-bottom:15px;

}

.close-modal{

position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;

}

#quickSize{

padding:8px;
margin:10px 0;
width:100%;

}

#quickAddCart{

background:#111;
color:white;
border:none;
padding:12px;
width:100%;
cursor:pointer;

}

#quickDescription ul {
    text-align: left; /* Aligns list to the left for better readability */
    padding-left: 20px;
    margin: 15px 0;
    list-style-type: disc;
}

#quickDescription li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

/* Image Zoom Effect */
.product-card img { transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.08); }

/* Cart Side Drawer */
.cart-drawer { 
    position: fixed; right: -400px; top: 0; width: 380px; height: 100%; 
    background: #fff; z-index: 2000; padding: 20px;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; 
}
.cart-drawer.active { right: 0; }
.drawer-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.5); z-index: 1999; display: none; 
}
.drawer-overlay.active { display: block; }


/* HIDE SEARCH BUTTON IN MOBILE VIEW */
@media(max-width: 768px) {
    .search-container {
        display: none;
    }
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #25d366;
    color: #fff;
    padding: 10px 14px; /* reduced */
    border-radius: 50px;
    text-decoration: none;
    z-index: 1000;
    font-size: 13px;
    display: flex;
    align-items: center;
}

/* Mobile tighter of whatsapp */
@media(max-width: 768px) {
    .whatsapp-float {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* To stop any data overflow in mobile*/

body {
    overflow-x: hidden;
}    

/* HERO IMAGE DOTS */
    .hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    }

    .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    }

   .dot.active {
    background: #fff;
    transform: scale(1.2);
     }
     /* DOT CONTAINER */
     .hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    }

     /* DOT BASE */
     .dot {
    width: 35px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    }

    /* PROGRESS BAR */
     .dot span {
    display: block;
    height: 100%;
    width: 0%;
    background: #fff;
    }

    /* ACTIVE ANIMATION */
    .dot.active span {
    animation: progressFill 3s linear forwards;
     }

    /* ANIMATION */
    @keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
     }

/*CARD COUNT*/

#cart-count {
    background: #e63946;
    color: white;
    font-size: 12px;
    padding: 2px 9px;
    border-radius: 50%;
    margin-left: 5px;
}

/* 🔥 Bounce animation */
.cart-bounce {
    animation: bounceCart 0.4s ease;
    box-shadow: 0 0 10px rgba(230,57,70,0.6);
}

@keyframes bounceCart {
    0% { transform: scale(1); }
    40% { transform: scale(1.4); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}


.notify-btn{
    margin-top:10px;
    padding:8px 12px;
    border:none;
    background:#111;
    color:#fff;
    font-size:12px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.notify-btn:hover{
    background:#e63946;
}

.notify-count {
    font-size: 12px;
    /* color: #e63946; */
    color: #2563eb;
    font-weight: 500;
    margin-top: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.size-btn {
    position: relative;
    z-index: 10;
}

/*CIRCULAR*/

.brand-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* BASE */
.brand-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 6px; /* 🔥 more space for border */
    background: linear-gradient(135deg, #e63946, #ffb703);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE FIX */
.brand-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover; /* 🔥 IMPORTANT */
    background: #fff;
}

.brand-item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {

    /* Break nav into vertical layout */
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
 }

    /* First row → logo */
    .logo {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-bottom: 6px;
    }

    /* Second row → brand logos BELOW */
    .brand-logos {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 6px;
    }

       /* Fix logo circle size */
    .brand-item {
        width: 34px;
        height: 34px;
        flex: 0 0 auto;
    }
}
