/* Project: Oxims Exports - Modern Layout
   Container: 1440px | Font: Poppins 16px 
   Colors: Primary #3e4095, Secondary #ed3237
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #3e4095;
    --secondary-color: #ed3237;
    --text-color: #201c32;
    --light-bg: #fcfaf7;
    --transition: 0.3s ease-in-out;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px; /* As requested */
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.custom-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Universal Button Radius Fix --- */
    .btn, .tab-btn, .btn-add-cart, .btn-view-all {
        border-radius: 50px !important; 
        font-weight: 600;
        letter-spacing: 1px;
        transition: var(--transition);
    }

/* 
   ===========================================================================================================

   Header Area Code Begins */

        .main-header.is-sticky {
            position: fixed !important;
            top: 0 !important;
            background: #ffffff !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: slideDown 0.3s ease-out;
        }

        .main-header.is-sticky .nav-link, 
        .main-header.is-sticky .header-icon {
            color: #333333 !important;
            text-shadow: none !important;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .main-header {
            position: absolute; 
            top: 40px; 
            left: 0;
            width: 100%;
            z-index: 999;
            background: transparent !important; 
            border-bottom: 1px solid rgb(255 255 255 / 0%) !important;
        }
 
        .main-header .nav-link, 
        .main-header .header-icon {
            color: #ffffff !important;
        }
        .top-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .header-aligned-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between; 
        }

        .header-logo-left {
            flex: 0 0 auto;
        }

        .header-menu-nav {
            flex: 1;
        }

        .header-icons-right {
            flex: 0 0 auto;
        }

        .nav-link {
            font-size: 16px !important;
            font-weight: 500 !important;
            color: #333 !important;
            padding: 0 10px !important; 
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--secondary-color) !important;
        }

        .header-icon {
            color: #333;
            font-size: 18px;
            text-decoration: none;
            transition: var(--transition);
        }

        .header-icon:hover {
            color: var(--primary-color);
        }

        .header-icons-right a {
            position: relative;
            margin-left: 17px;
            color: #333;
            font-size: 20px;
            text-decoration: none;
            display: inline-block;
        }

        .cart-count {
            position: absolute !important;
            top: -5px !important;
            right: -10px !important;
            background-color: var(--secondary-color) !important;
            color: white !important;
            font-size: 10px !important;
            padding: 2px 6px !important;
            border-radius: 50% !important;
            transform: none !important;
        }

/* Header Area Code Ends 
   ===========================================================================================================
*/

/* Body Section Code Begins */

        /* ================== bANNER aREA ====================================  */
            .hero-slide-item .custom-container {
               padding-top: 100px; 
            }
            .bred{
                border-radius:50px;
            }

            .hero-slide-item {
                height: 75vh; 
                background-size: cover;
                background-position: center top;
                position: relative;
                display: flex;
                align-items: center;
            }

            .hero-slide-item::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
                z-index: 1;
            }

            .hero-slide-item .custom-container {
                position: relative;
                z-index: 5;
            }

            .ls-2 {
                letter-spacing: 2.5px;
            }

            .main-hero-slider h1 {
                font-size: 60px;
                text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            }

            .main-hero-slider .owl-dots {
                position: absolute;
                bottom: 25px;
                width: 100%;
                text-align: center;
            }

            .main-hero-slider .owl-dot span {
                background: rgba(255,255,255,0.4) !important;
                width: 10px !important;
                height: 10px !important;
                transition: 0.3s;
            }

            .main-hero-slider .owl-dot.active span {
                background: #fff !important;
                width: 25px !important;
            }

/* ================== FEATURES aREA CATEGORY WISE  ====================================  */ 
                /* --- Tagline & Tabs Styling --- */
.tagline-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
}

.ls-2 { letter-spacing: 2px; }

.tab-btn {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: #fff;
    border-color: #000;
    color: #000;
}

/* --- Modern Product Card --- */
.product-card-modern {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    padding: 0px 0px 10px 0px;
}
.product-card-modern:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.p-img-box {
    background: #f8f8f8;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 20px; 
}
.product-card-modern:hover .p-img-box img {
    transform: scale(1.1);
}

.p-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; 
    transition: 0.4s;
}

.product-name {
    font-size: 14px;
    color: #000;
}

.product-card-modern:hover img {
    transform: scale(1.05);
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    z-index: 2;
}

.p-info-box h6 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-text {
    font-size: 16px;
    color: #000;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-left: 5px;
}
.btn-add-cart {
    background-color: var(--secondary-color) !important; 
    color: #fff !important;
    border-radius: 50px !important; 
    padding: 10px 0;
    font-size: 12px;
    font-weight: 700;
    border: none;
}

