/* ============================================================
   Nathu Sweets - All Custom Styles (Merged)
   Sections:
   1. CSS Variables & Global Overrides  (from custom-header.css)
   2. Header & Navigation               (from custom-header.css)
   3. Banner / Hero Slider              (from custom_banner.css)
   4. Product Cards                     (from custom_products.css)
   5. About Section                     (from custom_about.css)
   ============================================================ */

/* ============================================================
   1. CSS Variables & Global Overrides
   ============================================================ */
:root {
    --primary-color: #ffc107;
    /* Gold */
    --secondary-color: #c3231b;
    /* Deep Red/Saffron */
    --text-color: #ffc107;
    --white: #ffffff;
    --bg-color: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Helper Classes for theme colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

a {
    color: var(--text-color);
}

a:hover {
    color: var(--primary-color);
}

/* Global Custom Button Styling */
.btn-custom {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 10px 25px !important;
    font-weight: 700 !important;
    font-family: "Figtree", sans-serif !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-outline-custom {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 10px 25px !important;
    font-weight: 700 !important;
    font-family: "Figtree", sans-serif !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: none !important;
}

.theme-btn4,
.theme-btn1,
.theme-btn2,
.theme-btn3 {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
    transition: all 0.3s ease !important;
}

.theme-btn4:hover,
.theme-btn1:hover,
.theme-btn2:hover,
.theme-btn3:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: none !important;
}

/* Titles and Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.title,
.heading3 h4 a {
    color: var(--secondary-color) !important;
    font-family: "Playfair Display", serif;
}

/* Global Paragraph Standardization */
p {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #555;
    margin-bottom: 15px;
}

.heading3 p,
.heading2 p,
.story-text,
.value-card p {
    color: #555 !important;
}

.span {
    color: var(--primary-color) !important;
}

/* Badge for Cart */
.badge.bg-danger {
    background-color: var(--secondary-color) !important;
}

/* Footer */
.footer3 {
    background-color: #2c2c2c !important;
}

/* ============================================================
   2. Header & Navigation
   ============================================================ */
/* Sticky Header Implementation */
header#header {
    width: 100% !important;
    transition: all 0.3s ease-in-out !important;
    position: relative !important;
    z-index: 1000 !important;
}

header#header.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    animation: headerSlideDown 0.4s ease-out !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1) !important;
}

header#header.sticky .navbar {
    border-bottom: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color) !important;
    font-family: "Playfair Display", serif;
}

.navbar-brand span {
    color: var(--primary-color);
}

.navbar {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* Mobile Header & Sidebar Optimization */
@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 40px !important;
        width: auto !important;
    }

    .navbar-toggler {
        border: none !important;
        padding: 0 !important;
        color: var(--secondary-color) !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    /* Persistent Top-Bar Icons */
    .wishlist-nav-icon {
        font-size: 1.25rem !important;
        color: var(--secondary-color) !important;
    }

    .cart-nav-btn {
        padding: 6px 10px !important;
        min-width: unset !important;
        border-radius: 8px !important;
    }

    .cart-count-badge {
        top: -2px !important;
        right: -2px !important;
        font-size: 0.6rem !important;
        min-width: 16px !important;
        height: 16px !important;
        line-height: 16px !important;
    }

    .wishlist-count-badge {
        background: var(--primary-color) !important;
        color: var(--secondary-color) !important;
        border: 1px solid #fff;
    }

    /* Sidebar Typography & Spacing */
    .premium-sidebar .nav-link {
        font-family: "Figtree", sans-serif !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        padding: 12px 20px !important;
        border-bottom: 1px solid #f2f2f2;
        display: flex !important;
        align-items: center;
        transition: all 0.3s ease;
    }

    .premium-sidebar .nav-link i {
        width: 25px;
        margin-right: 12px;
        color: var(--secondary-color);
        font-size: 1.1rem;
    }

    .premium-sidebar .nav-link:hover,
    .premium-sidebar .nav-link[aria-expanded="true"] {
        background-color: rgba(139, 0, 0, 0.03) !important;
        color: var(--secondary-color) !important;
    }

    .premium-sidebar .collapse .nav-link {
        font-size: 0.9rem !important;
        padding: 8px 15px 8px 45px !important;
        color: #555 !important;
        border-bottom: none;
    }

    /* Ensure dropdowns look good on mobile */
    .dropdown-menu {
        border: none !important;
        background-color: #f8f9fa !important;
        padding-left: 15px !important;
    }
}

/* Offcanvas Sidebar Premium Styling */
.premium-sidebar {
    width: 290px !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
    border-right: 3px solid var(--primary-color) !important;
}

.premium-sidebar .offcanvas-header {
    background: var(--white) !important;
    color: var(--secondary-color) !important;
    padding: 1.25rem !important;
    border-bottom: 3px solid var(--primary-color) !important;
}

.premium-sidebar .offcanvas-header .btn-close {
    filter: none;
    /* Revert to standard dark close button */
    opacity: 0.8;
}

.premium-sidebar .offcanvas-title img {
    max-height: 40px;
}

.fs-xs {
    font-size: 0.75rem !important;
}

.navbar-nav .nav-link {
    font-family: "Figtree", sans-serif !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    padding: 6px 10px !important;
    position: relative !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
}

/* Hide default Bootstrap caret */
.dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    /* Slight offset for better visibility */
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 5px 5px;
    border: none;
    box-shadow: var(--shadow);
}

.dropdown-item:hover {
    background-color: var(--bg-color);
    color: var(--secondary-color);
}

