/* ====================================
   RESPONSIVE STYLES - NANDINI MASALA TEA
   ==================================== */

/* ====================================
   GLOBAL RESPONSIVE UTILITIES
   ==================================== */
@media (max-width: 991px) {
    /* Base font size adjustment for tablets */
    html {
        font-size: 15px;
    }
    
    /* Container padding adjustment */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    /* Base font size adjustment for mobile */
    html {
        font-size: 14px;
    }
    
    /* Touch-friendly tap targets */
    a, button, .btn, [role="button"] {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .header-bottom {
        padding: 12px 0;
        position: relative;
        background: #f28c28;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        max-height: 50px;
        width: auto;
    }
    
    .header-right {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
        margin-left: 20px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: #4b2e00;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 80px 25px 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .main-menu > ul {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        padding: 0;
    }
    
    .main-menu > ul > li {
        width: 100%;
        margin: 0;
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .main-menu > ul > li:last-child {
        border-bottom: none;
    }
    
    .main-menu > ul > li > a {
        display: block;
        padding: 12px 0;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .main-menu > ul > li > a:hover,
    .main-menu > ul > li.active > a {
        color: #f28c28;
        padding-left: 5px;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    .header-contact {
        display: none;
    }
    
    .header-cart {
        margin-left: 15px;
    }
}

/* Mobile View (up to 767px) */
@media (max-width: 767px) {
    .header-bottom {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    .main-menu {
        width: 280px;
        right: -280px;
        padding: 70px 20px 25px;
    }
    
    .main-menu > ul > li > a {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .header-actions {
        margin-left: 10px;
    }
    
    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
        margin-left: 15px;
    }
    
    .mobile-menu-toggle span {
        height: 2.5px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .logo img {
        max-height: 40px;
    }
    
    .main-menu {
        width: 260px;
        right: -260px;
        padding: 65px 15px 20px;
    }
    
    .main-menu > ul > li > a {
        padding: 9px 0;
        font-size: 13.5px;
    }
    
    .mobile-menu-toggle {
        width: 24px;
        height: 18px;
        margin-left: 12px;
    }
}

/* Tablets (landscape) and small desktops */
@media (max-width: 1199px) and (min-width: 992px) {
    /* Ensure header has consistent height and alignment */
    .header-bottom {
        padding: 15px 0;
    }
    
    /* Logo container alignment */
    .header-bottom .row {
        align-items: center;
    }
    
    /* Logo image centering */
    .logo {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0;
    }
    
    .logo a {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .logo img {
        max-height: 60px;
        width: auto;
        margin: 0;
    }
    
    /* Navigation menu alignment */
    .header-bottom-right {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .main-menu nav > ul {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0;
        padding: 0;
    }
}

/* Tablets (portrait) and small desktops */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Navigation */
    .main-menu {
        display: none;
    }
    
    .mobile-menu-area {
        display: block;
    }
    
    /* Header */
    .header-top {
        padding: 10px 0;
    }
    
    .header-bottom {
        padding: 15px;
    }
    
    /* Hero/Banner */
    .slider-content {
        text-align: center;
        padding: 40px 20px;
    }
    
    .slider-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    /* General content */
    .section-title {
        font-size: 28px;
    }
    
    /* Forms */
    .form-control {
        padding: 12px 15px;
    }
    
    /* Header and logo alignment for tablets */
    .header-bottom {
        padding: 10px 0;
    }
    
    .header-bottom .row {
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0;
        padding: 5px 0;
    }
    
    .logo a {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .logo img {
        max-height: 55px;
        width: auto;
        margin: 0;
    }
    
    /* Mobile menu button alignment */
    .mobile-menu-area {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    h3 { font-size: 20px !important; }
    h4 { font-size: 18px !important; }
    
    /* Header */
    .header-top {
        font-size: 12px;
    }
    
    .logo {
        text-align: center;
        margin-bottom: 15px;
    }
    
    /* Hero/Banner */
    .slider-content {
        padding: 30px 15px;
    }
    
    .slider-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .slider-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Footer */
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Forms */
    .form-control {
        font-size: 14px;
    }
    
    /* Grid adjustments */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Header and logo alignment for mobile */
    .header-bottom {
        padding: 8px 0;
    }
    
    .header-bottom .row {
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0;
        padding: 5px 0;
    }
    
    .logo a {
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .logo img {
        max-height: 50px;
        width: auto;
        margin: 0;
    }
    
    /* Mobile menu button alignment */
    .mobile-menu-area {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
    }
}

/* iPhone 14 Pro (390px) and similar devices */
@media only screen 
  and (max-device-width: 428px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
    /* General adjustments */
    html {
        -webkit-text-size-adjust: 100%;
    }
    
    /* Typography */
    h1 { font-size: 26px !important; line-height: 1.3; }
    h2 { font-size: 22px !important; line-height: 1.3; }
    h3 { font-size: 20px !important; line-height: 1.3; }
    p, li, a, span, div { 
        -webkit-font-smoothing: antialiased;
        text-size-adjust: 100%;
    }
    
    /* Header */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    /* Navigation */
    .mobile-menu-area {
        padding: 10px 15px;
    }
    
    /* Hero/Banner */
    .slider-content {
        padding: 25px 15px;
    }
    
    .slider-content h1 {
        font-size: 28px !important;
        margin-bottom: 10px;
    }
    
    .slider-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 8px;
        -webkit-appearance: none;
    }
    
    /* Forms */
    input, 
    textarea, 
    select {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        padding: 12px 15px !important;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    /* Images */
    img {
        height: auto;
        max-width: 100%;
    }
    
    /* Safe area for iPhone X and above */
    @supports (padding: max(0px)) {
        body, 
        .header,
        .footer {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
        
        .footer {
            padding-bottom: max(20px, env(safe-area-inset-bottom));
        }
    }
    
    /* Prevent text size adjustment */
    * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

/* Small Mobile Devices */
/* ====================================
   MOBILE TOUCH ENHANCEMENTS
   ==================================== */
/* Smooth scrolling for the entire site */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Better touch targets for mobile devices */
@media (max-width: 767px) {
    /* Ensure all clickable elements are touch-friendly */
    a, button, .btn, [role="button"],
    input[type="submit"], input[type="button"],
    .product-card, .menu-item-has-children > a::after {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent zoom on input focus on mobile */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Smooth scrolling for anchor links */
    html {
        scroll-behavior: smooth;
    }

    /* Better scrolling on iOS */
    .main-menu {
        -webkit-overflow-scrolling: touch;
    }

    /* Disable pull-to-refresh on mobile */
    body {
        overscroll-behavior-y: contain;
    }

    /* Smooth transitions for mobile menu */
    .mobile-menu-toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Better button feedback */
    .btn:active, button:active, a:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }

    /* Prevent long press menu on images */
    img {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Better form input experience */
    input, textarea, select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 4px;
    }

    /* Fix for iOS zoom on input focus */
    @supports (-webkit-overflow-scrolling: touch) {
        input, textarea {
            font-size: 16px !important;
        }
    }

    /* Prevent iOS from zooming in on form elements */
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
        select:focus, textarea:focus, input:focus {
            font-size: 16px !important;
        }
    }

    /* Better scrolling for iOS devices */
    .scrollable-content {
        -webkit-overflow-scrolling: touch;
    }

    /* Disable text selection on tap-hold */
    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Re-enable text selection where needed */
    p, h1, h2, h3, h4, h5, h6, span, div, a {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .footer-top {
        padding: 50px 0 20px;
    }

    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .footer-col {
        margin-bottom: 25px;
    }
    
    .footer-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 8px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #f28c28;
    }
    
    .footer-col:last-child .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-about p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        display: inline-block;
        padding: 4px 0;
        transition: all 0.3s ease;
    }
    
    .footer-contact-info li {
        margin-bottom: 12px;
        font-size: 14px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer-contact-info i {
        margin-right: 10px;
        color: #f28c28;
        margin-top: 4px;
    }
    
    .footer-social {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background: #f28c28;
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        padding: 18px 0;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 13px;
        margin: 0;
        color: rgba(255,255,255,0.7);
    }
    
    .footer-bottom a {
        color: #f28c28;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer-bottom a:hover {
        color: #fff;
        text-decoration: underline;
    }
}

/* Mobile View (up to 767px) */
@media (max-width: 767px) {
    .footer-top {
        padding: 40px 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-col {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-col:last-child {
        grid-column: auto;
    }
    
    .footer-title {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-about p {
        font-size: 13.5px;
        margin-bottom: 12px;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 20px;
    }
    
    .footer-links li {
        margin: 0;
    }
    
    .footer-contact-info {
        max-width: 260px;
        margin: 0 auto;
    }
    
    .footer-contact-info li {
        justify-content: center;
        font-size: 13.5px;
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* Map iframe responsiveness */
    .footer-map iframe {
        height: 220px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .footer-top {
        padding: 35px 0 10px;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-links {
        gap: 6px 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-contact-info li {
        font-size: 13px;
    }
    
    .footer-social {
        margin-top: 15px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .footer-map iframe {
        height: 200px;
    }
}

/* Specific component adjustments */
@media (max-width: 991px) {
    /* Navigation */
    .main-navigation {
        display: none;
    }
    
    .mobile-navigation {
        display: block;
    }
    
    /* Hero sections */
    .hero-content {
        text-align: center;
        padding: 40px 0;
    }
    
    /* Testimonials */
    .testimonial-item {
        margin-bottom: 30px;
    }
    
    /* Product grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Contact form */
    .contact-form {
        margin-bottom: 30px;
    }
}

/* Large desktop :1366px. */

@media (min-width: 1200px) and (max-width: 1500px) {
    .single-slider {
      padding: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
}


/* Normal desktop :992px. */

@media (min-width: 992px) and (max-width: 1199px) {
    .deals-content > h2 {
        font-size: 30px;
    }
	.single-slider {
	  padding: 0;
	  min-height: 90vh;
	  display: flex;
	  align-items: center;
	}
	.product-area.pt-100.pb-95 {
	  padding-bottom: 75px;
	  padding-top: 80px;
	}
	.banner-area {
	  padding-bottom: 50px;
	  padding-top: 80px;
	}
	.product-area.pt-90.pb-65 {
	  padding-bottom: 45px;
	  padding-top: 70px;
	}
	.testimonials-area {
	  padding-bottom: 80px;
	  padding-top: 80px;
	}
	.product-area.pt-90.pb-95 {
	  padding-bottom: 80px;
	  padding-top: 70px;
	}
	.brand-logo-area {
	  padding-bottom: 80px;
	  padding-top: 80px;
	}
	.blog-area {
	  padding-bottom: 50px;
	  padding-top: 70px;
	}
	.blog-thumb {
	  display: block;
	  overflow: hidden;
	}
	.newsletter-area {
	  padding-bottom: 80px;
	  padding-top: 70px;
	}
	.about-us-area {
	  padding: 80px 0;
	}
	.product-details {
	  padding: 80px 0;
	}
	.product-area {
	  padding: 0 0 80px;
	}
	.team-area {
	  padding-bottom: 50px;
	  padding-top: 75px;
	}
	.project-count-area {
	  padding-bottom: 50px;
	  padding-top: 70px;
	}
	.shop-page-area {
	  padding: 80px 0;
	}
	.blog-page-area {
	  padding: 80px 0;
	}
	.cart-main-area {
	  padding: 80px 0;
	}
	.login-register-area {
	  padding: 80px 0;
	}
	.contact-us {
	  padding: 75px 0;
	}
	.cart-main-area {
	  padding: 80px 0;
	}
	.checkout-area {
	  padding-bottom: 60px;
	  padding-top: 80px;
	}
    .slider-content h1 {
        font-size: 50px;
    }
    .main-menu ul li {
	  padding-right: 25px;
	}
    .main-menu nav > ul > li > ul.mega-menu > li {
        padding-left: 20px;
    }
    .main-menu nav > ul > li > ul.mega-menu {
        padding: 33px 10px 30px 0;
    }
    .shorting-style select {
        width: 105px;
    }
    .product-shorting.shorting-style select {
        width: 80px;
    }
    .view-mode {
        margin-right: 15px;
    }
    .shop-tags a {
        padding: 8px 5px;
    }
    .product-dec-slider {
        padding: 0 20px;
    }
	.blog-content > h2 {
	  font-size: 26px;
	}
    .cart-tax,
    .discount-code-wrapper {
        padding: 45px 20px 50px;
    }
    h4.cart-bottom-title {
        padding-right: 0;
    }
    .grand-totall {
        padding: 45px 20px 50px;
    }
    .masonary-style .quote-post {
        padding: 44px 34px 47px 37px;
    }
    .pagination-total-pages {
        padding: 15px 12px 13px;
    }
    .pagination-style li a.prev-next {
        padding: 11px 15px;
    }
    .pagination-style li {
        margin: 0 4px 0 0;
    }
    #exampleModal .modal-dialog {
        max-width: 920px;
        width: 920px;
    }
	.breadcrumb-area {
	  padding: 120px 0;
	}
	.breadcrumb-content > h3 {
	  font-size: 34px;
	}
	.product-details-content > h4 {
	  font-size: 24px;
	}
	.small-title h2 {
	  font-size: 26px;
	}
	.contact-us {
	  padding: 70px 0;
	  padding-bottom: 80px;
	}
	.contact-map {
	  margin-bottom: 0;
	  padding-top: 30px;
	}
	form#contact-form {
	  margin-bottom: 35px;
	}
}


/* Tablet desktop :768px. */

/* ====================================
   TABLET STYLES (768px - 991px)
   ==================================== */
@media (min-width: 768px) and (max-width: 991px) {
    .main-menu {
        display: none;
    }
    .mobile-menu-area {
        display: block;
    }
	.single-slider {
	  padding: 150px 0;
	}
	.slider-content > p {
	  max-width: 370px;
	}
	.top-strip {
	  padding: 8px 0;
	}
	.top-strip-inner {
	  justify-content: space-between;
	}
	.mean-container a.meanmenu-reveal {
	  top: 18px;
	  right: 15px;
	}
	.mean-container .mean-bar {
	  z-index: 1000;
	}
	.banner-content > h4 {
	  font-size: 28px;
	}
	.banner-content {
	  left: 20px;
	}
	.product-area.pt-100.pb-95 {
	  padding-bottom: 75px;
	  padding-top: 80px;
	}
	.banner-area {
	  padding-bottom: 50px;
	  padding-top: 80px;
	}
	.product-area.pt-90.pb-65 {
	  padding-bottom: 45px;
	  padding-top: 70px;
	}
	.testimonials-area {
	  padding-bottom: 80px;
	  padding-top: 80px;
	}
	.blog-area {
	  padding-bottom: 50px;
	  padding-top: 70px;
	}
	.product-area.pt-90.pb-95 {
	  padding-bottom: 70px;
	  padding-top: 70px;
	}
	.blog-thumb {
	  display: block;
	  overflow: hidden;
	}
	.newsletter-area {
	  padding-bottom: 80px;
	  padding-top: 70px;
	}
	.about-us-area {
	  padding: 80px 0;
	}
	.cart-main-area {
	  padding: 80px 0;
	}
	.checkout-area {
	  padding-bottom: 80px;
	  padding-top: 80px;
	}
	.overview-img {
	  margin-top: 30px;
	}
	.team-area {
	  padding-bottom: 50px;
	  padding-top: 75px;
	}
	.project-count-area {
	  padding-bottom: 50px;
	  padding-top: 70px;
	}
	.shop-page-area {
	  padding: 80px 0;
	}
	.product-details {
	  padding: 80px 0;
	}
	.product-area {
	  padding: 0 0 80px;
	}
    .header-cart {
	  float: left;
	  margin-right: 55px;
	}
	.blog-page-area {
	  padding: 80px 0;
	}
	.cart-main-area {
	  padding: 80px 0;
	}
	.login-register-area {
	  padding: 80px 0;
	}
	.contact-us {
	  padding: 75px 0;
	}
	.single-testimonial > p {
	  max-width: 80%;
	}
    .mean-container a.meanmenu-reveal {
        border: 1px solid #333;
        padding: 5px 6px 2px;
    }
	.section-title {
	  font-size: 30px;
	}
	.product-top-bar {
	  margin-bottom: 40px;
	}
    .deals-content > h2 {
        font-size: 23px;
        margin: 5px 0 14px;
    }
    .timer-style {
        margin: 26px 0 40px;
    }
    .slider-content h1 {
        font-size: 44px;
    }
    .mobile-menu .mean-nav ul.menu-overflow {
        height: 216px;
        margin-top: 10px;
        overflow-y: auto;
    }
    .slider-area-2 .slider-content h1 {
        font-size: 37px;
        margin: 6px 0 15px;
    }
    .overview-content-2 > h2 {
        font-size: 30px;
    }
    .single-testimonial {
        margin-left: 0;
    }
	.blog-author {
	  display: block;
	  overflow: hidden;
	}
    .testimonials-area.bg-img {
        background-position: 26% center;
    }
    .pb-115 {
        padding-bottom: 80px;
    }
    .pt-120 {
        padding-top: 85px;
    }
    .recent-post-img a img {
        width: 83px;
    }
    .recent-post-img {
        margin-right: 10px;
    }
    .single-comment-wrapper.ml-125 {
        margin-left: 0;
    }
    .link-post {
        padding: 53px 30px 57px;
    }
    .link-content > h3 {
        line-height: 30px;
    }
    .quote-post {
        padding: 54px 30px 57px 36px;
    }
    .blog-content > h2 {
        font-size: 24px;
    }
    .blog-wrapper .pagination-total-pages {
        display: block;
    }
    .blog-wrapper .pagination-total-pages {
        padding: 15px 15px 13px;
    }
    .blog-wrapper .pagination-style li a.prev-next {
        padding: 11px 12px;
    }
    .blog-wrapper .pagination-style li {
        margin: 0 5px 0 0;
    }
    .blog-wrapper .pagination-style {
        margin: 0 0 8px;
    }
    .single-blog-wrapper.mb-80 {
        margin-bottom: 50px;
    }
    .cart-shiping-update > a,
    .cart-clear > button,
    .cart-clear > a {
        padding: 18px 25px 19px;
    }
    .grand-totall {
        margin-top: 30px;
    }
    .checkout-login {
        margin-top: 40px;
    }
    .tab-content.tab-content-contact {
        margin-top: 40px;
    }
    .product-dec-slider {
        padding: 0 70px;
    }
    .product-dec-slider .product-dec-icon.product-dec-next {
        right: 50px;
    }
    .product-dec-slider .product-dec-icon {
        left: 50px;
    }
    .product-details-content {
        margin-top: 40px;
    }
    .shop-sidebar-mrg {
        margin-top: 40px;
    }
    .shorting-style select {
        width: 105px;
    }
    .product-shorting.shorting-style select {
        width: 80px;
    }
    .view-mode {
        margin-right: 15px;
    }
    .pagination-total-pages {
        padding: 15px 15px 13px;
    }
    #exampleModal .modal-dialog {
        width: 730px;
    }
    .stick .logo {
        margin: 5px 0 0;
    }
    .stick .header-cart {
        padding: 0px;
        transition: all .3s ease 0s;
    }    
    .stick.header-bottom {
        padding: 15px 0;
    }    
    .header-currency::after {
	  display: none;
	}
	.breadcrumb-area {
	  padding: 100px 0;
	}
    .breadcrumb-content h3 {
	  font-size: 30px;
	}
	.count-title h2 {
	  font-size: 44px;
	}
	.count-title > span {
	  font-size: 20px;
	}
	.product-details-content > h4 {
	  font-size: 24px;
	}
	.product-details-content > span {
	  font-size: 22px;
	}
	.small-title h2 {
	  font-size: 26px;
	}
	.contact-us {
	  padding: 70px 0;
	  padding-bottom: 80px;
	}
	.contact-map {
	  margin-bottom: 0;
	  padding-top: 30px;
	}
	form#contact-form {
	  margin-bottom: 35px;
	}
}


/* small mobile :320px. */

@media (max-width: 767px) {
	.mobile-menu-area {
        display: block;
    }
	.single-slider {
	  padding: 150px 0;
	}
	.slider-content > p {
	  max-width: 370px;
	}
	.header-currency {
	  padding: 0px;
	}
	.header-currency::after {
	  display: none;
	}
	.logo {
	  margin: 26px 0 0;
	}
	.product-area.pt-100.pb-95 {
	  padding-bottom: 55px;
	  padding-top: 60px;
	}
	.banner-area {
	  padding-bottom: 30px;
	  padding-top: 60px;
	}
	.product-area.pt-90.pb-65 {
	  padding-bottom: 25px;
	  padding-top: 55px;
	}
	.testimonials-area {
	  padding-bottom: 60px;
	  padding-top: 60px;
	}
	.blog-area {
	  padding-bottom: 30px;
	  padding-top: 60px;
	}
	.blog-thumb {
	  display: block;
	  overflow: hidden;
	}
	.newsletter-area {
	  padding-bottom: 60px;
	  padding-top: 60px;
	}
	.product-area.pt-90.pb-95 {
	  padding-bottom: 60px;
	  padding-top: 60px;
	}
	.cart-main-area {
	  padding: 60px 0;
	}
	.about-us-area {
	  padding: 60px 0;
	}
	.cart-main-area {
	  padding: 60px 0;
	}
	.overview-img {
	  margin-top: 30px;
	}
	.team-area {
	  padding-bottom: 35px;
	  padding-top: 55px;
	}
	.product-details {
	  padding: 60px 0;
	}
	.product-area {
	  padding: 0 0 60px;
	}
	.project-count-area {
	  padding-bottom: 30px;
	  padding-top: 50px;
	}
	.shop-page-area {
	  padding: 60px 0;
	}
	.contact-us {
	  padding: 55px 0;
	}
	.contact-map {
	  margin-bottom: 0;
	  padding-top: 25px;
	}
	.small-title h2 {
	  font-size: 22px;
	}
	form#contact-form {
	  margin-bottom: 35px;
	}
	.panel.panel-default:last-child {
	  margin-bottom: 0;
	}
	.checkout-area {
	  padding-bottom: 60px;
	  padding-top: 60px;
	}
	.login-register-area {
	  padding: 60px 0;
	}
	.product-details-content > span {
	  font-size: 22px;
	}
	.count-title h2 {
	  font-size: 46px;
	}
	.blog-author {
	  display: block;
	  overflow: hidden;
	}
	.breadcrumb-area {
	  padding: 100px 0;
	}
	.blog-page-area {
	  padding: 60px 0;
	}
	.blog-widget {
	  margin-bottom: 30px;
	}
	.blog-widget:last-child {
	  margin-bottom: 0;
	}
	.team-area .section-title {
	  font-size: 28px;
	}
	.blog-content h3 a {
	  font-size: 22px;
	}
	.newsletter-area .product-top-bar {
	  margin-bottom: 35px;
	}
    .welcome-area > p {
        text-align: center;
    }
    .account-curr-lang-wrap > ul > li::before {
        right: -5px;
    }
    .account-curr-lang-wrap ul li a {
        font-size: 13px;
    }
    .account-curr-lang-wrap ul li a i {
        font-size: 10px;
        margin-left: 2px;
    }
    .account-curr-lang-wrap ul li {
        margin-right: 6px;
    }
    .account-curr-lang-wrap ul li:last-child ul {
        left: -50px;
    }
    .main-menu {
        display: none;
    }
	/* .header-cart {
	  padding: 0 0 0 12px;
	} */
    .header-bottom-right {
        justify-content: flex-end;
    }
    .cart-text > span.digit {
        margin-bottom: 5px;
    }
    .cart-text > span {
        font-size: 13px;
    }
    .header-cart > a .cart-icon span {
        bottom: -7px;
        line-height: 21px;
    }
    .mean-container a.meanmenu-reveal {
        border: 1px solid #333;
        padding: 5px 6px 2px;
    }
    .mobile-menu .mean-nav ul.menu-overflow {
        height: 216px;
        margin-top: 10px;
        overflow-y: auto;
    }
    .shopping-cart-content {
        padding: 31px 20px 10px;
        right: -45px;
        width: 290px;
    }
    .slider-content h1 {
        font-size: 30px;
    }
    .slider-content h3 {
        font-size: 30px;
    }
    .section-border {
        margin-right: 0;
    }
    .section-title-wrap {
        display: block;
        float: inherit;
        text-align: center;
    }
    .section-title {
	  font-size: 24px;
	}
    .product-tab-list {
        display: flex;
        float: inherit;
        justify-content: center;
        margin-top: 15px;
        padding-left: 0;
        margin-bottom: 45px;
    }
    .product-nav .owl-nav {
        left: 0;
        text-align: center;
    }
	.single-testimonial > p {
	  max-width: 100%;
	  font-size: 20px;
	}
	.brand-logo-area {
	  padding-bottom: 60px;
	  padding-top: 60px;
	}
    .testimonial-active .owl-dots {
        margin: 20px 0 0;
    }
    .product-nav.best-selling-active .owl-nav,
    .product-nav.featured-product-active .owl-nav {
        top: -60px;
    }
    .best-selling-active {
        margin-top: 80px;
    }
    .deals-content {
        margin-top: 30px;
    }
    .deals-content > h2 {
        font-size: 27px;
        margin: 5px 0 10px;
    }
    .timer-style span {
        font-size: 17px;
        margin: 0 4px;
        padding: 7px 11px 6px;
    }
    .product-tab-list a {
        margin-left: 10px;
        margin-right: 10px;
    }
    .new-year-offer-content > h3 {
        font-size: 19px;
    }
    .payment-img.f-right {
        float: inherit;
        text-align: center;
        margin: 10px 0 0;
    }
    .copyright > p {
	  margin-bottom: 2px;
	  text-align: center;
	}
	.banner-content > h4 {
	  font-size: 30px;
	}
	.banner-content {
	  left: 25px;
	}
    .single-banner.mb-xs-banner.mb-30 {
        margin-bottom: 10px;
    }
    .account-curr-lang-wrap.f-right {
        display: flex;
        justify-content: center;
        float: inherit;
    }
    .slider-content.slider-animated-1.pl-30 {
        padding-left: 15px;
    }
    .slider-content h5 {
        font-size: 16px;
    }
    .timer-style {
        margin: 30px 0 30px;
    }
    .single-brand-logo {
        text-align: center;
    }
    .overview-content-2 > h2 {
        font-size: 23px;
        line-height: 1;
    }
    .overview-img {
        margin-top: 30px;
    }
	footer.footer-area {
	  padding-top: 60px;
	}
	.footer-top {
	  padding-bottom: 10px;
	}
    .single-testimonial > p {
        margin: 30px auto;
    }
    .blog-content > h2 {
	  font-size: 20px;
	}
	.footer-title > h4 {
	  font-size: 18px;
	}
    .importent-title > h4 {
        font-size: 17px;
        line-height: 30px;
    }
    .highlights-img {
        margin-right: 15px;
    }
    .dec-img.dec-mrg {
        margin: 30px 0 0;
    }
    .blog-dec-tags-social {
        display: block;
    }
    .blog-dec-tags {
        margin-bottom: 7px;
    }
    .administrator-wrapper {
        display: block;
    }
    .administrator-img {
        margin-bottom: 30px;
        margin-right: 0;
    }
    .administrator-content > h4 {
        margin-bottom: 10px;
    }
    .single-comment-wrapper {
        display: block;
    }
    .blog-comment-img {
        margin-bottom: 20px;
        margin-right: 0;
    }
    .single-comment-wrapper.ml-125 {
        margin-left: 0;
    }
    .blog-sidebar-wrapper.sidebar-mrg {
        margin-top: 40px;
    }
    .blog-instagram img {
        width: 70px;
    }
    .blog-gallery-slider .owl-nav div {
        font-size: 25px;
        left: 20px;
    }
    .blog-gallery-slider .owl-nav div.owl-next {
        right: 20px;
    }
    .blog-widget.mb-50.mrg-none {
        margin-bottom: 0;
    }
    .blog-reply-wrapper form .text-leave input {
        margin-top: 25px;
    }
    .link-post {
        padding: 43px 25px 47px;
    }
    .link-content > h3 {
        line-height: 30px;
        font-size: 17px;
    }
    .quote-post {
        padding: 43px 20px 47px 28px;
    }
    .quote-content > h3 {
        font-size: 16px;
    }
    .quote-post.mb-55 {
        margin-bottom: 30px;
    }
    .highlights-title-wrapper {
        margin: 30px 0 28px;
    }
    .blog-social ul li {
        line-height: 1;
        margin-left: 8px;
    }
    .blog-social > span {
        margin: 0 10px 0 0;
    }
    .pagination-total-pages {
        display: block;
    }
    .pagination-style li {
        margin: 5px 2px;
    }
    .pagination-total-pages {
        padding: 15px 10px 13px;
    }
    .single-blog-wrapper.mb-80 {
        margin-bottom: 40px;
    }
    .single-blog-wrapper.mb-40 {
        margin-bottom: 30px;
    }
    .single-blog-wrapper.mb-45 {
        margin-bottom: 35px;
    }
    .single-blog-wrapper.mb-50 {
        margin-bottom: 35px;
    }
    .blog-btn-social.mt-30 {
        margin-top: 20px;
    }
    .pagination-total-pages.mt-50 {
        margin-top: 40px;
    }
    .masonary-style .quote-post {
        padding: 44px 24px 47px 27px;
    }
    .cart-shiping-update-wrapper {
        display: block;
        padding: 30px 0 30px;
    }
    .cart-shiping-update > a,
    .cart-clear > button,
    .cart-clear > a {
        margin: 0 0 15px;
        padding: 18px 35px 19px;
    }
    .cart-tax,
    .discount-code-wrapper {
        padding: 45px 18px 50px;
    }
    .discount-code-wrapper {
        margin: 40px 0;
    }
    #payment-1 .panel-body {
        padding: 30px 12px;
    }
    .checkout-login {
        margin-top: 35px;
    }
    .billing-select {
        margin-bottom: 20px;
    }
    .contact-page-title h1 {
        font-size: 25px;
    }
    .tab-content.tab-content-contact {
        margin-top: 40px;
    }
    .contact-information.contact-mrg {
	  margin-top: 0;
	}
    .login-form-container {
        padding: 30px 20px;
    }
    .login-register-tab-list {
        margin-bottom: 30px;
    }
    h5.panel-title a {
        padding: 20px 40px;
    }
    .entries-wrapper::before {
        display: none;
    }
    .entries-wrapper {
        padding: 30px 10px;
    }
    .entries-info {
        padding: 0 10px 30px;
    }
    .product-details-content {
        margin-top: 40px;
    }
    .pro-dec-btn {
        left: 0;
        right: auto;
        top: -50px;
    }
    .rating-review {
        display: block;
        margin: 10px 0 12px;
    }
    .pro-dec-review {
        margin: 5px 0 0;
    }
    .in-stock {
        margin: 12px 0 3px;
    }
    .pro-dec-social li {
        margin: 0 6px 10px 0;
    }
    .description-review-topbar a {
        font-size: 17px;
        margin: 0 8px;
        padding-bottom: 10px;
    }
    .tab-content.description-review-bottom {
        padding: 30px 0 0px;
    }
    .ratting-star.f-left {
        display: block;
        float: inherit;
    }
    .ratting-author.f-right {
        float: left;
        margin: 5px 0 10px;
    }
    .shop-sidebar-mrg {
        margin-top: 40px;
    }
    .shop-topbar-wrapper {
        display: block;
        padding: 15px 15px 18px;
    }
    .view-mode {
        display: block;
        float: inherit;
        margin-right: 33px;
    }
    .shorting-style {
        margin-left: 0;
        margin-top: 10px;
    }
    .product-shorting.shorting-style select {
        width: 120px;
    }
    .shorting-style select {
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        width: 120px;
    }
    .product-list .product-wrapper {
        display: block;
    }
    .product-list .product-img {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    #exampleModal .modal-dialog {
        max-width: 100%;
        width: 100%;
    }
    .modal-body {
        padding: 30px 20px;
    }
    .product-thumbnail {
        margin-bottom: 30px;
    }
    .modal-pro-content h3 {
        font-size: 20px;
    }
    .contact-page-title.mb-40 {
        margin: 0 0 20px;
    }
    .footer-top.pb-20 {
        padding-bottom: 23px;
    }
    .dec-img-wrapper {
        margin: 36px 0 33px;
    }    
    .blog-comment-wrapper.mt-55 {
        margin-top: 32px;
    }
    .single-comment-wrapper.mt-50 {
        margin-top: 30px;
    }    
    .blog-reply-wrapper.mt-50 {
        margin-top: 30px;
    }    
    .blog-reply-wrapper > form {
        margin-top: 30px;
    }    
    .blog-widget.mb-50 {
        margin-bottom: 40px;
    }    
    .stick .logo {
        margin: 5px 0 0;
    }
    .stick .header-cart {
        padding: 0px;
        transition: all .3s ease 0s;
    }    
    .stick.header-bottom {
        padding: 15px 0;
    }  
    .testimonial-content-padding {
        padding: 30px 20px 33px;
    }
    .testimonial-3-content::before {
        left: 40%;
    }    
    .testimonial-2-img {
        flex: 0 0 75px;
        margin-right: 12px;
    }    
    .section-padding-none.mb-50 {
        margin-bottom: 25px;
    }      
    .section-padding-none.mb-45 {
        margin-bottom: 20px;
    }      
    .section-padding-none.mb-30 {
        margin-bottom: 10px;
    }    
    .testimonial-wrapper-3 {
        padding: 20px 20px 0;
    }    
    .testimonial-2-name h3, .single-testimonial-4 h4 {
        font-size: 17px;
    }    
    .testimonial-2-wrapper.mb-50 {
        margin-bottom: 30px;
    }    
    .blog-thumb img {
	  width: 100%;
	}
	.masonary-style .blog-content > h2 {
	  font-size: 20px;
	}
	.breadcrumb-content h3 {
	  font-size: 28px;
	}
	.count-title h2 {
	  font-size: 40px;
	}
	.count-title > span {
	  font-size: 18px;
	}
	.product-details-content > h4 {
	  font-size: 22px;
	}
    .wrapper-boxed-layout .header-left-button {
	  justify-content: baseline;
	}
	.product-top-bar {
	  margin-bottom: 40px;
	}
	.subscribe-form form .submit-button input {
	  padding: 15px 25px;
	}
	.section-title-wrap > p {
	  font-size: 14px;
	}
	.checkout-register h4.cart-bottom-title, .checkout-login h4.cart-bottom-title {
	  font-size: 14px;
	}
	.map-area {
	  height: 320px;
	}
}


/* ====================================
   PRODUCTS SECTION
   ==================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 15px;
}

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    .section-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .product-content {
        padding: 15px 10px;
    }
    
    .product-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .product-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .flavor-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Mobile View (up to 767px) */
@media (max-width: 767px) {
    .products-section {
        padding: 30px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 25px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .product-card {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 0;
    }
    
    .product-media {
        position: relative;
        overflow: hidden;
    }
    
    .product-media img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .product-content {
        padding: 15px;
        background: #fff;
    }
    
    .product-name {
        font-size: 18px;
        margin: 0 0 8px;
        color: #4b2e00;
    }
    
    .product-description {
        font-size: 14px;
        color: #666;
        margin: 0 0 12px;
        line-height: 1.5;
    }
    
    .flavor-tag {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(75, 46, 0, 0.9);
        color: #fff;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        z-index: 2;
    }
}

/* ====================================
   LARGE MOBILE :480px
   ==================================== */

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .account-curr-lang-wrap ul li {
        margin-right: 20px;
    }
    .account-curr-lang-wrap > ul > li::before {
        right: -12px;
    }
    .header-cart {
	  margin-right: 55px;
	}
    .header-bottom-right {
        justify-content: flex-end;
    }
    .payment-img img {
        width: auto;
    }
    .slider-content h1 {
        font-size: 40px;
    }
    .overview-content-2 > h2 {
        font-size: 30px;
    }
    .blog-dec-tags-social {
        display: flex;
    }
    .blog-dec-tags {
        margin-bottom: 0;
    }
    .cart-shiping-update > a,
    .cart-clear > button,
    .cart-clear > a {
        margin: 0 10px 15px 0;
        padding: 18px 20px 19px;
    }
    .product-list .product-img {
        flex: 0 0 220px;
        margin-right: 15px;
        margin-bottom: 0px;
    }
    .product-list-details > h4 {
        font-size: 17px;
    }
    .product-list .product-wrapper {
        display: flex;
    }
    .shorting-style {
        margin-right: 10px;
    }
    .testimonial-3-content::before {
        left: 46%;
    }
    .wrapper-boxed-layout .header-left-button {
	  justify-content: right;
	}
    .small-title h2 {
	  font-size: 24px;
	}
    
}

@media (max-width: 479px) {
	.logo {
		margin-top: 35px
	}
	.logo img {
		width: 70%
	}
	.header-cart {
		margin-right: 50px;
		padding-left: 12px
	}
}

@media (min-width: 1200px) {
  .nm-promo-carousel {
    background: #f3f3f6;
    padding: 34px 0 44px;
  }
  .nm-promo-carousel-inner {
    position: relative;
  }
  .nm-promo-swiper {
    padding: 8px 56px 34px;
  }
  .nm-promo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    background: #fff;
  }
  .nm-promo-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }
  .nm-promo-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  }
  .nm-promo-nav {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    margin-top: -34px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    z-index: 10;
    cursor: pointer;
  }
  .nm-promo-prev {
    left: 12px;
  }
  .nm-promo-next {
    right: 12px;
  }
  .nm-promo-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #4b2e23;
    border-bottom: 2px solid #4b2e23;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .nm-promo-next::before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .nm-promo-pagination {
    bottom: 0 !important;
  }
  .nm-promo-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(75, 46, 35, 0.35);
    opacity: 1;
    margin: 0 5px !important;
  }
  .nm-promo-pagination .swiper-pagination-bullet-active {
    background: #f66d2d;
  }
  .nm-promo-plus {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #ff4fa2;
    color: #fff;
    font-size: 30px;
    line-height: 52px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(255, 79, 162, 0.35);
    z-index: 12;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .nm-promo-carousel {
    background: #f3f3f6;
    padding: 28px 0 40px;
  }
  .nm-promo-carousel-inner {
    position: relative;
  }
  .nm-promo-swiper {
    padding: 8px 48px 32px;
  }
  .nm-promo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    background: #fff;
  }
  .nm-promo-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }
  .nm-promo-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  }
  .nm-promo-nav {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -32px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    z-index: 10;
    cursor: pointer;
  }
  .nm-promo-prev {
    left: 10px;
  }
  .nm-promo-next {
    right: 10px;
  }
  .nm-promo-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #4b2e23;
    border-bottom: 2px solid #4b2e23;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .nm-promo-next::before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .nm-promo-pagination {
    bottom: 0 !important;
  }
  .nm-promo-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(75, 46, 35, 0.35);
    opacity: 1;
    margin: 0 5px !important;
  }
  .nm-promo-pagination .swiper-pagination-bullet-active {
    background: #f66d2d;
  }
  .nm-promo-plus {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #ff4fa2;
    color: #fff;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(255, 79, 162, 0.35);
    z-index: 12;
  }
}

@media (max-width: 767px) {
  .nm-promo-carousel {
    background: #f3f3f6;
    padding: 22px 0 34px;
  }
  .nm-promo-carousel-inner {
    position: relative;
  }
  .nm-promo-swiper {
    padding: 6px 16px 32px;
  }
  .nm-promo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    background: #fff;
  }
  .nm-promo-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }
  .nm-promo-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  }

  /* On mobile, hide arrows to avoid overlap; swipe + dots handles navigation cleanly */
  .nm-promo-nav {
    display: none;
  }
  .nm-promo-pagination {
    bottom: 0 !important;
  }
  .nm-promo-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(75, 46, 35, 0.35);
    opacity: 1;
    margin: 0 5px !important;
  }
  .nm-promo-pagination .swiper-pagination-bullet-active {
    background: #f66d2d;
  }

  .nm-promo-plus {
    position: absolute;
    right: 14px;
    top: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #ff4fa2;
    color: #fff;
    font-size: 28px;
    line-height: 46px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(255, 79, 162, 0.35);
    z-index: 12;
  }
}

@media (min-width: 1200px) {
  .masala-carousel {
    background: #f3f3f6;
    padding: 36px 0 46px;
  }
  .masala-carousel-inner {
    position: relative;
  }
  .masala-swiper {
    padding: 10px 60px 38px;
  }
  .masala-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
  }
  .masala-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .masala-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(107, 68, 35, 0.92), rgba(107, 68, 35, 0));
    pointer-events: none;
  }
  .masala-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    z-index: 2;
  }

  .masala-nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -34px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    z-index: 10;
    cursor: pointer;
  }
  .masala-prev {
    left: 12px;
  }
  .masala-next {
    right: 12px;
  }
  .masala-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 3px solid #6B4423;
    border-bottom: 3px solid #6B4423;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .masala-next::before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .masala-pagination {
    bottom: 0 !important;
  }
  .masala-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(107, 68, 35, 0.30);
    opacity: 1;
    margin: 0 6px !important;
  }
  .masala-pagination .swiper-pagination-bullet-active {
    background: #E27A2E;
  }

  .masala-plus {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #ff4fa2;
    color: #ffffff;
    font-size: 32px;
    line-height: 54px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(255, 79, 162, 0.35);
    z-index: 12;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .masala-carousel {
    background: #f3f3f6;
    padding: 30px 0 40px;
  }
  .masala-carousel-inner {
    position: relative;
  }
  .masala-swiper {
    padding: 10px 52px 34px;
  }
  .masala-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
  }
  .masala-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .masala-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(107, 68, 35, 0.92), rgba(107, 68, 35, 0));
    pointer-events: none;
  }
  .masala-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    z-index: 2;
  }
  .masala-nav {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    margin-top: -32px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    z-index: 10;
    cursor: pointer;
  }
  .masala-prev {
    left: 10px;
  }
  .masala-next {
    right: 10px;
  }
  .masala-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 3px solid #6B4423;
    border-bottom: 3px solid #6B4423;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .masala-next::before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .masala-pagination {
    bottom: 0 !important;
  }
  .masala-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(107, 68, 35, 0.30);
    opacity: 1;
    margin: 0 6px !important;
  }
  .masala-pagination .swiper-pagination-bullet-active {
    background: #E27A2E;
  }
  .masala-plus {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #ff4fa2;
    color: #ffffff;
    font-size: 32px;
    line-height: 52px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(255, 79, 162, 0.35);
    z-index: 12;
  }
}

