/* ===============================================
   SWASTHYA NATURALS - COMPLETE REDESIGN
   Modern, Clean, Mobile-First Approach
   Inspired by Organic Mandya (but better!)
   =============================================== */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Deep Green Theme */
    --primary-green: #033923;
    --primary-green-dark: #022a1a;
    --primary-green-light: #05563b;

    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-yellow: #ffc107;

    /* Neutral Colors */
    --text-dark: #2c3e50;
    --text-gray: #7e7e7e;
    --text-light: #999;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-light: #fafafa;
    --border-color: #e0e0e0;

    /* Typography */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50%;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--primary-green);
    color: white;
    padding: var(--spacing-xs) 0;
    text-align: center;
    font-size: 0.875rem;
}

.announcement-content p {
    margin: 0;
}

.announcement-content strong {
    font-weight: 700;
    color: var(--accent-yellow);
}

/* ===== HEADER ===== */
.header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}

/* Logo */
.logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

.logo-main {
    color: var(--primary-green);
}

.logo-accent {
    color: var(--accent-orange);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 400;
}

/* Search Box */
.search-box {
    display: none; /* Hidden on mobile */
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(3, 57, 35, 0.1);
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 var(--spacing-sm);
    color: var(--text-gray);
    transition: var(--transition);
}

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

/* Header Actions */
.header-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem var(--spacing-sm);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.875rem;
}

.header-btn:hover {
    background: var(--bg-gray);
    color: var(--primary-green);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-orange);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-text {
    display: none; /* Hidden on mobile */
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

/* Navigation */
.main-nav {
    border-top: 1px solid var(--border-color);
    background: var(--bg-gray);
    display: none; /* Hidden on mobile */
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-link {
    white-space: nowrap;
    padding: 0.5rem var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    background: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: var(--spacing-lg) 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 450px;
    margin-right: auto;
}

.hero-text {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-eyebrow {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-orange);
    line-height: 1.2;
}

.kannada-accent {
    display: block;
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 0.375rem;
    font-family: 'Dancing Script', cursive;
    line-height: 1;
    letter-spacing: -1px;
}

.location-emphasis {
    display: block;
    font-size: clamp(1.125rem, 3vw, 1.875rem);
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 0.25rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.8125rem;
}

.hero-feature svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

/* ===== COASTAL BACKGROUND - LOW OPACITY SLIDESHOW ===== */
/* Background Photo Container - Full Width */
.coastal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Individual Background Photos */
.bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    /* Handpainted filter effect */
    filter:
        contrast(1.15)
        saturate(0.85)
        brightness(1.05)
        sepia(0.12);
}

/* Slideshow Animation - Each photo shows for 4 seconds */
.bg-photo-1 {
    animation: photoFade 24s infinite;
    animation-delay: 0s;
}

.bg-photo-2 {
    animation: photoFade 24s infinite;
    animation-delay: 4s;
}

.bg-photo-3 {
    animation: photoFade 24s infinite;
    animation-delay: 8s;
}

.bg-photo-4 {
    animation: photoFade 24s infinite;
    animation-delay: 12s;
}

.bg-photo-5 {
    animation: photoFade 24s infinite;
    animation-delay: 16s;
}

.bg-photo-6 {
    animation: photoFade 24s infinite;
    animation-delay: 20s;
}

@keyframes photoFade {
    0% { opacity: 0; }
    4% { opacity: 0.7; }
    16% { opacity: 0.7; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}

/* Light overlay for text readability */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0) 70%
    );
    z-index: 2;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn-add-cart {
    width: 100%;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-add-cart:hover {
    background: var(--primary-green);
    color: white;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-green);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    background: var(--bg-gray);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.category-count {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.filter-tabs {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.filter-tab {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--primary-green);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.product-badge.new {
    background: var(--accent-orange);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: var(--spacing-md);
}

.product-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: var(--accent-yellow);
    font-size: 0.875rem;
}

.rating-count {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.product-unit {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.trust-item {
    text-align: center;
    padding: var(--spacing-md);
}

.trust-item svg {
    color: var(--primary-green);
    margin: 0 auto var(--spacing-sm);
}

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    gap: var(--spacing-lg);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.stat p {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-green);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.newsletter-content p {
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    flex-direction: column;
}

.newsletter-form input {
    padding: 0.875rem var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn-primary {
    background: white;
    color: var(--primary-green);
}

.newsletter-form .btn-primary:hover {
    background: var(--bg-light);
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: var(--text-dark);
    color: #ccc;
}

.footer-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-col p {
    color: #999;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-col ul li {
    color: #999;
    font-size: 0.9375rem;
}

.footer-col ul a {
    color: #999;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

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

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

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
    font-size: 0.875rem;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: 2rem;
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.modal-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-green);
}

.modal-content p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.pincode-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.pincode-form input {
    flex: 1;
    padding: 0.875rem var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.pincode-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.pincode-result {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.pincode-result.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.pincode-result.error {
    background: #ffebee;
    color: #c62828;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .announcement-bar {
        font-size: 0.9375rem;
    }

    .mobile-menu-btn {
        display: none;
    }

    .search-box {
        display: flex;
    }

    .location-text {
        display: inline;
    }

    .main-nav {
        display: block;
    }

    .hero-section {
        min-height: 520px;
    }

    .hero-content {
        max-width: 480px;
    }

    .hero-text {
        padding: var(--spacing-lg);
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .filter-tabs {
        justify-content: flex-end;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        flex: 1;
    }

    .newsletter-form .btn-primary {
        flex-shrink: 0;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Desktop - 992px and up */
@media (min-width: 992px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    .header-content {
        padding: var(--spacing-md) 0;
    }

    .hero-section {
        min-height: 550px;
        padding: var(--spacing-xl) 0;
    }

    .hero-content {
        max-width: 520px;
    }

    .hero-text {
        padding: var(--spacing-xl);
    }

    .hero-eyebrow {
        font-size: 1rem;
    }

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

    .kannada-accent {
        font-size: 3.5rem;
    }

    .location-emphasis {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-eyebrow {
        font-size: 1.0625rem;
    }

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

    .kannada-accent {
        font-size: 4rem;
    }

    .location-emphasis {
        font-size: 2.25rem;
    }
}

/* Extra Large Desktop - 1400px and up */
@media (min-width: 1400px) {
    .hero-eyebrow {
        font-size: 1.125rem;
    }

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

    .kannada-accent {
        font-size: 4.5rem;
    }

    .location-emphasis {
        font-size: 2.625rem;
    }
}

/* Loading Message */
.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xl) 0;
    color: var(--text-gray);
    font-size: 1.125rem;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xl) 0;
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