.navbar-brand img {
    max-height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Mobile Wishlist (Compact Flipkart-Style) UI */
@media (max-width: 575px) {
    .wishlist-page .row {
        margin-right: -4px !important;
        margin-left: -4px !important;
    }

    .wishlist-page [class*="col-"] {
        padding-right: 4px !important;
        padding-left: 4px !important;
        margin-bottom: 8px !important;
    }

    .wishlist-page .service3-box {
        padding: 0 !important;
        border-radius: 4px !important;
        border: 1px solid #eee !important;
        box-shadow: none !important;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
    }

    .wishlist-page .product-img-box {
        position: relative;
        border-radius: 0 !important;
        aspect-ratio: 1/1;
    }

    .wishlist-page .product-img-box img {
        border-radius: 0 !important;
        object-fit: cover;
        height: 100%;
    }

    .wishlist-page .card-content {
        padding: 8px !important;
        text-align: left !important;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .wishlist-page .product-title {
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
        height: 2.4em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        color: var(--secondary-color) !important;
    }

    .wishlist-page .product-price {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #444 !important;
        margin-bottom: 10px !important;
    }

    /* Compact Button Styling */
    .wishlist-page .card-action-wrap {
        margin-top: auto;
    }

    .wishlist-page .learn {
        background: var(--secondary-color) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 4px !important;
        font-size: 0.85rem !important;
        padding: 10px 4px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        box-shadow: none !important;
        display: block !important;
        text-align: center;
    }
}

.footer-logo img {
    max-height: 100px;
    width: auto;
    margin-bottom: 20px;
}

/* Checkout & Form Refinements */
.form-label {
    color: #333 !important;
    font-weight: 600;
    margin-bottom: 0px !important;
    font-family: "Lato", sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.1) !important;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* ============================================================
   3. Banner / Hero Slider
   ============================================================ */
.hero3-slider .hero3 {
    height: 600px !important;
    min-height: 600px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.hero3-slider .hero3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero3-slider .hero3 .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero3-slider .hero3 .row {
    width: 100%;
}

.hero3-slider .hero3 .main-heading h1 {
    color: #fff !important;
    margin-bottom: 20px;
}

.hero3-slider .hero3 .main-heading p {
    color: #fff !important;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero3-slider .hero3 .main-heading .span {
    color: #ffc107 !important;
}

.hero3-slider .hero3 .buttons {
    margin-top: 20px !important;
    padding-bottom: 10px;
}

.hero3-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.hero3-slider .owl-nav button.owl-prev,
.hero3-slider .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.hero3-slider .owl-nav button.owl-prev:hover,
.hero3-slider .owl-nav button.owl-next:hover {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .hero3-slider .hero3 {
        height: 500px !important;
        min-height: 500px !important;
    }
}

@media (max-width: 767px) {
    .hero3-slider .hero3 {
        height: 450px !important;
        min-height: 450px !important;
    }

    .hero3 .main-heading h1 {
        font-size: 28px !important;
        line-height: 38px !important;
    }

    .hero3-slider .hero3 .space50 {
        height: 20px !important;
        display: none !important;
    }

    .hero3-slider .owl-nav {
        padding: 0 10px;
        display: none !important;
    }
}

/* ============================================================
   3b. Tradition Section (Purity in Every Bite)
   ============================================================ */

/* Section Background */
.work3.sp {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 60%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.work3.sp::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 193, 7, 0.07) 0%,
        transparent 70%
    );
    top: -100px;
    right: -100px;
    pointer-events: none;
}

/* Image Collage Wrapper */
.tradition-image-collage {
    position: relative;
    height: 280px;
    padding-left: 20px;
}

.tradition-img-main {
    position: absolute;
    top: 0;
    left: 20px;
    width: 65%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.15);
    z-index: 2;
}

.tradition-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tradition-img-main:hover img {
    transform: scale(1.04);
}

.tradition-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 42%;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 5px solid #fff;
    z-index: 3;
}

.tradition-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tradition-img-secondary:hover img {
    transform: scale(1.04);
}

/* 75+ Years Badge */
.tradition-badge {
    position: absolute;
    top: 30px;
    right: 10px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #c3231b, #c0392b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    border: 3px solid rgba(255, 193, 7, 0.5);
}

.tradition-badge-years {
    font-size: 28px;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
    font-family: "Prata", "Playfair Display", serif;
}

.tradition-badge-text {
    font-size: 11px;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    margin-top: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Work3 Feature Boxes */
.work3-box {
    border: 1px solid #f0e0e0 !important;
    border-radius: 12px !important;
    padding: 24px !important;
    background: #fff !important;
    transition: all 0.3s ease;
    height: 100%;
}

.work3-box:hover {
    border-color: #c3231b !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.1) !important;
    transform: translateY(-4px);
}

.work3-box .stap {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #c3231b;
    border: 2px solid #c3231b;
    border-radius: 8px;
    padding: 4px 12px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.work3-box h3 a {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.work3-box:hover h3 a {
    color: #ffc107 !important;
}

.work3-box:hover p {
    color: #ffc107 !important;
}

.work3-box p {
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .tradition-image-collage {
        height: 320px;
        margin-top: 40px;
    }

    .tradition-img-main {
        height: 280px;
    }

    .tradition-img-secondary {
        height: 190px;
        width: 50%;
    }
}

@media (max-width: 575px) {
    .tradition-image-collage {
        height: 260px;
    }

    .tradition-img-secondary {
        display: none;
    }

    .tradition-badge {
        width: 80px;
        height: 80px;
        top: 10px;
        right: 5px;
    }

    .tradition-badge-years {
        font-size: 20px;
    }
}

/* ============================================================
   3c. Special Occasions Section (Celebrate with Nathu's)
   ============================================================ */

.project3.sp {
    background: linear-gradient(160deg, #1a0000 0%, #2c0000 50%, #1a0000 100%);
    position: relative;
    overflow: hidden;
}

.project3.sp::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 193, 7, 0.06) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 193, 7, 0.04) 0%,
            transparent 40%
        );
    pointer-events: none;
}

