html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0a2240;
    --teal: #007B8A;
    --teal-light: #00a0b0;
    --gold: #c9a84c;
    --white: #ffffff;
    --offwhite: #f5f7f9;
    --gray: #666;
    --light-gray: #e8ecef;
    --text: #1a1a2e;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ======= TOP BAR ======= */
.top-bar {
    background: var(--navy);
    color: #ccd6e0;
    font-size: 12px;
    padding: 6px 0;
}

.top-bar .inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #ccd6e0;
    text-decoration: none;
    margin-left: 18px;
    transition: color .2s;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-links {
    display: flex;
}

/* ======= HEADER ======= */
header:not(.page-header) {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1300px;
    /* Slightly wider for centered layout */
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    position: relative;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.header-left {
    justify-content: flex-end;
    padding-right: 35px;
}

.header-right {
    justify-content: flex-start;
    padding-left: 35px;
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-utility {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
}

.logo-icon {
    height: 45px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span:first-child {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span:last-child {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    font-weight: 600;
}

.header-left .nav-item a,
.header-right .nav-item a {
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-left .nav-item a:hover,
.header-right .nav-item a:hover {
    color: var(--teal);
}

/* ======= CATEGORY CIRCLES ======= */
.category-circles-bar {
    background: white;
    border-bottom: 1px solid #eee;
}

.circles-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: var(--navy) !important;
    gap: 10px;
    transition: transform 0.3s;
}

.circle-item:hover {
    transform: translateY(-5px);
}

.circle-img-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-item span {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 10px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--navy);
    transition: color 0.3s;
}

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

.nav-item {
    position: relative;
    overflow: visible;
}

.nav-item>a {
    color: var(--navy);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-item>a:hover {
    color: var(--teal);
}

.nav-item>a .arrow {
    font-size: 8px;
    opacity: 0.6;
}

.nav-item.has-dropdown>a .arrow {
    display: inline;
}

.nav-item:not(.has-dropdown)>a .arrow {
    display: none;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    z-index: 1100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown a {
    display: block;
    padding: 11px 20px;
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s, color .15s;
}

.dropdown a:hover {
    background: var(--offwhite);
    color: var(--teal);
}

.user-nav-item .dropdown {
    left: auto;
    right: 0;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
    font-size: 18px;
    transition: color .2s;
}

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

/* ======= HERO SLIDER ======= */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Match native banner ratio: 583/1600 = 36.4% */
    padding-bottom: 36.4%;
    height: 0;
}

.slide {
    position: absolute;
    inset: 0;
    display: none;
}

.slide.active {
    display: block;
    animation: fadeIn 0.7s ease;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-content,
.hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
}

.slide-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: var(--white);
    line-height: 1.2;
    max-width: 560px;
    margin-bottom: 18px;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 13px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .2s;
}

.btn-primary:hover {
    background: #e0bd6a;
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 11px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-left: 14px;
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.slide-visual {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    opacity: 0.15;
}

/* Slider dots */
.slider-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background .2s;
}

.dot.active {
    background: var(--gold);
}

/* ======= STATS BAR ======= */
.stats-bar {
    background: var(--navy);
    padding: 28px 0;
}

.stats-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ======= SECTION COMMON ======= */
section {
    padding: 70px 0;
}

.section-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

/* Category title moved to shopping section */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.teal-rule {
    width: 50px;
    height: 3px;
    background: var(--teal);
    margin-bottom: 20px;
}

/* ======= ABOUT SECTION ======= */
.about-section {
    background: var(--offwhite);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    background: linear-gradient(135deg, #0d3a6b 0%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.about-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img svg {
    width: 180px;
    opacity: 0.3;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 20px;
}

.about-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.about-badge .txt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ======= R&D PAGE REFINED LAYOUT ======= */
.page-header.rd-hero {
    background: linear-gradient(rgba(10, 34, 64, 0.85), rgba(10, 34, 64, 0.85)), url('assests/rd_hero_bg.png') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.page-header.rd-hero .section-title {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 24px;
}

.page-header.rd-hero .section-desc {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    font-size: 18px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
    border-bottom: 1px solid var(--light-gray);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
    position: relative;
}

.feature-visual-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--offwhite);
    background-image: radial-gradient(var(--light-gray) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.feature-row:hover .feature-visual-box {
    transform: scale(1.02);
}

.feature-row.reverse .feature-visual-box {
    box-shadow: -20px 20px 0px var(--gold);
}

.rd-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.rd-stat-item {
    background: var(--offwhite);
    padding: 20px;
    border-left: 3px solid var(--teal);
}

.rd-stat-item h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 5px;
}

.rd-stat-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.rd-check-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.rd-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray);
}

.rd-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* ======= THERAPEUTIC AREAS ======= */
.therapeutic {
    background: var(--white);
}

.ta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ta-card {
    border: 1px solid var(--light-gray);
    padding: 28px 24px;
    transition: box-shadow .2s, border-color .2s;
    cursor: default;
}

.ta-card:hover {
    box-shadow: 0 8px 30px rgba(0, 123, 138, 0.12);
    border-color: var(--teal-light);
}

.ta-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 123, 138, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

.ta-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.ta-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.ta-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 14px;
    transition: gap .2s;
}

.ta-card .learn-more:hover {
    gap: 10px;
}

/* ======= SHOPPING FUNCTIONALITY REFINED ======= */
.product-category-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.category-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--teal);
}


