/* @tailwind base;
@tailwind components;
@tailwind utilities; */


        body {
            background-color: #F8F1E7;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* NAVBAR */
        .custom-navbar {
            background-color: #FFF8EE;
            border-bottom: 1px solid #eee;
            padding: 12px 0;
        }

        .navbar-brand img {
            height: 80px;
            width: auto;
        }

        .nav-link {
            color: #7A1E2C !important;
            font-weight: 500;
            margin: 0 8px;
        }

        .nav-link:hover {
            color: #5C1420 !important;
        }

        /* NAV ICONS */
        .nav-icon {
            color: #7A1E2C;
            font-size: 20px;
            position: relative;
            text-decoration: none;
        }

        .nav-icon:hover {
            color: #5C1420;
        }

        /* CART BADGE */
        .cart-count {
            position: absolute;
            top: -6px;
            right: -10px;
            background: #7A1E2C;
            color: #fff;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50px;
        }

        /* BUTTON THEME */
        .btn-primary {
            background-color: #7A1E2C;
            border: none;
        }

        .btn-primary:hover {
            background-color: #5C1420;
        }

        /* PRODUCT CARD */
        .product-card {
            background: #FFF8EE;
            border-radius: 12px;
            transition: 0.3s ease;
        }

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

        /* RESPONSIVE FIXES */
        @media (max-width: 991px) {

            .navbar-nav {
                text-align: center;
                margin-top: 15px;
            }

            .nav-link {
                margin: 10px 0;
            }

            .d-flex.align-items-center.gap-3 {
                justify-content: center;
                margin-top: 10px;
            }
        }
        /* HERO IMAGE HEIGHT CONTROL */
        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #f9f3ea;
        }

        @media (max-width: 768px) {
            .hero-img {
                height: 45vh;
            }

            .carousel-caption h2 {
                font-size: 18px;
            }

            .carousel-caption p {
                font-size: 14px;
            }
        }

        /* CATEGORY CARD */
        .category-card img {
            height: 150px;
            object-fit: cover;
            transition: 0.3s ease;
        }

        .category-card:hover img {
            transform: scale(1.05);
        }

        /* PRODUCT IMAGE */
        .product-img {
            height: 250px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .product-img {
                height: 180px;
            }
        }

        .category-link {
            text-decoration: none;
            color: #7A1E2C;
            font-weight: 600;
            font-size: 18px;
            position: relative;
        }

        .category-link::after {
            content: "";
            width: 0%;
            height: 2px;
            background: #C6A75E;
            position: absolute;
            left: 0;
            bottom: -4px;
            transition: 0.3s ease;
        }

        .category-link:hover::after {
        width: 100%;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .footer-links a:hover {
            color: #C6A75E;
        }

        .footer-icon {
            color: #fff;
            font-size: 18px;
            transition: 0.3s ease;
        }

        .footer-icon:hover {
            color: #C6A75E;
        }

        .category-scroll-wrapper {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 10px;
        }

        .category-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

        .product-card-wrapper {
            min-width: 250px;
            flex: 0 0 25%;
        }

        .product-img {
            height: 220px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .product-card-wrapper {
                min-width: 70%;
                flex: 0 0 auto;
            }
        }

        .product-image-wrapper {
            position: relative;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.4s ease;
        }

        .hover-img {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

        .product-image-wrapper:hover .hover-img {
            opacity: 1;
        }

        .product-image-wrapper:hover .primary-img {
            opacity: 0;
        }

        .product-main-img {
            height: 450px;
            object-fit: cover;
        }

        .thumb-img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s ease;
            border: 2px solid transparent;
        }

        .thumb-img:hover {
            transform: scale(1.05);
            border-color: #7A1E2C;
        }

        .text-maroon {
            color: #7A1E2C;
        }

        @media (max-width: 768px) {

            .product-main-img {
                height: 320px;
            }

            .thumb-img {
                width: 70px;
                height: 70px;
            }
        }

        .bg-white-alt {
            background-color: #ffffff !important;
        }

        .bg-light-alt {
            background-color: #F3E9DC !important; /* slightly darker beige */
        }

        .view-all-link {
            text-decoration: none;
            color: #7A1E2C; /* maroon text */
            font-weight: 600;
            position: relative;
            display: inline-block;
            transition: 0.3s ease;
        }

        .view-all-link::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            left: 0;
            bottom: -4px;
            background-color: #C6A75E; /* gold underline */
            transition: width 0.3s ease;
        }

        .view-all-link:hover::after {
            width: 100%;
        }

        /** Product CSS */
        .product-main-img {
            height: 450px;
            object-fit: cover;
        }

        .thumb-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border-radius: 8px;
            transition: 0.3s ease;
        }

        .thumb-img:hover {
            transform: scale(1.05);
            border: 2px solid #7A1E2C;
        }

        .text-maroon {
            color: #7A1E2C;
        }

        .text-danger{
        color:#7A1E2C !important;
        }

        .btn-dark{
        background:#7A1E2C;
        border:none;
        }

        .btn-dark:hover{
        background:#5a1320;
        }

        .zoom-container {
            overflow: hidden;
            border-radius: 8px;
        }

        .zoom-image {
            width: 100%;
            transition: transform .4s ease;
            cursor: zoom-in;
        }

        .zoom-container:hover .zoom-image {
            transform: scale(1.25);
        }

       .main-image-wrapper {
    width: 100%;
  
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    padding:4px;
  
}

        .main-product-img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: auto;
    display: block;
}


        .thumbnail-slider{
            display:flex;
            gap:10px;
            overflow-x:auto;
            padding-bottom:10px;
        }

        .thumbnail-slider::-webkit-scrollbar{
            display:none;
        }

        .thumb-img{
            width:80px;
            height:80px;
            object-fit:cover;
            border-radius:6px;
            cursor:pointer;
            border:2px solid transparent;
            transition:0.3s;
        }

        .thumb-img:hover{
            border-color:#7A1E2C;
        }
    

        .mobile-cart-bar{
            position:fixed;
            bottom:0;
            left:0;
            width:100%;
            background:white;
            border-top:1px solid #eee;
            padding:10px 15px;
            display:flex;
            justify-content:space-between;
            align-items:center;
            z-index:999;
        }

        .mobile-price{
            display:flex;
            flex-direction:column;
        }

        .sell-price{
            font-weight:700;
            color:#7A1E2C;
        }

        .mrp{
            text-decoration:line-through;
            font-size:13px;
            color:#888;
        }

        .add-cart-btn{
            background:#7A1E2C;
            color:white;
            padding:10px 18px;
        }

        @media (max-width:768px){
        body{
            padding-bottom:80px;
        }
        }

        /**Category CSS */
        .category-product-img{
            height:250px;
            object-fit:cover;
        }

        .product-card{
            transition:0.3s ease;
        }

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

        .text-maroon{
            color:#7A1E2C;
        }

        .toast-box{
            /* position:fixed; */
            bottom:20px;
            right:20px;
            background:#7A1E2C;
            color:#fff;
            padding:10px 20px;
            border-radius:5px;
            opacity:0;
            transition:0.3s;
            z-index:9999;
        }

        .toast-box.show{
            opacity:1;
        }
        .bg-auth {
    background: #F8F1E7;
}