/* White headings on dark bg */
.project3.sp .heading3 h2,
.project3.sp .title {
    color: #fff !important;
}

.project3.sp .heading3 .span {
    color: #ffc107 !important;
}

/* Tab Pills */
.project3.sp .nav-pills {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.project3.sp .nav-pills .nav-link {
    color: #ccc !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    padding: 10px 28px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.project3.sp .nav-pills .nav-link:hover {
    color: #ffc107 !important;
    background: rgba(255, 193, 7, 0.1);
}

.project3.sp .nav-pills .nav-link.active {
    background: #c3231b !important;
    color: #ffc107 !important;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.5);
}

/* Occasion Cards — 3-card symmetric grid */
.occasion-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.occasion-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.occasion-card:hover img {
    transform: scale(1.06);
}

/* Gradient overlay */
.occasion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 16px;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
    border-radius: 0 0 16px 16px;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.occasion-card:hover .occasion-overlay {
    transform: translateY(0);
}

.occasion-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.occasion-overlay h5 {
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.occasion-card:hover .occasion-overlay h5 {
    color: #ffc107 !important;
}

@media (max-width: 768px) {
    .occasion-card img {
        height: 200px;
    }
}

/* ============================================================
   4. Product Cards - Premium Design (Image 1 Style)
   ============================================================ */
.premium-product-card {
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    height: 100%;
}

.premium-product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.1) !important;
}

.premium-product-card .product-name a {
    color: #c3231b !important;
    font-family: "Playfair Display", serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: block;
    margin-bottom: 5px;
}

.premium-product-card .price-label {
    color: #444 !important;
    font-family: "Lato", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.btn-maroon {
    background-color: #c3231b !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 15px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-maroon:hover {
    background-color: #6a0000 !important;
    color: #fff !important;
    transform: scale(1.02);
}

.service3 .premium-product-card:hover .product-name a {
    color: #c3231b !important;
}

/* Custom Product Styles to match Theme */

/* Enforce Vertical Layout for the Card */
.service3-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px !important;
    background: #fff !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100% !important;
    border: 1px solid #eee !important;
}

.service3-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    background: #c3231b !important;
    border-color: #c3231b !important;
}

/* New Image Container Class to bypass theme 'icon' styles */
.service3-box .product-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service3-box .product-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.5s ease;
}

.service3-box:hover .product-img-box img {
    transform: scale(1.05);
}

/* Content Container */
.service3-box .heading3 {
    width: 100% !important;
    padding: 15px 0 0 !important;
}

.service3-box:hover .heading3 h4 a,
.service3-box:hover .heading3 p {
    color: #ffc107 !important;
}