@media (max-width: 767px) {
  .masala-carousel {
    background: #f3f3f6;
    padding: 22px 0 34px;
  }

  .masala-carousel-inner {
    position: relative;
  }
  .masala-swiper {
    padding: 8px 16px 34px;
  }
  .masala-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
  }
  .masala-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
  }
  .masala-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    background: linear-gradient(to top, rgba(107, 68, 35, 0.92), rgba(107, 68, 35, 0));
    pointer-events: none;
  }
  .masala-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    z-index: 2;
  }

  .masala-nav {
    display: none;
  }
  .masala-pagination {
    bottom: 0 !important;
  }
  .masala-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(107, 68, 35, 0.30);
    opacity: 1;
    margin: 0 6px !important;
  }
  .masala-pagination .swiper-pagination-bullet-active {
    background: #E27A2E;
  }

  .masala-plus {
    position: absolute;
    right: 14px;
    top: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #ff4fa2;
    color: #ffffff;
    font-size: 30px;
    line-height: 46px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(255, 79, 162, 0.35);
    z-index: 12;
  }
}

/* Masala carousel image crispness (helps avoid “soft” look on transforms) */
.masala-card-img,
.nm-promo-img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

@supports (image-rendering: -webkit-optimize-contrast) {
  .masala-card-img,
  .nm-promo-img {
    image-rendering: -webkit-optimize-contrast;
  }
}

@media (min-width: 1200px) {
  .nm-hero-banner {
    padding: 22px 0 10px;
    background: #ffffff;
  }
  .nm-hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .nm-hero-banner {
    padding: 18px 0 8px;
    background: #ffffff;
  }
  .nm-hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  }
}

@media (max-width: 767px) {
  .nm-hero-banner {
    padding: 14px 0 6px;
    background: #ffffff;
  }

  /* Mobile-friendly crop: keep the banner readable without getting too short */
  .nm-hero-banner-img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: left center;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  }
}