.auth-left {
    background: #7A1E2C;
    color: #fff;
}

.brand-title {
    font-size: 40px;
    font-weight: bold;
}

.brand-subtitle {
    font-size: 16px;
    opacity: 0.8;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn-auth {
    background: #7A1E2C;
    color: #fff;
    border: none;
}

.btn-auth:hover {
    background: #5C1420;
}

.auth-link {
    color: #7A1E2C;
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    color: #C6A75E;
}
.toggle-password{
    position:absolute;
    right:10px;
    top:38px;
    cursor:pointer;
}

.announcement-bar {
    background: #7d1b2b;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    height: 42px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.announcement-track span {
    display: flex;
    align-items: center;
    padding-right: 80px;
}

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ==============================
   PRODUCT DETAILS PAGE
================================*/





.main-product-img:hover{
    transform:scale(1.08);
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-img.active,
.thumb-img:hover {
    border-color: #7b1e2b;
}



@media(min-width:768px){

.thumb-img{
    width:80px;
    height:80px;
}

}

.thumb-img:hover,
.thumb-img.active{
    border-color:#7b1e2b;
    transform:scale(1.05);
}

.price-box{
    margin-top:20px;
}

.selling-price{
    color:#7b1e2b;
    font-size:42px;
    font-weight:700;
}

.mrp{
    font-size:22px;
    text-decoration:line-through;
    color:#888;
}

.discount{
    background:#198754;
    color:#fff;
    padding:5px 12px;
    border-radius:30px;
    font-size:14px;
    margin-left:12px;
}

.save-price{
    color:#198754;
    font-weight:600;
    display:block;
    margin-top:10px;
}

.product-highlights{
    background:#fff;
    border-radius:15px;
    padding:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.product-highlights p{
    margin-bottom:12px;
    font-size:16px;
}

.qty-box{
    display:inline-flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.qty-box button{
    width:42px;
    height:42px;
    border:none;
    background:#f8f8f8;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.qty-box button:hover{
    background:#7b1e2b;
    color:#fff;
}

.qty-box input{
    width:50px;
    height:42px;
    border:none;
    text-align:center;
    font-size:18px;
    font-weight:600;
    background:#fff;
}

.qty-box input:focus{
    outline:none;
}

.btn-maroon{
    background:#7b1e2b;
    color:#fff;
    border-radius:50px;
    padding:14px;
    font-size:18px;
}

.btn-maroon:hover{
    background:#641726;
    color:#fff;
}

.btn-outline-dark{
    border-radius:50px;
}

.trust-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.trust-box div{
    background:#fff;
    padding:15px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}
.trust-icons{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:8px;

margin-top:20px;

}

.trust-icons div{

padding:10px 6px;

border:1px solid #eee;

border-radius:10px;

text-align:center;

font-size:12px;

background:#fff;

}

.trust-icons i{

display:block;

font-size:18px;

color:#7b1e2b;

margin-bottom:5px;

}

.nav-tabs .nav-link{
    color:#7b1e2b;
    font-weight:600;
}

.nav-tabs .nav-link.active{
    background:#7b1e2b;
    color:#fff;
    border:none;
}

.tab-content{
    border:1px solid #eee;
    border-top:none;
    border-radius:0 0 15px 15px;
    background:#fff;
}

.product-card{
    transition:.3s;
    border-radius:18px;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.category-product-img{
    height:260px;
    object-fit:cover;
}

.related-products h3{
    color:#7b1e2b;
}

.breadcrumb a{
    color:#7b1e2b;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:#555;
}

@media(max-width:768px){

.qty-box button{
    width:38px;
    height:38px;
    font-size:18px;
}

.qty-box input{
    width:45px;
    height:38px;
    font-size:16px;
}

.container{

padding-left:15px;

padding-right:15px;

}

h2{

font-size:22px;

}

.price-box{

margin-top:10px;

}

.product-highlights{

padding:12px;

}

.product-highlights p{

margin-bottom:8px;

font-size:14px;

}

}


.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #198754;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    z-index: 99999;
    display: flex;
    align-items: center;
    min-width: 350px;
    max-width: 450px;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.flash-hide {
    animation: slideOut .4s ease forwards;
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}