.service3-box:hover .heading3 p span {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Typography & Buttons */
.service3-box .heading3 h4 {
    margin-bottom: 10px !important;
}

.service3-box .heading3 h4 a {
    font-family: "Playfair Display", serif !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #c3231b !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: block;
}

.service3-box .heading3 p {
    color: #c3231b !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    margin-top: 5px !important;
}

.service3-box .heading3 p span {
    color: #777 !important;
    font-weight: 500 !important;
}

.service3-box .learn {
    display: inline-block !important;
    padding: 12px 25px !important;
    background: #c3231b !important;
    color: #fff !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 14px !important;
    transition: all 0.3s ease;
    border: none !important;
}

.service3-box:hover .learn {
    background: #ffc107 !important;
    color: #000 !important;
}

.service3-box .learn span {
    margin-left: 5px !important;
}

.product-img-box .product-title:hover a {
    color: white !important;
}

/* Premium Product Card Buttons - Clean Restoration */
.btn-card-online,
.btn-card-outlet,
.btn-card-stockout {
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.58rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-card-online {
    background: #c3231b !important;
    color: #fff !important;
    border: 1px solid #c3231b !important;
}

.btn-card-outlet {
    background: transparent !important;
    color: #c3231b !important;
    border: 1.2px solid #c3231b !important;
    white-space: nowrap !important;
}

.btn-card-stockout {
    background: #f5f5f5 !important;
    color: #999 !important;
    border: 1px solid #ddd !important;
}

/* Hover Interaction: Ensure visibility when card background turns maroon */
.service3-box:hover .btn-card-online,
.service3-box:hover .btn-card-outlet {
    background: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
}

.service3-box:hover .btn-card-stockout {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* OUT OF STOCK STYLES */
.out-of-stock-badge-grid {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c3231b !important;
    color: #fff !important;
    padding: 0px 5px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-family: "Lato", sans-serif;
}

.stockout-text-both {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: #c3231b;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 5;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service3-box:hover .stockout-text-both {
    color: #ffc107 !important;
}

.out-of-stock-badge-large {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #c3231b !important;
    color: #fff !important;
    padding: 1px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: "Lato", sans-serif;
}

.out-of-stock-btn-grid {
    background: #a94442 !important; /* maroon-red */
    color: #fff !important;
    border: none !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
    font-weight: 700 !important;
}

.service3-box:hover .out-of-stock-btn-grid,
.service3-box:hover .learn {
    background: #ffc107 !important;
    color: #000 !important;
}

/* Global Pagination Custom Styling */
.pagination {
    margin-bottom: 0;
    gap: 5px;
    justify-content: center;
}

.pagination .page-item .page-link {
    color: #c3231b !important;
    background-color: #fff !important;
    border: 1.2px solid #f5e8e8 !important;
    padding: 6px 14px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem !important;
    box-shadow: none !important;
}

.pagination .page-item.active .page-link {
    background-color: #c3231b !important;
    border-color: #c3231b !important;
    color: #fff !important;
}

.pagination .page-item .page-link:hover {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #c3231b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.pagination .page-item.disabled .page-link {
    color: #ccc !important;
    background-color: #fdfdfd !important;
    border-color: #eee !important;
}

/* Hide the "Showing X to Y of Z results" text globally */
nav
    .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between
    > div:first-child,
nav .small.text-muted,
p.text-sm.text-gray-700 {
    display: none !important;
}

@media (min-width: 640px) {
    nav .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between {
        display: block !important;
        text-align: center !important;
    }
}

/* Global Sorting/Form Select Premium Styling - Compact & Themed */
.form-select {
    border: 1.2px solid #c3231b !important;
    color: #c3231b !important;
    background-color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    border-radius: 4px !important;
    padding: 4px 30px 4px 12px !important;
    height: 32px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238b0000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-size: 14px 10px !important;
    background-position: right 10px center !important;
}

.form-select:focus {
    border-color: #ffc107 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.1) !important;
}

.form-select option {
    color: #333 !important;
    font-weight: 500 !important;
    background-color: #fff !important;
}

.form-select option:checked {
    background-color: #c3231b !important;
    color: #fff !important;
}

/* ============================================================
   5. About Section
   ============================================================ */
.about3-images-collage {
    position: relative;
    height: 500px !important;
    width: 100% !important;
    display: block !important;
    margin-top: 30px;
}

.about3-images-collage::before {
    content: "";
    position: absolute !important;
    width: 300px !important;
    height: 300px !important;
    background: #fffaf0 !important;
    border-radius: 50% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 0 !important;
}

.about3-images-collage .img-main {
    width: 70% !important;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
    max-width: none !important;
}

.about3-images-collage .img-secondary {
    position: absolute !important;
    width: 40% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    border: 5px solid #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 3 !important;
    max-width: none !important;
}

.about3-images-collage .img-top-right {
    top: 20px !important;
    right: 0 !important;
}

.about3-images-collage .img-bottom-left {
    bottom: 20px !important;
    left: 0 !important;
}

@media (max-width: 991px) {
    .about3-images-collage {
        height: 400px !important;
        margin-top: 50px !important;
    }

    .about3-images-collage .img-main {
        width: 80% !important;
        height: 300px !important;
    }

    .about3-images-collage .img-secondary {
        width: 45% !important;
        height: 150px !important;
    }

    .about3-images-collage::before {
        width: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 575px) {
    .about3-images-collage {
        height: 350px !important;
    }

    .about3-images-collage .img-main {
        width: 90% !important;
        height: 250px !important;
    }

    .about3-images-collage .img-secondary {
        display: none !important;
    }
}

/* ============================================================
   6. Chef Team Section (team3) — white bg preserved
   ============================================================ */

.team3.sp .team-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f5e8e8;
    transition: all 0.35s ease;
    height: 100%;
}

.team3.sp .team-box:hover {
    border-color: #c3231b;
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.12);
    transform: translateY(-6px);
}

/* Circular image */
.team3.sp .team-box .image-area .image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid #f5e8e8;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    background: #fdf5f5;
}

.team3.sp .team-box:hover .image-area .image {
    border-color: #c3231b;
    box-shadow: 0 0 0 6px rgba(139, 0, 0, 0.1);
}

.team3.sp .team-box .image-area .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team3.sp .team-box:hover .image-area .image img {
    transform: scale(1.08);
}

/* Name */
.team3.sp .team-box .heading3 h4 a {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #c3231b !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.team3.sp .team-box:hover .heading3 h4 a {
    color: #ffc107 !important;
}

/* Role */
.team3.sp .team-box .heading3 p {
    font-size: 13px !important;
    color: #888 !important;
    font-weight: 500 !important;
    margin-top: 4px !important;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.team3.sp .team-box:hover .heading3 p {
    color: #c3231b !important;
}

/* Reduce space between image and text */
.team3.sp .space30 {
    height: 16px !important;
}

/* ============================================================
   7. Blog / Sweet Chronicles Section
   ============================================================ */

/* Outer section background */
.blog3.sp {
    background: #fdfaf7;
}

/* Card wrapper */
.blog3.sp .blog3-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 0, 0, 0.1);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog3.sp .blog3-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.14);
    border-color: #c3231b;
}

/* ---- Image ---- */
.blog3.sp .blog3-img {
    position: relative;
    overflow: hidden;
    height: 240px;
    flex-shrink: 0;
}

.blog3.sp .blog3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}

.blog3.sp .blog3-box:hover .blog3-img img {
    transform: scale(1.08);
}

/* Category badge */
.blog3.sp .blog3-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #c3231b;
    color: #ffc107;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* ---- Body ---- */
.blog3.sp .blog3-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

