/* @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 {
            height: 75vh;
            object-fit: cover;
        }

        @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-product-img{
            width:100%;
            height:500px;
            object-fit:cover;
        }

        .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;
}

