/* Global Variables */
:root {
    /* Novozen Logo Colors */
    --primary-color: #1B4F91;
    /* Deep Royal Blue (Novo) */
    --primary-dark: #0f3d6e;
    --primary-light: #4DB8B1;
    /* Teal Cyan (Gradient) */

    --secondary-color: #2D8B33;
    /* Forest Green (Zen) */
    --secondary-light: #9BCB3C;
    /* Lime Green (Leaves) */

    --accent-color: #F7941E;
    /* Sun Orange Accent */

    --text-dark: #2d3436;
    /* Softer Dark */
    --text-light: #636e72;
    --text-white: #ffffff;
    --bg-light: #f8fbfb;
    --bg-white: #ffffff;
    --border-color: #ececec;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smoother interaction */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft Premium Shadow */
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    /* Modern rounded corners */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(27, 79, 145, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 79, 145, 0.4);
}

.btn-secondary {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(45, 139, 51, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 139, 51, 0.4);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-white);
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
    border-radius: var(--radius);
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-light);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    margin-bottom: 4rem;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    opacity: 0.9;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-social a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 79, 145, 0.4), rgba(77, 184, 177, 0.2));
    /* Lighter overlay for glass effect */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-top: 60px;
}

.hero-content .glass-card {
    text-align: center;
    /* Center align inside the glass card */
    padding: 2.5rem;
    /* More padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensures items are centered */
}


.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* Center buttons */
}

.hero-buttons .btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--text-white);
}


/* Features Section */
.features {
    background-color: var(--bg-white);
    margin-top: -80px;
    /* Overlap hero */
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e3f2fd, #f1f8e9);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 139, 51, 0.1);
    border-radius: 20px;
    z-index: -1;
}

.about-text h2.section-title::after {
    margin: 10px 0 0;
    /* Left align underline */
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.about-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Products Section */
.products {
    background-color: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Homepage category cards: single-row horizontal scroll */
.products .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.products .products-grid::-webkit-scrollbar {
    height: 6px;
}

.products .products-grid::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 3px;
}

.products .products-grid::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.products .product-card {
    min-width: 0;
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
}

.product-card {
    background: var(--text-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 250px;
    overflow: hidden;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 79, 145, 0.1);
    opacity: 0;
    transition: var(--transition);
}

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

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

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

.product-info {
    padding: 30px;
}

.product-info h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.product-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Partners Section */
.partners {
    background-color: var(--bg-light);
}

.partners-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.partner-logo {
    padding: 25px 40px;
    background-color: var(--text-white);
    border-radius: 12px;
    font-weight: 700;
    color: #95a5a6;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    color: var(--primary-color);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    padding-right: 20px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.contact-item .icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #e3f2fd, #e0f7fa);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--text-white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(27, 79, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-light));
    left: 0;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    display: block;
    padding: 18px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #f8f9fa;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(27, 79, 145, 0.1);
    transform: translateY(-2px);
}

/* Footer UI adjustment */
.footer {
    background-color: #0f1c2e;
    /* Darker, richer blue-black */
    color: #b0b8c4;
    padding-top: 100px;
    position: relative;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    /* Improved layout balance */
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
}

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

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.footer-col ul li a {
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary-light);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(27, 79, 145, 0.4);
}

.footer-bottom {
    background-color: #0a1320;
    padding: 25px 0;
    font-size: 0.9rem;
    color: #6c757d;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.zoom-in-effect {
    animation: zoomIn 0.8s ease-out forwards;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(27, 79, 145, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(27, 79, 145, 0.7);
    }

    100% {
        box-shadow: 0 0 5px rgba(27, 79, 145, 0.4);
    }
}

.glow-effect:hover {
    animation: glow 1.5s infinite;
}

/* Btn Link (used on product cards) */
.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

/* Nav link active state */
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Products Hero (products.html) */
.products-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fbfb 100%);
    padding-top: 60px;
    padding-bottom: 40px;
}

/* Back to Categories Link */
.back-to-categories {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.back-to-categories:hover {
    color: var(--primary-color);
}

/* Products Listing Section */
.products-listing {
    padding: 0 0 100px;
}

/* Product Filters */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f0f7ff;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(27, 79, 145, 0.3);
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.product-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tag--therapy {
    background: #e3f2fd;
    color: #1565c0;
}

.product-tag--form {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Product Generic Name */
.product-generic-name {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
}

/* Product Meta (pack size, strength) */
.product-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.product-meta span {
    display: inline-block;
    margin-right: 12px;
}

/* Staggered fade-in animation for product cards */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.product-card.card-animate {
    opacity: 0;
    animation: cardFadeIn 0.5s ease-out forwards;
}

/* ===== Responsive Overrides ===== */

/* Tablet and below */
@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    /* Show hamburger menu */
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile navigation - slide-in side drawer */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 80%;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        padding-top: 90px;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    /* Dark backdrop behind drawer */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 998;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        padding: 0 30px;
    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    .nav .nav-cta {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero {
        min-height: 600px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-content .glass-card {
        padding: 2.5rem;
    }

    .hero-content {
        margin-top: 0;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image::before {
        display: none;
    }

    .about-text h2.section-title::after {
        margin: 10px auto 0;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

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

/* Mobile phones */
@media (max-width: 600px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-content .glass-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Products page grid (stacks single column on mobile) */
    .products-listing .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Homepage category scroll: fixed width on mobile */
    .products .product-card {
        flex: 0 0 260px;
    }

    .product-info {
        padding: 20px;
    }

    /* Product Filters */
    .product-filters {
        gap: 8px;
        margin-bottom: 30px;
        padding: 0;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .products-hero {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .products-listing {
        padding-bottom: 60px;
    }

    /* Partners */
    .partners-wrapper {
        gap: 15px;
    }

    .partner-logo {
        padding: 15px 20px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    /* Contact */
    .contact-container {
        gap: 25px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .contact-item {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 14px;
        margin-bottom: 15px;
    }

    .contact-item .icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-item p,
    .contact-item h4 {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-info .section-title {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer {
        padding-top: 60px;
    }

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

    .footer-col h4 {
        margin-bottom: 15px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* Larger nav links on small phones for easier tapping */
    .nav-link {
        font-size: 1.5rem;
    }

    .nav-list {
        gap: 20px;
    }

    .nav .nav-cta {
        margin-top: 10px;
    }
}