/* Date */
.blog3.sp .blog3-body .date {
    font-size: 12.5px;
    color: #c3231b !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

/* Thin red divider below date */
.blog3.sp .blog3-body .tags {
    border-bottom: 1px solid #f0e4e4;
    padding-bottom: 10px;
}

/* Title */
.blog3.sp .blog3-body h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.blog3.sp .blog3-body h3 a {
    color: #1a1a1a !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.blog3.sp .blog3-box:hover .blog3-body h3 a {
    color: #c3231b !important;
}

/* Excerpt */
.blog3.sp .blog3-body p {
    font-size: 14px !important;
    color: #777 !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    flex: 1;
}

/* Read More */
.blog3.sp .blog3-readmore {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #c3231b !important;
    text-decoration: none !important;
    transition:
        gap 0.3s ease,
        color 0.3s ease;
    margin-top: 4px;
}

.blog3.sp .blog3-readmore:hover {
    color: #ffc107 !important;
    gap: 12px;
}

/* ============================================================
   8. Footer — Brand Colors (Dark Red + Gold)
   ============================================================ */

/* ---- CTA Section ---- */

.cta3 {
    background: linear-gradient(
        135deg,
        #c3231b 0%,
        #5c0000 50%,
        #c3231b 100%
    ) !important;
    padding: 70px 0 60px !important;
    position: relative;
}

.cta3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 10% 50%,
            rgba(255, 193, 7, 0.07) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 193, 7, 0.05) 0%,
            transparent 40%
        );
    pointer-events: none;
}

/* CTA heading */
.cta3 .heading2 h2 {
    color: #ffc107 !important;
    font-size: 42px !important;
    font-weight: 800 !important;
}

.cta3 .heading2 p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Subscribe form */
.cta3 .subscribe-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.cta3 .subscribe-form input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    padding: 14px 22px !important;
    flex: 1;
    outline: none;
    font-size: 14px;
}

.cta3 .subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
}

.cta3 .subscribe-form .button button {
    background: #ffc107 !important;
    color: #1a0000 !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    border-radius: 0 50px 50px 0 !important;
    font-size: 14px !important;
    transition: background 0.3s ease !important;
}

.cta3 .subscribe-form .button button:hover {
    background: #fff !important;
    color: #c3231b !important;
}

/* ---- Main Footer Body ---- */
.footer3 {
    background: #1a0000 !important;
    padding: 60px 0 0 !important;
    border-top: 3px solid rgba(255, 193, 7, 0.2) !important;
}

/* Logo */
.footer3 .footer-logo img {
    max-height: 80px;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.2));
}

/* About text */
.footer3 .heading2 p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}

/* Column headings */
.footer3 .single-footer-items h3 {
    color: #ffc107 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px !important;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 193, 7, 0.25);
}

/* Links list */
.footer3 .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer3 .menu-list li {
    margin-bottom: 10px;
}

.footer3 .menu-list li a {
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none !important;
    font-size: 14px;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* .footer3 .menu-list li a::before {
    content: "›";
    color: #ffc107;
    font-size: 18px;
    line-height: 1;
} */

.footer3 .menu-list li a:hover {
    color: #ffc107 !important;
    padding-left: 4px;
}

/* Social icons */
.footer3 .social-icon {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer3 .social-icon li a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 193, 7, 0.5);
    color: rgba(255, 255, 255, 0.7) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer3 .social-icon li a:hover {
    background: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #1a0000 !important;
    transform: translateY(-3px);
}

/* Contact boxes */
.footer3 .contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer3 .contact-box .icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: sepia(1) saturate(3) hue-rotate(330deg) brightness(1.2);
}

.footer3 .contact-box .pera a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: color 0.3s;
}

.footer3 .contact-box .pera a:hover {
    color: #ffc107 !important;
}

/* ---- Copyright Bar ---- */
.copyright-area {
    background: #0e0000 !important;
    border-top: 1px solid rgba(255, 193, 7, 0.15) !important;
    /* padding: 18px 0 !important; */
    margin-top: 20px;
}

.copyright-area .coppyright p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
    margin: 0 !important;
}

.copyright-area .coppyright.right-area a {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
    text-decoration: none !important;
    margin-left: 20px;
    transition: color 0.3s;
}

.copyright-area .coppyright.right-area a:hover {
    color: #ffc107 !important;
}

/* Back to top arrow */
.copyright-area .arrow-up {
    background: #c3231b !important;
    border: 2px solid #ffc107 !important;
    color: #ffc107 !important;
    transition: all 0.3s ease !important;
}

.copyright-area .arrow-up:hover {
    background: #ffc107 !important;
    color: #1a0000 !important;
}

/* ============================================================
   6. Premium Contact Page Styles
   ============================================================ */
:root {
    --smt-blue: #c3231b;
    /* Deep Red */
    --smt-gold: #ffc107;
    /* Yellow-Gold */
    --smt-gold-light: rgba(255, 193, 7, 0.1);
    --smt-white: #ffffff;
    --smt-light-gray: #f8f9fa;
    --smt-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --smt-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-hero {
    position: relative;
    z-index: 1 !important;
}

.premium-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c3231b !important;
    /* Deep Red overlay */
    z-index: -1;
}

.premium-hero h1 {
    font-weight: 800;
    letter-spacing: -1px;
}

.text-gold {
    color: var(--smt-gold) !important;
}