.product-category-section:last-child {
    border-bottom: none;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.product-item-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.product-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--teal);
}

.product-image-container {
    background: #fcfcfc;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

.product-image-container img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-item-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h4 {
    font-size: 14px;
    color: var(--navy);
    margin: 0 0 8px;
    line-height: 1.3;
    font-weight: 600;
    height: 36px;
    /* Allow for 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.product-weight {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: var(--teal);
    box-shadow: 0 4px 15px rgba(0, 123, 138, 0.3);
}

/* QUANTITY SELECTOR */
.qty-selector {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    height: 36px;
    width: 100%;
}

.qty-btn {
    flex: 1;
    height: 100%;
    border: none;
    background: none;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-value {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}

/* CART QUANTITY */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.cart-qty-btn:hover {
    background: var(--offwhite);
    border-color: var(--teal);
}

/* CART DRAWER */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy);
    color: var(--white);
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: #f9f9f9;
    border-radius: 4px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h5 {
    margin: 0 0 5px;
    font-size: 14px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
    background: var(--offwhite);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}

/* Removed duplicate .checkout-btn definition to avoid conflicts */

/* FLOATING CART ICON */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 123, 138, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s;
}

.floating-cart:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--navy);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

/* ======= PRODUCTS LAYOUT ======= */
.products-layout {
    display: flex;
    gap: 50px;
    padding: 20px 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--offwhite);
    padding: 30px;
    border-radius: 12px;
}

.products-sidebar h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    font-weight: 700;
}

.category-nav {
    list-style: none;
    padding: 0;
}

.category-nav li {
    margin-bottom: 8px;
}

.category-nav a {
    color: var(--gray);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
}

.category-nav a:hover,
.category-nav a.active {
    color: var(--teal);
    background: white;
    padding-left: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.products-main {
    flex: 1;
}

@media (max-width: 992px) {
    .products-layout {
        flex-direction: column;
    }

    .products-sidebar {
        width: 100%;
        position: sticky;
        top: 65px;
        margin-bottom: 20px;
        padding: 15px;
        z-index: 900;
        background: white;
        border-radius: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .products-sidebar h3 {
        display: none;
    }

    .category-nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 5px;
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
    }

    .category-nav::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome/Safari */
    }

    .category-nav li {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .category-nav a {
        padding: 8px 15px;
        white-space: nowrap;
        font-size: 13px;
        border: 1px solid #eee;
    }
}

/* ======= CHECKOUT PAGE ======= */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.checkout-section {
    background: var(--white);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 24px;
}

.checkout-section h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--offwhite);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--teal);
    outline: none;
}