.btn-add-cart:hover {
    background-color: #333 !important; 
}
.btn-view-all {
    border: 2px solid var(--text-color);
    padding: 12px 40px;
    color: var(--text-color);
    font-size: 13px;
}

.btn-view-all:hover {
    background: var(--text-color);
    color: #fff;
}

.service-features .feature-icon i {
    color:var(--secondary-color) !important;
    transition: transform 0.3s ease;
}



.cta-blue-bg {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.signature-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://oximsexports.com/wp-content/uploads/2024/11/product-23.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
}
.signature-btn {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
/* Body Section Code Ends 
    ===========================================================================================================
*/

/* Footer Area Code Begins */

    /* Subscribe Area Begins */
        .subscribe-section h3 {
            font-size: 24px;
        }

        .newsletter-group {
            background: #fff;
            border-radius: 50px;
            padding: 5px;
            overflow: hidden;
        }

        .newsletter-group .form-control {
            border: none;
            padding-left: 25px;
            font-size: 15px;
            box-shadow: none;
            height: 50px;
        }

        .newsletter-group .form-control:focus {
            background: transparent;
        }

        .btn-subscribe {
            background-color: var(--secondary-color) !important; /* #ed3237 */
            color: #fff !important;
            border-radius: 50px !important;
            padding: 0 40px !important;
            font-weight: 600;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .btn-subscribe:hover {
            background-color: #c4262b !important;
            transform: scale(1.02);
        }

    /* Responsive Fix for Mobile */
        @media (max-width: 767px) {
            .newsletter-group {
                background: transparent;
                flex-direction: column;
            }
            .newsletter-group .form-control {
                border-radius: 50px !important;
                margin-bottom: 10px;
                text-align: center;
            }
            .btn-subscribe {
                width: 100%;
                height: 50px;
            }
        }

    /* Subscribe Area Ends 
   ===========================================================================================================
    */

        .main-footer {
            background-color: #0b0b0b;
            padding-top: 60px;
        }

        .footer-logo {
            max-height: 80px;
        }

        .footer-menu {
            padding-left: 0;
            list-style: none;
        }

        .footer-menu li {
            margin-bottom: 12px;
        }

        .footer-menu a {
            text-decoration: none;
            color: #f1f1f1 !important;
            font-size: 14px;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-menu a i {
            font-size: 10px;
            margin-right: 8px;
            color: var(--secondary-color); 
        }

        .footer-menu a:hover {
            color: var(--secondary-color) !important;
            transform: translateX(5px);
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            border: 1px solid rgba(255,255,255,0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            margin-right: 10px;
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
        }

        .social-icons a:hover {
            background-color: var(--primary-color); 
            border-color: var(--primary-color);
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 25px 0;
            margin-top: 40px;
        }

        .footer-bottom a {
            color: #3ab54a; 
            text-decoration: none;
            font-weight: 600;
        }

/* Footer Area Code Ends */

/* About & Blog Custom CSS */
.about-img-box img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 25px 25px 10px 25px !important;
}
/* Blog Card Radius Fix */
.blog-card-modern {
    border: 1px solid #eee;
    background: #fff;
    border-radius: 20px !important;
    overflow: hidden;
    padding-bottom: 20px;
    position: relative; /* Badge ke liye base */
}

.blog-img-box {
    width: 100%;
    overflow: hidden;
}

.blog-img-box img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* Read More Button as Pill Shape */
.read-more-btn {
    display: inline-block;
    background: #f8f8f8;
    color: var(--text-color);
    padding: 8px 25px;
    border-radius: 50px !important; /* Exact 50px radius */
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #ddd;
    margin-top: 15px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: var(--secondary-color);
    color: #fff !important;
    border-color: var(--secondary-color);
}
.blog-date {
    position: absolute;
    top: 25px; /* Thoda niche kiya taaki radius ke andar aa jaye */
    left: 25px; /* Thoda right kiya */
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 50px; /* Badge ko bhi pill shape de diya */
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.ls-2 { letter-spacing: 2px; }

/* --- Responsiveness & Mobile Fixes --- */

@media (max-width: 1200px) {
    .custom-container { padding: 0 30px; }
    .main-hero-slider h1 { font-size: 45px; }
}

@media (max-width: 991px) {
    .header-menu-nav { display: none; }
    .flex-column-reverse { flex-direction: column-reverse !important; }
    .hero-slide-item { height: 60vh; }
    .main-hero-slider h1 { font-size: 32px; }
}

@media (max-width: 767px) {
    .featured-collections .col-md-6 {
        width: 50%; 
    }
    .p-img-box { height: 180px; padding: 15px; }
    .tagline-text { font-size: 16px; }
    .btn { padding: 8px 20px !important; font-size: 14px; }
}

/* --- Pagination Custom Styling --- */
.custom-pagination {
    gap: 10px;
}

.custom-pagination .page-item .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important; /* Perfect round shape */
    border: 1px solid #dee2e6;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--secondary-color) !important; /* #ed3237 */
    border-color: var(--secondary-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(237, 50, 55, 0.2);
}

.custom-pagination .page-item .page-link:hover {
    background-color: #f8f8f8;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f1f1;
}

/* Arrow icons size fix */
.custom-pagination .page-link i {
    font-size: 12px;
}

/* --- Responsive Blog Banner --- */
.blog-banner-header {
    height: 500px; 
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    transition: all 0.5s ease;
}

.banner-title {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* --- Mobile & Tablet Responsiveness --- */

@media (max-width: 991px) {
    .blog-banner-header {
        height: 350px; /* Tablet Height */
    }
    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .blog-banner-header {
        height: 280px; 
        background-attachment: scroll; 
    }
    .banner-title {
        font-size: 2.2rem;
    }
    .ls-2 {
        letter-spacing: 1.5px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "|";
    color: rgba(255,255,255,0.3);
}

/* Bulk international  */
.zigzag-features h2 {
    color: var(--text-color);
}

.zigzag-img-wrapper {
    overflow: hidden;
    position: relative;
}

.zigzag-img-wrapper img {
    height: 450px; /* Desktop image height */
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.zigzag-img-wrapper:hover img {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--secondary-color) !important; /* #ed3237 Red */
    border-color: var(--secondary-color) !important;
    border-radius: 50px !important; /* 50px radius */
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #c4262b !important;
}

/* Responsiveness for this page */
@media (max-width: 991px) {
    .zigzag-img-wrapper img { height: 300px; }
}

@media (max-width: 767px) {
    .page-banner { height: 280px; }
    .zigzag-img-wrapper img { height: 250px; }
}
.gallery-img {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Lightbox ka overlay background thoda dark karne ke liye */
.lum-lightbox {
    z-index: 9999;
    background: rgba(0,0,0,0.9);
}
/* Close Button (X) Styling */
.lum-close-button {
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    cursor: pointer !important;
    z-index: 10001 !important;
}

/* Creating the X shape using CSS */
.lum-close-button::before, 
.lum-close-button::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 30px;
    background: #ffffff; /* White Color X */
    top: 24px;
    left: 10px;
}

.lum-close-button::before {
    transform: rotate(45deg);
}

.lum-close-button::after {
    transform: rotate(-45deg);
}

.lum-close-button:hover::before,
.lum-close-button:hover::after {
    background: var(--secondary-color); 
}

/* Hide default text if any */
.lum-close-button {
    font-size: 0 !important;
}


/* Contact us Page  */
/* --- Contact Page Styles --- */
.contact-hero {
    background-color: var(--light-bg) !important;
}

.contact-info-card {
    border: 1px solid #eee;
}

.map-container {
    border: 1px solid #ddd;
}

/* Floating Label Overrides for 50px Radius */
.custom-form-floating .form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    border: 1px solid #e0e0e0;
    font-size: 15px;
}

.custom-form-floating label {
    padding-left: 1.5rem !important;
}

/* Rounded-5 for Textarea */
.custom-form-floating textarea.form-control {
    border-radius: 30px !important;
}

.custom-form-floating .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(237, 50, 55, 0.1);
}

.contact-form-wrapper {
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* --- Contact Page Responsiveness --- */

@media (max-width: 991px) {
    .contact-hero {
        padding: 40px 0 !important;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    /* Mobile par Form upar aur Info niche karne ke liye row-reverse bhi kar sakte ho */
    .contact-section .row {
        flex-direction: column-reverse; /* Form pehle dikhega, Info niche */
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 25px 20px !important;
        border-radius: 30px !important; /* Mobile par thoda kam round */
    }
    
    .contact-info-card {
        padding: 25px 20px !important;
        border-radius: 30px !important;
        margin-top: 30px;
    }

    .map-container iframe {
        height: 200px; /* Choti screen par map chota */
    }

    .custom-form-floating label {
        font-size: 14px;
        padding-left: 1.2rem !important;
    }
    
    /* Button full width on mobile */
    .contact-section .btn-primary {
        width: 100%;
    }
}

/* About us Page  */
/* About Us Styling */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    width: 140px;
    z-index: 10;
}

.pillar-card {
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color) !important;
}

.pillar-card:hover h6, 
.pillar-card:hover p, 
.pillar-card:hover i {
    color: #fff !important;
}

.about-hero-parallax h1 {
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Legal Documents Page  */
/* --- Legal Gallery Styles --- */
.document-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.doc-img-box {
    position: relative;
    height: 350px; /* Document vertical height */
    overflow: hidden;
    background: #f8f8f8;
}

.doc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.doc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 64, 149, 0.7); /* Primary color overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.document-card:hover .doc-overlay {
    opacity: 1;
}

.document-card h6 {
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Shop page  */
.p-img-box {
    position: relative;
    overflow: hidden;
}
.shop-toolbar select:focus {
    box-shadow: none;
    border: 1px solid var(--secondary-color);
}
.filter-widget h5 {
    font-size: 16px;
    letter-spacing: 1px;
}

.custom-pagination .page-link {
    border: 1px solid #eee !important;
    margin: 0 5px;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.filter-list a:hover, .filter-list a.active {
    color: var(--secondary-color);
    padding-left: 5px;
}

.filter-list span {
    color: #ccc;
    font-size: 12px;
}

/* Custom Range Slider */
.custom-range::-webkit-slider-runnable-track {
    background: #eee;
    height: 4px;
}

.custom-range::-webkit-slider-thumb {
    background: var(--secondary-color);
    margin-top: -6px;
}

/* Color Circles */
.color-box {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.color-box:hover {
    border-color: #ddd;
    transform: scale(1.1);
}

/* Grid Adjustment */
.product-card-modern .p-img-box {
    height: 280px; /* Thoda bada image box for 3-column grid */
}
.p-hover-actions {
    position: absolute;
    right: -50px; /* Hide initially */
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s ease;
    z-index: 5;
}
.product-card-modern:hover .p-hover-actions {
    right: 15px; /* Show on hover */
}

.action-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    color: var(--text-color);
}

.action-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* cart Page  */
/* --- Cart Page Enhancements --- */
.cart-table th {
    letter-spacing: 1.5px;
    font-size: 11px;
}

.cart-item {
    transition: background 0.3s;
}

.qty-selector {
    background: #fff;
    width: fit-content;
}

.qty-btn {
    font-size: 18px;
    line-height: 1;
    color: var(--text-color);
}

.qty-btn:hover {
    color: var(--secondary-color);
}

.qty-input:focus {
    outline: none;
}

.cart-summary-card {
    border: 1px solid #eee;
}

/* Button overrides for Cart */
.cart-main-area .btn-primary {
    background-color: var(--secondary-color) !important;
    border: none;
    letter-spacing: 1px;
}

/* Mobile Responsiveness for Table */
@media (max-width: 767px) {
    .cart-table thead { display: none; }
    .cart-table tr { display: block; margin-bottom: 20px; border: 1px solid #eee; border-radius: 20px; padding: 15px; }
    .cart-table td { display: flex; justify-content: space-between; align-items: center; border: 0; padding: 8px 0; }
    .cart-table td::before { content: attr(scope); font-weight: bold; }
    .cart-product-img { width: 60px; }
    .cart-summary-card { margin-top: 30px; }
}

/* Search Page  */
.search-header h1 {
    color: var(--primary-color); /* Blue color */
}

.product-card-modern {
    transition: all 0.3s ease;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.product-card-modern .btn-primary {
    background-color: var(--secondary-color) !important; /* Red Color */
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
}

.view-options .btn {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* --- Multi-Level Dropdown Styling --- */

/* Dropdown Menu basic look */
.custom-dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    transition: all 0.3s ease;
    padding: 15px 0;
    min-width: 200px;
}

/* Hover par Dropdown dikhana */
.custom-dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}

/* Submenu (Level 2) ko side mein bhejna */
.dropdown-menu .dropend {
    position: relative;
}

.dropdown-menu .submenu {
    top: 0;
    left: 100%; /* Side mein khulega */
    margin-top: -15px !important; /* Alignment fix */
    margin-left: 5px;
}

/* Submenu Hover Logic */
.dropdown-menu .dropend:hover > .submenu {
    visibility: visible;
    opacity: 1;
}

/* Dropdown Item Styling */
.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 25px;
    color: #333;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color) !important; /* Red hover color */
    padding-left: 30px; /* Halka sa move effect */
}

.dropdown-item i {
    font-size: 10px;
    color: #ccc;
}