     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family:
          "Lato",
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
        background-color: #ffffff;
        color: #1a2c3e;
        line-height: 1.5;
        font-weight: 400;
        overflow-x: hidden;
      }

      /* Loading indicator for smooth transitions - subtle progress bar */
      .page-loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #c62828, #ff6b6b, #c62828);
        z-index: 10000;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        pointer-events: none;
      }
      .page-loading.active {
        transform: scaleX(1);
      }

      /* Fade transition for content */
      .page-content {
        transition: opacity 0.25s ease-in-out;
        opacity: 1;
      }
      .page-content.fade-out {
        opacity: 0;
      }

      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Brand colors from logo: blue, red, white */
      :root {
        --primary-blue: #0a2b5e;
        --primary-red: #c62828;
        --white: #ffffff;
        --light-bg: #f8fafc;
        --border-light: #e9eef3;
        --text-dark: #1e2f3e;
        --text-muted: #4a5b6e;
        --card-shadow:
          0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
        --card-hover-shadow: 0 30px 45px -18px rgba(10, 43, 94, 0.15);
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        letter-spacing: -0.01em;
      }

      h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        color: var(--primary-blue);
        letter-spacing: -0.02em;
        border-left: 4px solid var(--primary-red);
        padding-left: 1rem;
      }

      /* UNIFIED NAVBAR */
      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 24px;
        max-width: 1340px;
        margin: 0 auto;
        background: var(--white);
        border-bottom: 1px solid var(--border-light);
        flex-wrap: wrap;
        gap: 1rem;
      }

      .logo {
        font-family: "Montserrat", sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-blue);
      }

      .logo span {
        font-weight: 800;
        color: var(--primary-red);
      }

      .nav-links {
        display: flex;
        gap: 1.8rem;
        align-items: center;
        flex-wrap: wrap;
      }

      .nav-item {
        position: relative;
      }

      .nav-links > a,
      .nav-item > a {
        font-family: "Montserrat", sans-serif;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.85rem;
        transition: color 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        display: inline-block;
        padding: 0.5rem 0;
        cursor: pointer;
      }

      .nav-links > a:hover,
      .nav-item > a:hover,
      .nav-links > a.active,
      .nav-item > a.active {
        color: var(--primary-red);
      }

      /* Dropdown Menu */
      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        min-width: 220px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-light);
        opacity: 0;
        visibility: hidden;
        transition:
          opacity 0.2s ease,
          visibility 0.2s ease;
        z-index: 1000;
      }

      .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
      }

      /* Items with submenus */
      .dropdown-item {
        position: relative;
        border-bottom: 1px solid var(--border-light);
      }

      .dropdown-item:last-child {
        border-bottom: none;
      }

      .dropdown-item > a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
        text-transform: none;
        color: var(--text-dark);
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        transition: color 0.2s, background 0.2s;
        cursor: pointer;
        border-bottom: none !important;
      }

      .sub-chevron {
        font-size: 0.6rem;
        color: var(--text-muted);
        flex-shrink: 0;
        transition: transform 0.18s, color 0.18s;
      }

      .dropdown-item:hover > a .sub-chevron {
        color: var(--primary-red);
        transform: translateX(2px);
      }

      /* Flyout submenu panel */
      .submenu-flyout {
        position: absolute;
        right: 100%;
        left: auto;
        top: -1px;
        min-width: 230px;
        max-height: 370px;
        overflow-y: auto;
        background: var(--white);
        border-radius: 12px;
        box-shadow: -8px 12px 30px rgba(0, 0, 0, 0.12);
        border: 1px solid var(--border-light);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.18s ease, visibility 0.18s ease;
        z-index: 1100;
        padding: 0.4rem 0;
        scrollbar-width: thin;
        scrollbar-color: var(--border-light) transparent;
      }

      .dropdown-item:hover .submenu-flyout {
        opacity: 1;
        visibility: visible;
      }

      .submenu-flyout .submenu-header {
        padding: 0.5rem 1rem 0.35rem;
        font-family: "Montserrat", sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--primary-blue);
        border-bottom: 1px solid var(--border-light);
        margin-bottom: 0.2rem;
      }

      .submenu-flyout a {
        display: block !important;
        padding: 0.55rem 1rem !important;
        font-size: 0.78rem !important;
        border-bottom: none !important;
        color: var(--text-dark);
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        transition: color 0.15s, background 0.15s;
        cursor: pointer;
        white-space: normal;
        line-height: 1.3;
      }

      .submenu-flyout a:hover {
        color: var(--primary-red) !important;
        background: rgba(198, 40, 40, 0.05) !important;
      }

      .dropdown-menu > a {
        display: block;
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
        text-transform: none;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-dark);
        text-decoration: none;
        font-family: "Montserrat", sans-serif;
        transition: color 0.2s;
        cursor: pointer;
      }

      .dropdown-menu > a:last-child {
        border-bottom: none;
      }

      .dropdown-menu > a:hover,
      .dropdown-item > a:hover {
        color: var(--primary-red);
        background: rgba(198, 40, 40, 0.05);
      }

      /* Main Products Grid */
      .main-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
      }

      .main-product-card {
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--card-shadow);
        cursor: pointer;
        text-decoration: none;
        display: block;
        color: inherit;
      }

      .main-product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--card-hover-shadow);
        border-color: var(--primary-red);
      }

      .main-product-image {
        height: 260px;
        background: linear-gradient(135deg, #eef2fa, #e2e8f2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4.5rem;
        color: var(--primary-red);
      }

      .main-product-info {
        padding: 1.5rem;
        text-align: center;
      }

      .main-product-info h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
      }

      .main-product-info p {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.4;
      }

      /* Category Header */
      .category-header {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 2rem;
        margin: 2rem 0;
      }

      .category-header h1 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1rem;
      }

      .category-header p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
        margin-bottom: 1rem;
      }

      /* Sub Products Grid */
      .sub-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
      }

      .sub-product-card {
        background: var(--white);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--card-shadow);
        cursor: pointer;
      }

      .sub-product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-hover-shadow);
        border-color: rgba(198, 40, 40, 0.3);
      }

      .sub-product-image {
        height: 270px;
        background: linear-gradient(135deg, #eef2fa, #e2e8f2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--primary-red);
      }

      .sub-product-info {
        padding: 1.2rem;
      }

      .sub-product-info h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
      }

      .sub-product-info p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.4;
      }

      /* Push Up Overlay */
      .product-overlay {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease;
      }

      .product-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      .overlay-container {
        background: white;
        width: 100%;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        height: 90vh;
        overflow-y: hidden;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
      }

      .product-overlay.active .overlay-container {
        transform: translateY(0);
      }

      .overlay-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
        background: white;
        position: sticky;
        top: 0;
        z-index: 10;
      }

      .overlay-header h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
      }

      .close-overlay {
        font-size: 1.6rem;
        cursor: pointer;
        color: var(--text-muted);
        transition: 0.2s;
      }

      .close-overlay:hover {
        color: var(--primary-red);
      }

      .overlay-body {
        padding: 2rem;
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .overlay-left {
        flex: 0 0 400px;
        max-width: 400px;
      }

      .overlay-icon {
        background: linear-gradient(135deg, #eef2fa, #e2e8f2);
        border-radius: 20px;
        width: 100%;
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: var(--primary-red);
        background-size: cover;
        background-position: center;
      }

      .overlay-right {
        flex: 1;
        min-width: 300px;
      }

      .overlay-desc {
        color: var(--text-dark);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-size: 1rem;
      }

      .overlay-materials {
        background: var(--light-bg);
        border-radius: 20px;
        padding: 1.5rem;
      }

      .overlay-materials h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary-blue);
      }

      .overlay-materials ul {
        list-style: disc;
        padding-left: 1.5rem;
        display: block;
      }

      .overlay-materials li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
        color: var(--text-dark);
      }

      /* Overlay Enquiry Button */
      .overlay-enquiry-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        margin-top: 1.5rem;
        padding: 0.85rem 2rem;
        background: var(--primary-red);
        color: #fff;
        border-radius: 40px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 0.92rem;
        text-decoration: none;
        letter-spacing: 0.3px;
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 14px rgba(198,40,40,0.25);
      }
      .overlay-enquiry-btn:hover {
        background: #b01c1c;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(198,40,40,0.35);
      }

      /* Back Button */
      .back-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: transparent;
        border: 1px solid var(--primary-red);
        color: var(--primary-red);
        padding: 0.6rem 1.2rem;
        border-radius: 40px;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        text-decoration: none;
        margin: 1rem 0;
        transition: 0.2s;
      }

      .back-button:hover {
        background: var(--primary-red);
        color: white;
      }

      /* Footer */
      footer {
        background: #0a2540;
        color: #eef2ff;
        padding: 3rem 24px 10px;
        margin-top: 3rem;
        border-top: 4px solid var(--primary-red);
      }

      .footer-content {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }

      .footer-col h4 {
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        letter-spacing: 0.5px;
      }

      .footer-col p {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #cddcec;
        margin-bottom: 0.5rem;
      }

      .footer-col .quote {
        font-style: italic;
        margin-top: 0.8rem;
        font-size: 0.85rem;
        color: #bdd3ec;
        border-left: 2px solid var(--primary-red);
        padding-left: 1rem;
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }

      .footer-links a {
        font-family: "Montserrat", sans-serif;
        color: #cddcec;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.2s;
        cursor: pointer;
      }

      .footer-links a:hover {
        color: var(--primary-red);
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }

      .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.8rem;
        color: #cddcec;
      }

      .contact-info i {
        width: 20px;
        color: var(--primary-red);
      }

      .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
      }

      .footer-social a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #cddcec;
        font-size: 1rem;
        transition: all 0.2s;
        text-decoration: none;
      }

      .footer-social a:hover {
        background: var(--primary-red);
        color: white;
      }

      .copyright {
        grid-column: span 4;
        text-align: center;
        padding-top: 2rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.7rem;
        color: #b9cfec;
      }

      /* Lazy load image effect */
      img.lazy {
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      img.lazy.loaded {
        opacity: 1;
      }

      @media (max-width: 992px) {
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
        }
        .copyright {
          grid-column: span 2;
        }
      }

      /* Hamburger button - hidden on desktop */
      .hamburger-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.4rem;
        order: 2;
      }

      .hamburger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-blue);
        border-radius: 2px;
        transition: all 0.3s ease;
      }

      .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .hamburger-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
      }

      .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      /* Spice section headers in grid */
      .spice-section-header {
        grid-column: 1 / -1;
        padding: 1.2rem 0 0.5rem;
        margin-top: 0.5rem;
      }

      .spice-section-header h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-blue);
        border-left: 4px solid var(--primary-red);
        padding-left: 1rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }

      .spice-section-header h3 i {
        color: var(--primary-red);
        font-size: 1rem;
      }

      /* Spice Tabs */
      .spice-tabs-container {
        margin: 1.5rem 0 2rem;
      }

      .spice-tabs-nav {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        border-bottom: 2px solid var(--border-light);
        padding-bottom: 0;
        margin-bottom: 1.5rem;
      }

      .spice-tab-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1.4rem;
        border: 2px solid var(--border-light);
        border-bottom: none;
        border-radius: 10px 10px 0 0;
        background: #f8fafc;
        color: var(--text-muted);
        font-family: "Montserrat", sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.25s ease;
        position: relative;
        bottom: -2px;
      }

      .spice-tab-btn i {
        font-size: 0.85rem;
      }

      .spice-tab-btn:hover {
        background: #eef2ff;
        color: var(--primary-blue);
        border-color: var(--primary-blue);
      }

      .spice-tab-btn.active {
        background: #fff;
        color: var(--primary-red);
        border-color: var(--primary-blue);
        border-bottom-color: #fff;
        z-index: 1;
      }

      .spice-tab-btn.active i {
        color: var(--primary-red);
      }

      .spice-tab-panel {
        display: none;
      }

      .spice-tab-panel.active {
        display: block;
        animation: fadeInTab 0.25s ease;
      }

      @keyframes fadeInTab {
        from { opacity: 0; transform: translateY(6px); }
        to   { opacity: 1; transform: translateY(0); }
      }

      /* Spice info section (bottom — synced with product tabs) */
      .spice-info-section {
        margin: 2rem 0 1rem;
      }

      .spice-info-panel {
        display: none;
      }

      .spice-info-panel.active {
        display: block;
        animation: fadeInTab 0.25s ease;
      }

      /* Spice info sections at bottom */
      .spices-info-sections {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin: 2.5rem 0;
      }

      .spices-info-box {
        background: var(--light-bg);
        border-radius: 16px;
        padding: 1.5rem 2rem;
        border: 1px solid var(--border-light);
      }

      .spices-info-box h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .spices-info-box h3 i {
        color: var(--primary-red);
      }

      .spices-info-box p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.5;
        margin-bottom: 0.8rem;
      }

      .spices-info-box ul {
        list-style: none;
        padding: 0;
      }

      .spices-info-box li {
        font-size: 0.85rem;
        color: var(--text-dark);
        padding: 0.3rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .spices-info-box li i {
        color: var(--primary-red);
        font-size: 0.75rem;
        flex-shrink: 0;
      }

      @media (max-width: 992px) {
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
          gap: 2rem;
        }
        .copyright {
          grid-column: span 2;
        }
        .spices-info-sections {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 768px) {
        .container {
          padding: 0 16px;
        }

        .spice-tabs-nav {
          gap: 0.4rem;
        }

        .spice-tab-btn {
          padding: 0.6rem 1rem;
          font-size: 0.8rem;
          border-radius: 8px 8px 0 0;
        }

        /* Navbar mobile */
        .navbar {
          flex-wrap: nowrap;
          padding: 0.8rem 16px;
          position: relative;
        }

        .hamburger-btn {
          display: flex;
        }

        .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: var(--white);
          border-top: 1px solid var(--border-light);
          border-bottom: 1px solid var(--border-light);
          flex-direction: column;
          align-items: stretch;
          gap: 0;
          padding: 0;
          z-index: 999;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-links.open {
          display: flex;
        }

        .nav-links > a {
          padding: 0.85rem 1.2rem;
          border-bottom: 1px solid var(--border-light);
          display: block;
          width: 100%;
        }

        .nav-item {
          width: 100%;
          position: static;
        }

        .nav-item > a {
          padding: 0.85rem 1.2rem;
          border-bottom: 1px solid var(--border-light);
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
        }

        .dropdown-chevron {
          transition: transform 0.3s ease;
        }

        .nav-item.open > a .dropdown-chevron {
          transform: rotate(180deg);
        }

        .dropdown-menu {
          position: static;
          box-shadow: none;
          opacity: 0;
          visibility: hidden;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease, opacity 0.2s ease;
          border-radius: 0;
          border: none;
          background: var(--light-bg);
          min-width: 100%;
        }

        .nav-item.open .dropdown-menu {
          opacity: 1;
          visibility: visible;
          max-height: 500px;
        }

        .dropdown-menu > a,
        .dropdown-item > a {
          padding: 0.7rem 1.2rem 0.7rem 2rem;
        }

        .submenu-flyout {
          display: none;
        }

        .sub-chevron {
          display: none;
        }

        .dropdown-item {
          border-bottom: 1px solid var(--border-light);
        }

        .dropdown-item:last-child {
          border-bottom: none;
        }

        .main-products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 1rem;
        }

        .sub-products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 1rem;
        }

        .overlay-container {
          max-height: 90vh;
        }

        .overlay-body {
          flex-direction: column;
          padding: 1.2rem;
        }

        .overlay-left {
          flex: 1;
          max-width: 100%;
        }

        .overlay-icon {
          height: 260px;
        }

        .overlay-right {
          flex: 1;
          min-width: 100%;
        }

        .overlay-enquiry-btn {
          width: 100%;
          justify-content: center;
        }

        .footer-content {
          grid-template-columns: 1fr;
          gap: 2rem;
          text-align: left;
        }

        .footer-col {
          padding: 0;
        }

        .footer-col .quote {
          padding-left: 0.8rem;
          font-size: 0.9rem;
          line-height: 1.7;
          margin-top: 1rem;
          word-wrap: break-word;
          overflow-wrap: break-word;
        }

        .footer-links {
          align-items: flex-start;
        }

        .contact-info p {
          justify-content: flex-start;
          text-align: left;
          word-wrap: break-word;
          overflow-wrap: break-word;
        }

        .footer-social {
          justify-content: flex-start;
        }

        .copyright {
          grid-column: span 1;
          text-align: center;
          padding-top: 1.5rem;
        }

        .spices-info-sections {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .container {
          padding: 0 12px;
        }

        .main-products-grid {
          grid-template-columns: 1fr;
        }

        .sub-products-grid {
          grid-template-columns: 1fr;
        }

        .overlay-body {
          padding: 1rem;
        }

        footer {
          padding: 2rem 12px 10px;
        }

        .footer-content {
          gap: 1.5rem;
        }

        .footer-col h4 {
          font-size: 1rem;
        }

        .footer-col p,
        .contact-info p {
          font-size: 0.8rem;
        }

        .footer-col .quote {
          font-size: 0.85rem;
        }
      }

      @media (max-width: 375px) {
        .container {
          padding: 0 10px;
        }

        footer {
          padding: 1.5rem 10px 10px;
        }

        .footer-col .quote {
          font-size: 0.8rem;
          line-height: 1.6;
        }
      }