.order-summary-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 10px;
}

.payment-options {
    margin-top: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: var(--teal);
    background: var(--offwhite);
}

.payment-option.active {
    border-color: var(--teal);
    background: rgba(0, 123, 138, 0.05);
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.place-order-btn:hover {
    background: #006875;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

section.global {
    background-color: var(--navy) !important;
    color: white !important;
}

section.global .section-title {
    color: white !important;
}

section.global .section-desc {
    color: rgba(255, 255, 255, 0.8) !important;
}

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.region-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.region-item {
    border-left: 3px solid var(--teal);
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    transition: background 0.3s;
}

.region-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.region-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: white !important;
    margin-bottom: 3px;
}

.region-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7) !important;
}

.world-map {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(0, 123, 138, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.map-dots {
    position: absolute;
    inset: 0;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 0.8
    }

    100% {
        transform: scale(2.5);
        opacity: 0
    }
}

/* ======= NEWS ======= */
.news {
    background: var(--offwhite);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: white;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: box-shadow .2s;
}

.news-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 180px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.news-body {
    padding: 20px;
}

.news-date {
    font-size: 11px;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.news-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 14px;
    letter-spacing: 0.5px;
}

/* ======= SUSTAINABILITY ======= */
.sustainability {
    background: linear-gradient(135deg, #004d5a 0%, var(--teal) 100%);
    color: white;
    padding: 70px 0;
}

.sust-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sust-content .section-title {
    color: white;
}

.sust-content .section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.sust-content .teal-rule {
    background: var(--gold);
}

.sust-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.pillar {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pillar-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.pillar h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.pillar p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ======= FOOTER ======= */
footer {
    background: #07182e;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-brand .logo-text span {
    color: white;
}

.footer-brand .logo-text span:first-child {
    font-weight: 700;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    transition: color .3s, transform .3s;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ======= QUICK LINKS ======= */
.quick-links-bar {
    background: var(--teal);
    padding: 0;
}

.ql-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
}

.ql-item {
    flex: 1;
    padding: 18px 20px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ql-item:last-child {
    border-right: none;
}

.ql-item:hover {
    background: rgba(0, 0, 0, 0.12);
}

.ql-item .ql-icon {
    font-size: 18px;
}

.page-header {
    background: var(--navy);
    padding: 40px 0;
    color: white;
}

.page-header.products-hero {
    background: linear-gradient(rgba(10, 34, 64, 0.8), rgba(10, 34, 64, 0.8)), url('assests/products_hero_bg.png') center/cover no-repeat;
    padding: 50px 0;
}

.page-header .section-inner {
    text-align: center;
}

.page-header .section-title {
    color: white;
    font-size: 40px;
    margin-bottom: 5px;
}

.page-header .section-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 100%;
    font-size: 16px;
}

.content-section {
    padding: 40px 0 70px;
}

.content-section .section-inner {
    max-width: 1400px;
}

.products-main .product-category-section .section-inner {
    max-width: 100%;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 20px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--navy);
}

.btn-submit {
    background: var(--teal);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background: var(--teal-light);
}

.map-container {
    height: 400px;
    background: var(--light-gray);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid var(--light-gray);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 18px;
    margin: 15px 0;
}

.product-card p {
    font-size: 14px;
    padding: 0 15px 15px;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.manufacturing-grid img {
    width: 100%;
    border-radius: 4px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.cert-item img {
    height: 80px;
    margin-bottom: 10px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sustainability-grid img {
    width: 100%;
    border-radius: 4px;
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.our-story-grid img {
    width: 100%;
    border-radius: 4px;
}

.our-divisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.our-reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.our-reach-grid img {
    width: 100%;
    border-radius: 4px;
}

.food-spices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.food-spices-grid img {
    width: 100%;
    border-radius: 4px;
}

.apis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.apis-grid img {
    width: 100%;
    border-radius: 4px;
}

.drinking-water-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.drinking-water-grid img {
    width: 100%;
    border-radius: 4px;
}

.protein-powder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.protein-powder-grid img {
    width: 100%;
    border-radius: 4px;
}

.manufacturing-units-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.manufacturing-units-grid img {
    width: 100%;
    border-radius: 4px;
}

.quality-assurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.quality-assurance-grid img {
    width: 100%;
    border-radius: 4px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.certifications-grid img {
    height: 80px;
    margin-bottom: 10px;
}

/* ======= SHOPPING ENHANCEMENTS ======= */
.cat-highlight-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-highlight-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cat-highlight-card:hover img {
    opacity: 0.5;
    transform: scale(1.1);
}

.cat-highlight-card img {
    transition: all 0.6s ease;
}

.benefit-item {
    padding: 10px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.hero-content h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Benefits Bar */
.benefits-bar {
    background: var(--navy);
    padding: 30px 0;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

/* Category Highlights */
.categories-section {
    padding-bottom: 100px;
}

.categories-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Divisions */
.therapeutic {
    background: var(--offwhite);
    padding: 100px 0;
}

.ta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 2100;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

body.cart-open .cart-drawer {
    right: 0;
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

#closeCart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
}

.cart-items-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy) !important;
}

.cart-total-row #cartTotal {
    color: var(--teal) !important;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: #ffffff !important;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    text-align: center;
    text-decoration: none;
}

.checkout-btn:hover {
    background: var(--teal-light);
}

/* Global Reach */
.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.region-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.world-map {
    background: var(--navy);
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* News/Story */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {

    .global-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .region-list {
        grid-template-columns: 1fr;
    }

    .world-map {
        aspect-ratio: 4/3;
    }
}

/* Category Highlights Refined */
.categories-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cat-highlight-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    transition: transform 0.3s;
}

.cat-highlight-card:hover {
    transform: translateY(-5px);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.5s;
}

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

.cat-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    z-index: 2;
}

.cat-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.cat-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-link:hover {
    text-decoration: underline;
}

/* Desktop only elements */
@media (min-width: 992px) {

    .mobile-menu-btn,
    .mobile-drawer,
    .mobile-overlay {
        display: none !important;
    }
}

/* Desktop only elements */
@media (min-width: 992px) {

    .mobile-menu-btn,
    .mobile-drawer,
    .mobile-overlay {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .cat-highlight-card {
        height: 280px;
    }

    .top-bar .inner span {
        display: none;
    }

    .top-bar .inner {
        justify-content: center;
    }

    .top-bar a {
        margin: 0 10px;
    }

    .header-inner {
        height: 60px;
        padding: 0 15px;
    }

    header .logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .logo-text span:first-child {
        font-size: 16px;
    }

    .logo-text span:last-child {
        font-size: 8px;
    }

    .logo-icon {
        height: 32px;
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 20px;
        color: var(--navy);
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .header-utility {
        position: static;
        transform: none;
        display: flex;
        align-items: center;
        gap: 15px;
        z-index: auto;
    }

    .header-actions {
        gap: 15px;
    }

    .header-actions .search-btn {
        display: none;
    }

    /* Mobile Drawer */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100%;
        background: white;
        z-index: 2100;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .mobile-drawer.active {
        left: 0;
    }

    .mobile-drawer-header {
        padding: 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-drawer-header .logo {
        position: static;
        transform: none;
    }

    .mobile-drawer-header .logo span {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: var(--navy);
        font-size: 18px;
    }

    .mobile-drawer-header .close-btn {
        background: none;
        border: none;
        font-size: 30px;
        color: var(--gray);
        cursor: pointer;
    }

    .mobile-drawer-body {
        flex: 1;
        overflow-y: auto;
        padding: 20px 0;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid #f9f9f9;
    }

    .mobile-nav-list li a,
    .submenu-header a {
        display: block;
        padding: 15px 25px;
        color: var(--navy);
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
    }

    .submenu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .submenu-toggle {
        padding: 15px 25px;
        color: var(--gray);
        cursor: pointer;
        transition: transform 0.3s;
    }

    .mobile-nav-list li.active .submenu-toggle {
        transform: rotate(180deg);
    }

    .mobile-nav-list li.active .submenu {
        display: block;
    }

    .submenu {
        display: none;
        background: #f8fafc;
        list-style: none;
        padding: 0;
    }

    .submenu li a {
        padding: 12px 40px;
        font-size: 14px;
        font-weight: 400;
    }

    /* Hero Responsive */
    .hero {
        padding-bottom: 48% !important;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 14px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Category Circles */
    .category-circles-bar {
        overflow: hidden !important;
        background: white;
    }

    .circles-grid {
        display: flex !important;
        justify-content: space-around !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        padding: 15px 8px !important;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .circle-item {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .circle-img-wrapper {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50%;
        overflow: hidden;
    }

    .circle-item span {
        font-size: 10px !important;
        font-weight: 600 !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.2 !important;
        display: block !important;
        width: 100% !important;
        margin-top: 5px;
    }

    /* Category Highlights */
    .categories-highlight-grid {
        grid-template-columns: 1fr;
    }

    /* Divisions */
    .ta-grid {
        grid-template-columns: 1fr;
    }

    /* Product Grids */
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-item-card {
        padding: 12px;
    }

    .product-info h4 {
        font-size: 15px;
    }

    .add-to-cart-btn {
        padding: 10px;
        font-size: 12px;
    }

    /* Benefits Bar */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Cart Drawer */
    #cartDrawer {
        width: 400px !important;
        max-width: 100% !important;
        right: -450px !important;
        /* Start offscreen */
    }

    /* Overriding cart.js logic if needed */
    body.cart-open #cartDrawer {
        right: 0 !important;
    }

    /* Products Sidebar */
    .products-layout {
        flex-direction: column;
    }

    .products-sidebar {
        width: 100%;
        margin-bottom: 20px;
        position: sticky;
        top: 60px;
        background: white;
        z-index: 100;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .products-sidebar h3 {
        display: none;
    }

    .category-nav {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 5px 15px;
        scrollbar-width: none;
    }

    .category-nav::-webkit-scrollbar {
        display: none;
    }

    .category-nav li {
        margin: 0;
        white-space: nowrap;
    }

    .category-nav a {
        padding: 8px 16px;
        border: 1px solid #eee;
        border-radius: 20px;
        font-size: 13px;
    }

    .category-nav a.active {
        background: var(--teal);
        color: white;
        border-color: var(--teal);
    }

    /* Product Details */
    .pd-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .pd-title {
        font-size: 32px;
    }

    /* Checkout */
    .checkout-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .benefits-bar {
        padding: 20px 0 !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px 10px !important;
    }

    .benefit-item {
        padding: 4px !important;
    }

    .benefit-item div:first-child {
        font-size: 20px !important;
        /* Scale down icons */
        margin-bottom: 6px !important;
    }

    .benefit-item div:last-child {
        font-size: 9.5px !important;
        /* Scale down text */
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
    }
}

/* WhatsApp Widget Styles */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.wa-float-btn:hover {
    transform: scale(1.08);
    background: #20ba5a;
}

.wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wa-pulse-anim 2s infinite;
    pointer-events: none;
}

@keyframes wa-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: wa-slide-up 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes wa-slide-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wa-popup-header {
    background: #075e54;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wa-header-info {
    text-align: left;
}

.wa-header-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.wa-header-info span {
    font-size: 11px;
    opacity: 0.8;
}

.wa-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.wa-close-btn:hover {
    opacity: 1;
}

.wa-popup-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
}

.wa-popup-body p {
    background: white;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    text-align: left;
}

.wa-popup-footer {
    padding: 15px 20px;
    background: white;
    display: flex;
    justify-content: center;
}

.wa-chat-btn {
    width: 100%;
    background: #25d366;
    color: white !important;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.wa-chat-btn:hover {
    background: #20ba5a;
}

/* Adjust WhatsApp widget position on smaller mobile devices */
@media (max-width: 480px) {
    .wa-widget-container {
        bottom: 20px;
        left: 20px;
    }

    .wa-popup {
        width: 280px;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN ADDITIONS & MOBILE FRIENDLINESS
   ========================================================================== */

/* Base classes styled for Desktop */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.pillar-card {
    border: 1px solid #eee;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.stats-mini-grid .stat-item {
    border-left: 3px solid var(--teal);
    padding-left: 15px;
}

.manufacturing-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.highlight-card {
    background: var(--offwhite);
    padding: 30px;
    border-radius: 8px;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.blog-details-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

/* Responsive Overrides (max-width: 991px) */
@media (max-width: 991px) {

    /* Grids previously defined as 1fr 1fr but missing mobile viewports */
    .our-story-grid,
    .our-divisions-grid,
    .our-reach-grid,
    .food-spices-grid,
    .apis-grid,
    .drinking-water-grid,
    .protein-powder-grid,
    .manufacturing-units-grid,
    .quality-assurance-grid,
    .certifications-grid,
    .manufacturing-grid,
    .sustainability-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .our-story-grid img,
    .our-reach-grid img,
    .food-spices-grid img,
    .apis-grid img,
    .drinking-water-grid img,
    .protein-powder-grid img,
    .manufacturing-units-grid img,
    .quality-assurance-grid img,
    .manufacturing-grid img,
    .sustainability-grid img {
        margin-top: 15px;
    }

    /* Sustainability grids */
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }

    .pillar-card {
        padding: 30px 20px !important;
    }

    .sust-inner {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .sust-pillars {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .sust-visual {
        display: none !important;
    }

    /* Manufacturing units highlights */
    .stats-mini-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .manufacturing-highlights {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }

    /* Careers section */
    .job-card-header {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }

    .job-card-header button {
        width: 100% !important;
        text-align: center !important;
        margin-top: 10px;
    }

    .job-form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Feature row inside Divisions */
    .feature-row {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 40px 0 !important;
    }

    .feature-row.reverse {
        flex-direction: column !important;
    }

    .feature-visual {
        width: 100% !important;
    }

    .feature-visual-box {
        aspect-ratio: 16/9 !important;
        box-shadow: 10px 10px 0px var(--teal) !important;
    }

    .feature-row.reverse .feature-visual-box {
        box-shadow: -10px 10px 0px var(--gold) !important;
    }

    /* Blog pages */
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    }

    .blog-details-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Account layout responsiveness */
    .account-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin: 20px auto !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .order-header,
    .order-body {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .order-meta-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .summary-box {
        align-items: stretch !important;
    }

    .summary-row {
        justify-content: space-between !important;
        gap: 0 !important;
    }
}

/* Responsive Overrides (max-width: 480px) */
@media (max-width: 480px) {

    /* Product details enhancements */
    .pd-actions {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .qty-selector {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .qty-btn {
        flex: 1 !important;
    }

    .pd-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* Responsive Overrides (max-width: 576px) for Premium Phone View */
@media (max-width: 576px) {

    /* Full screen cart drawer for mobile phones to prevent layout truncation */
    #cartDrawer {
        width: 100% !important;
        max-width: 100% !important;
        right: -100% !important;
        /* Move completely offscreen relative to screen width */
    }

    body.cart-open #cartDrawer {
        right: 0 !important;
    }

    /* Make cart item details comfortable on mobile viewports */
    .cart-item {
        gap: 10px !important;
        padding-bottom: 15px !important;
        margin-bottom: 15px !important;
    }

    .cart-item img {
        width: 60px !important;
        height: 60px !important;
    }

    /* Compact category circles for mobile screens */
    .circles-grid {
        gap: 6px !important;
        padding: 12px 4px !important;
    }

    .circle-img-wrapper {
        width: 48px !important;
        height: 48px !important;
    }

    .circle-item span {
        font-size: 8.5px !important;
        margin-top: 3px;
    }
}