.premium-heading .subtitle {
    display: inline-block;
    color: var(--smt-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.premium-heading .premium-section-title {
    color: var(--smt-blue) !important;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.premium-heading .title-divider {
    width: 60px;
    height: 3px;
    background: var(--smt-gold);
    margin: 0 auto;
}

/* Info Cards */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    background: var(--smt-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--smt-shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--smt-shadow-md);
    border-color: var(--smt-gold-light);
}

.info-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--smt-gold-light);
    color: var(--smt-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-card .info-text h5 {
    color: var(--smt-blue) !important;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.info-card .info-text p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

.info-card .info-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.info-card .info-text a:hover {
    color: var(--smt-gold);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--smt-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--smt-shadow-md);
}

.contact-form-card .card-header {
    margin-bottom: 30px;
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
}

.contact-form-card .card-header h3 {
    color: var(--smt-blue) !important;
    font-weight: 800;
}

.contact-form-card .card-header p {
    color: #666;
    margin: 0;
}

.custom-input label {
    font-weight: 700;
    /* color: var(--smt-blue) !important; */
    font-size: 14px;
}

.custom-input .form-control {
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fdfdfd;
    transition: all 0.3s;
}

.custom-input .form-control:focus {
    border-color: var(--smt-gold) !important;
    box-shadow: 0 0 0 4px var(--smt-gold-light) !important;
    background: var(--smt-white);
}

.premium-btn {
    background: var(--smt-blue);
    color: var(--smt-white);
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-btn:hover {
    background: var(--smt-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}

/* Map */
.map-container {
    border: 8px solid var(--smt-white);
    box-shadow: var(--smt-shadow-md);
}

@media (max-width: 991px) {
    .premium-heading .premium-section-title {
        font-size: 32px;
    }

    .contact-form-card {
        padding: 30px;
        margin-top: 30px;
    }
}

/* ============================================================
   7. Premium About Page Styles
   ============================================================ */

.about-story-content .premium-section-title {
    text-align: left;
}

.about-story-content .title-divider {
    margin-left: 0;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--smt-gold-light);
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--smt-gold);
    max-width: fit-content;
}

.experience-badge .badge-icon {
    font-size: 36px;
    color: var(--smt-blue);
}

.experience-badge .badge-text h4 {
    color: var(--smt-blue) !important;
    margin: 0;
    font-weight: 800;
    font-family: "Prata", "Playfair Display", serif;
}

.experience-badge .badge-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.story-img-main {
    height: 100%;
    object-fit: cover;
}

.story-img-sub {
    width: 100%;
    height: calc(50% - 8px);
    object-fit: cover;
}

/* Value Cards */
.value-card {
    background: var(--smt-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--smt-shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--smt-shadow-md);
    border-color: var(--smt-gold);
}

.value-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--smt-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-card .icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.value-card h3 {
    color: var(--smt-blue) !important;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Team Card */
.team-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
}

.team-card .circular-frame {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--smt-white);
    background: #fdfdfd;
    box-shadow: var(--smt-shadow-sm);
    transition: all 0.4s ease;
}

.team-card .circular-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.social-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--smt-blue);
    color: var(--smt-white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--smt-gold);
    transform: translateY(-3px);
}

.team-card:hover .circular-frame {
    border-color: var(--smt-gold);
    box-shadow: var(--smt-shadow-md);
    transform: translateY(-5px);
}

.team-card:hover .circular-frame img {
    transform: scale(1.1);
    filter: brightness(0.4);
}

.team-card:hover .social-links {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.team-card .team-info h5 {
    color: var(--smt-blue) !important;
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 20px;
}

.team-card .team-info .designation {
    color: var(--smt-gold);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Gold Button */
.gold-btn {
    background: var(--smt-gold) !important;
    color: #1a0000 !important;
}

.gold-btn:hover {
    background: var(--smt-white) !important;
    color: var(--smt-blue) !important;
}

@media (max-width: 991px) {
    .about-story-images {
        margin-top: 40px;
    }

    .experience-badge {
        margin-bottom: 20px;
    }
}

/* Cart Nav Button */
.cart-nav-btn {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border: none;
    transition: all 0.3s ease;
}

.cart-nav-btn:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

/* Cart Count Badge - New & Robust */
.cart-count-badge {
    background: #ffc107;
    /* Yellow-Gold */
    color: #c3231b;
    /* Deep Red */
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Wishlist Buttons on Cards - Refined for Clarity */
.ajax-wishlist {
    background: transparent !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    background-clip: padding-box;
}

.ajax-wishlist:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.2);
}

.ajax-wishlist.active {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
}

.ajax-wishlist.active:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Ensure wishlist button has yellow border and heart when card or button is hovered */
.service3 .service3-box:hover .ajax-wishlist,
.ajax-wishlist:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3) !important;
}

/* Header Wishlist Icon - Premium Look */
.wishlist-nav-icon {
    color: var(--secondary-color) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover .wishlist-nav-icon {
    color: var(--primary-color) !important;
    transform: scale(1.15) rotate(5deg);
}

.wishlist-count-badge {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: 800 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

/* --- Final Cart Clarity Fixes --- */
.cart-nav-btn {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

/* --- Availability Filters --- */
.availability-filters {
    display: inline-flex;
    gap: 10px;
    background: #f8f8f8;
    padding: 8px;
    border-radius: 50px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--secondary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Store Locator Results --- */
.store-result-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.store-result-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.store-result-card h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.store-result-card p {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #555;
    line-height: 1.4;
}

.store-result-card i {
    width: 20px;
    color: var(--primary-color);
}

.btn-directions {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    transition: color 0.2s;
}

.btn-directions:hover {
    color: var(--primary-color);
}

.cart-count-badge {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: 900 !important;
    padding: 0 8px !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1.6 !important;
    margin-left: 5px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;

    /* Anti-Blur fixes */
    -webkit-font-smoothing: antialiased !important;
    transform: translateZ(0) !important;
    text-rendering: optimizeLegibility !important;
}

/* --- Nathu Sweet Toast Notification --- */
.nathu-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.nathu-toast {
    background: var(--white);
    color: var(--secondary-color);
    padding: 15px 25px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(125%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nathu-toast.show {
    transform: translateX(0);
}

.nathu-toast i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nathu-toast .toast-title {
    font-weight: 700;
    display: block;
}

.nathu-toast .toast-msg {
    font-size: 0.9rem;
    color: #666;
}

/* --- Product Image Action Overlay --- */
.product-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.service3-box:hover .product-img-box::after {
    opacity: 1;
}

.product-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) translateZ(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    display: flex !important;
    gap: 12px;
    width: 100%;
    justify-content: center;
    pointer-events: none;
}

.service3-box:hover .product-overlay {
    opacity: 1 !important;
    transform: translate(-50%, -50%) translateZ(0) !important;
    pointer-events: auto !important;
}

.product-overlay .btn-action {
    width: 45px;
    height: 45px;
    background: var(--white) !important;
    color: var(--secondary-color) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none !important;
}

/* Explicitly override conflicting .ajax-wishlist styles for the overlay buttons */
.service3 .service3-box:hover .product-overlay .btn-action.ajax-wishlist,
.product-overlay .btn-action.ajax-wishlist {
    background: var(--white) !important;
    color: var(--secondary-color) !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    transform: none !important;
}

.product-overlay .btn-action:hover,
.service3 .service3-box:hover .product-overlay .btn-action:hover,
.service3 .service3-box:hover .product-overlay .btn-action.ajax-wishlist:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-5px) !important;
}

.product-overlay .btn-action.active:not(:hover) {
    background: var(--white) !important;
    color: var(--secondary-color) !important;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2) !important;
}

/* ============================================================
   6. Authentication Screens (Login & Register)
   ============================================================ */
.auth-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff9f0 0%, #fff 50%, #fff5f5 100%);
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.auth-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: none;
    display: flex;
    min-height: 480px;
}

.auth-sidebar {
    background: var(--secondary-color);
    width: 40%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.auth-sidebar::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
}

.auth-sidebar h2 {
    color: #fff !important;
    font-family: "Playfair Display", serif;
    font-size: 2rem !important;
    font-weight: 700;
    margin-bottom: 20px;
}

.auth-sidebar p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
}

.auth-sidebar-img {
    margin-top: auto;
    text-align: center;
    opacity: 0.9;
}

.auth-sidebar-img i {
    font-size: 4rem;
    color: var(--primary-color);
}

.auth-content {
    width: 60%;
    padding: 40px 35px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-control {
    height: 45px;
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 0;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-bottom-color: var(--secondary-color) !important;
    box-shadow: none !important;
}

.auth-btn {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    background: var(--secondary-color);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

.auth-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.auth-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.auth-footer a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .auth-sidebar {
        display: none;
    }

    .auth-content {
        width: 100%;
        padding: 30px 20px;
    }
}

.auth-logo-wrap {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.1);
    margin-bottom: 25px;
}

.auth-logo-wrap img {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.auth-logo-wrap:hover img {
    transform: scale(1.05);
}

@media (max-width: 575px) {
    .auth-section {
        padding: 40px 0;
    }

    .auth-body {
        padding: 25px 20px;
    }
}

/* Footer Contact Icons Styling */
.footer3 .contact-box {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
}

.footer3 .contact-box .icon {
    width: 42px !important;
    height: 42px !important;
    border: 1px solid var(--primary-color) !important;
    background: rgba(255, 193, 7, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 15px !important;
    color: var(--primary-color) !important;
    font-size: 18px !important;
    border-radius: 50% !important;
}

.footer3 .contact-box .pera a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.footer3 .contact-box .pera a:hover {
    color: var(--primary-color) !important;
}

/* ============================================================
   7. Gallery Section (Category Wise)
   ============================================================ */
.gallery-section-v3 {
    background: #fff;
}

/* ============================================================
   8. Gallery Lightbox
   ============================================================ */
.gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 70%;
    max-height: 70vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-counter {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-nav-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev {
    left: 40px;
}

.lightbox-nav-btn.next {
    right: 40px;
}

@media (max-width: 767px) {
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-nav-btn.prev {
        left: 15px;
    }

    .lightbox-nav-btn.next {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-counter {
        top: 20px;
        font-size: 1rem;
    }
}

.gallery-filters {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    margin-bottom: 30px !important;
}

.gallery-filter-btn {
    background: transparent !important;
    border: 1px solid #eee !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: #fff !important;
    margin-top: 15px;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem !important;
}

.gallery-overlay a.gallery-popup {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-overlay a.gallery-popup:hover {
    transform: scale(1.1);
    background: #fff;
}

/* ============================================================
   10. Testimonial Section
   ============================================================ */
.testimonial3 {
    background: #fff9f0;
    position: relative;
    overflow: hidden;
}

.testimonial3-box {
    background: var(--white);
    padding: 40px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.05) !important;
    position: relative;
    margin: 20px 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0e0e0;
}

.testimonial3-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.1) !important;
}

.testimonial3-box .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: rgba(255, 193, 7, 0.2);
}

.testimonial3-box .rating {
    margin-bottom: 20px;
}

.testimonial3-box .rating i {
    color: var(--primary-color) !important;
    font-size: 14px;
}

.testimonial3-box p.testimonial-text {
    font-style: italic !important;
    font-size: 17px !important;
    line-height: 28px !important;
    color: #444 !important;
    margin-bottom: 0 !important;
}

.testimonial3-box .author-area {
    display: flex !important;
    align-items: center !important;
}

.testimonial3-box .author-area .image {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial3-box .author-area .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.testimonial3-box .author-area .text h5 {
    margin-bottom: 2px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
}

.testimonial3-box .author-area .text p {
    margin-bottom: 0 !important;
    font-size: 14px !important;
    font-style: normal !important;
    color: #777 !important;
}

.testimonial-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonial-slider .owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-slider .owl-dot.active {
    background: var(--secondary-color) !important;
    width: 30px;
    border-radius: 10px;
}

/* ============================================================
   6. Search Bar & Suggestions Styling
   ============================================================ */
.nathu-search-form {
    z-index: 1010;
}

.nathu-search-input {
    border: 1px solid #eee !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.nathu-search-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.1) !important;
}

.search-suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f9f9f9;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: #fff9f0;
    color: var(--secondary-color);
}

.suggestion-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.suggestion-info {
    flex-grow: 1;
}

.suggestion-name {
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}

.suggestion-price {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.suggestion-footer {
    padding: 10px;
    background: #fcf8f1;
    text-align: center;
}

.suggestion-footer a {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.search-clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    z-index: 1015;
    transition: color 0.2s ease;
    padding: 5px;
}

.search-clear-btn:hover {
    color: var(--secondary-color);
}

/* Fix for mobile search bar alignment */
@media (max-width: 991px) {
    .nathu-search-input {
        border-radius: 8px !important;
    }
}

/* ============================================================
   8. Premium Toast Notifications (eCommerce Style)
   ============================================================ */
#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999999; /* Super high z-index */
}

.premium-toast {
    background: #ffffff !important;
    border-left: 5px solid #c3231b !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 12px !important;
    transform: translateX(130%) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    min-width: 320px !important;
    max-width: 450px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.premium-toast.show {
    transform: translateX(0) !important;
}

.premium-toast .toast-icon {
    width: 45px !important;
    height: 45px !important;
    background: rgba(139, 0, 0, 0.1) !important;
    color: #c3231b !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
}

.premium-toast .toast-content {
    flex-grow: 1 !important;
}

.premium-toast .toast-title {
    font-weight: 800 !important;
    color: #c3231b !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-family: "Playfair Display", serif !important;
}

.premium-toast .toast-message {
    color: #555 !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.premium-toast .toast-close {
    color: #bbb !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 5px !important;
}

.premium-toast .toast-close:hover {
    color: #c3231b !important;
    transform: rotate(90deg) !important;
}

@media (max-width: 575px) {
    #toast-container {
        top: auto !important;
        bottom: 20px !important;
        right: 20px !important;
        left: 20px !important;
    }
    .premium-toast {
        min-width: 0 !important;
        width: 100% !important;
    }
}

/* ============================================================
   9. Premium Confirmation Modal
   ============================================================ */
.premium-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.premium-confirm-overlay.show {
    opacity: 1;
    visibility: visible;
}

.premium-confirm-modal {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-confirm-overlay.show .premium-confirm-modal {
    transform: translateY(0) scale(1);
}

.premium-confirm-modal .confirm-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 0, 0, 0.1);
    color: #c3231b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.premium-confirm-modal h3 {
    font-family: "Playfair Display", serif;
    color: #1a0000;
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-confirm-modal p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.confirm-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 130px;
}

.confirm-btn.cancel {
    background: #f1f1f1;
    color: #666;
}

.confirm-btn.cancel:hover {
    background: #e5e5e5;
    color: #333;
}

.confirm-btn.proceed {
    background: #c3231b;
    color: #ffc107;
}

.confirm-btn.proceed:hover {
    background: #a50000;
    box-shadow: 0 10px 15px -3px rgba(139, 0, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .confirm-actions {
        flex-direction: column-reverse;
    }
    .confirm-btn {
        width: 100%;
    }
}

/* Search Dropdown Styles */
.search-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 320px;
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-dropdown-menu .nathu-search-input {
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 6px 10px !important;
    font-size: 0.9rem !important;
    height: 30px !important;
}

.search-dropdown-menu .nathu-search-input:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.05) !important;
}

.search-toggle-btn i {
    cursor: pointer;
    transition: all 0.3s ease;
    /* padding: 5px; */
    font-size: 20px;
}

.search-toggle-btn:hover i {
    color: var(--primary-color) !important;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .search-dropdown-menu {
        right: -50px;
        width: 280px;
        top: calc(100% + 10px);
    }
}

@media (max-width: 480px) {
    .search-dropdown-menu {
        position: fixed;
        top: 70px;
        left: 15px;
        right: 15px;
        width: auto;
        transform: translateY(-10px);
    }
    .search-dropdown-menu.show {
        transform: translateY(0);
    }
}

/* Live Search Suggestions Styling */
.search-suggestions-container {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
    padding-top: 5px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border-radius: 8px;
    border-bottom: 1px solid #f9f9f9;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #fff9f0;
}

.suggestion-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    background-color: #f8f8f8;
}

.suggestion-info {
    flex-grow: 1;
}

.suggestion-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color) !important;
    margin-bottom: 2px;
    line-height: 1.2;
}

.suggestion-price {
    font-size: 0.8rem;
    color: #666 !important;
    margin-bottom: 0;
}

.suggestion-footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 5px;
}

.suggestion-footer a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.suggestion-footer a:hover {
    color: var(--primary-color);
}

/* Product Card Overlay & Wishlist Styles */
.product-img {
    position: relative !important;
    overflow: hidden !important;
}

/* Removed conflicting overlay block to prioritize service3-box styles above */

.btn-action {
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    color: var(--secondary-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    padding: 0 !important;
}

.btn-action:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-3px) !important;
}

.btn-action.active,
.ajax-wishlist.active {
    color: #e74c3c !important;
}

.btn-action.active i,
.ajax-wishlist.active i {
    animation: pulse-heart 0.3s ease-in-out;
}

@keyframes pulse-heart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Standalone Wishlist Button in Product Page */
.ajax-wishlist.active {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
}
