/* ===== style.css for African Products Global Marketplace (Fixed Grid Layout) ===== */
:root {
    --primary-green: #055440;
    --accent-orange: #E88824;
    --brown-accent: #643919;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --background-gray: #f5f5f5;
    --background-black: #000000;
    --card-shadow: 0 15px 35px rgba(5, 84, 64, 0.1);
    --card-shadow-hover: 0 25px 50px rgba(5, 84, 64, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 25px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ===== CLEAN WHITE BACKGROUND FOR INDEX PAGE ===== */
.clean-white-bg {
    background: #ffffff !important;
}

.clean-white-bg::before {
    display: none !important;
}

.container {
    position: relative;
    z-index: 2;
}

/* ===== NEW HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.95) 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 84, 64, 0.1);
    border: 1px solid rgba(5, 84, 64, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    animation: pulse 2s infinite;
    color: var(--accent-orange);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: var(--text-primary);
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.hero-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(5, 84, 64, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(232, 136, 36, 0.4);
    color: white;
}

.btn-outline {
    background: var(--background-white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(5, 84, 64, 0.15);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(5, 84, 64, 0.3);
}

/* ===== ENHANCED HERO STATS WITH ANIMATION ===== */
.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.stat-number.counting {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== HERO VISUAL ELEMENTS ===== */
.hero-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-product {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(5, 84, 64, 0.2);
    animation: float 6s ease-in-out infinite;
    background: white;
    border: 3px solid rgba(5, 84, 64, 0.1);
}

.floating-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-product-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.floating-product-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1.5s;
}

.floating-product-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 3s;
}

.floating-product-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(5, 84, 64, 0.2);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 70px 0;
    background: var(--background-light);
}

.category-card {
    background: var(--background-white);
    border: 1px solid rgba(5, 84, 64, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    margin: 26px 10px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow-hover);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(5, 84, 64, 0.2);
}

.category-card:hover .category-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 25px rgba(5, 84, 64, 0.3);
}

.category-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== PRODUCTS SECTION WITH FIXED GRID LAYOUT ===== */
.products-section {
    padding: 70px 0;
    background: var(--background-white);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--background-white);
    border: 2px solid rgba(5, 84, 64, 0.2);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(5, 84, 64, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 84, 64, 0.2);
}

/* ===== HYBRID PRODUCTS GRID SYSTEM (BULLETPROOF) ===== */
.products-grid-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.products-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
    transition: all 0.5s ease;
    width: 100%;
}

/* Fallback for older browsers */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 0;
}

/* Modern browsers with grid support */
@supports (display: grid) {
    .products-grid {
        display: grid;
        margin: 0;
        gap: 20px;
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ===== PRODUCT ITEM WRAPPER (HYBRID APPROACH) ===== */
.product-item {
    position: relative;
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Flexbox fallback */
    width: calc(16.666667% - 20px);
    margin: 0 10px 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(16.666667% - 20px);
    flex: 0 0 calc(16.666667% - 20px);
    max-width: calc(16.666667% - 20px);
}

/* Grid support override */
@supports (display: grid) {
    .product-item {
        width: 100%;
        margin: 0;
        flex: none;
        max-width: none;
    }
}

.product-item.filter-hide {
    opacity: 0 !important;
    transform: scale(0.8) translateY(20px) !important;
    pointer-events: none !important;
    visibility: hidden !important;
    display: none !important;
}

.product-item.filter-show {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

/* Grid support override for filter states */
@supports (display: grid) {
    .product-item.filter-show {
        display: block !important;
    }
}

.product-item.bounce-in {
    animation: bounceInGrid 0.6s ease-out forwards;
}

@keyframes bounceInGrid {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-30px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== RESPONSIVE GRID LAYOUT (BULLETPROOF) ===== */

/* Desktop: 6 products per row */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 20px !important;
    }
    
    .product-item {
        width: calc(16.666667% - 20px);
        -ms-flex: 0 0 calc(16.666667% - 20px);
        flex: 0 0 calc(16.666667% - 20px);
        max-width: calc(16.666667% - 20px);
    }
    
    @supports (display: grid) {
        .product-item {
            width: 100%;
            flex: none;
            max-width: none;
        }
    }
}

/* Large Desktop: Still 6 products per row */
@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 25px !important;
    }
    
    .product-item {
        width: calc(16.666667% - 25px);
        -ms-flex: 0 0 calc(16.666667% - 25px);
        flex: 0 0 calc(16.666667% - 25px);
        max-width: calc(16.666667% - 25px);
    }
    
    @supports (display: grid) {
        .product-item {
            width: 100%;
            flex: none;
            max-width: none;
        }
    }
}

/* Tablet: 4 products per row */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
    }
    
    .product-item {
        width: calc(25% - 15px);
        -ms-flex: 0 0 calc(25% - 15px);
        flex: 0 0 calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
    
    @supports (display: grid) {
        .product-item {
            width: 100%;
            flex: none;
            max-width: none;
        }
    }
}

/* Mobile: 3 products per row */
@media (max-width: 767.98px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        margin: 0 -5px !important;
    }
    
    .product-item {
        width: calc(33.333333% - 10px);
        margin: 0 5px 15px;
        -ms-flex: 0 0 calc(33.333333% - 10px);
        flex: 0 0 calc(33.333333% - 10px);
        max-width: calc(33.333333% - 10px);
    }
    
    @supports (display: grid) {
        .products-grid {
            margin: 0 !important;
        }
        
        .product-item {
            width: 100%;
            margin: 0;
            flex: none;
            max-width: none;
        }
    }
}

/* Small Mobile: Still 3 products per row but smaller gaps */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin: 0 -4px !important;
    }
    
    .product-item {
        width: calc(33.333333% - 8px);
        margin: 0 4px 12px;
        -ms-flex: 0 0 calc(33.333333% - 8px);
        flex: 0 0 calc(33.333333% - 8px);
        max-width: calc(33.333333% - 8px);
    }
    
    @supports (display: grid) {
        .products-grid {
            margin: 0 !important;
        }
        
        .product-item {
            width: 100%;
            margin: 0;
            flex: none;
            max-width: none;
        }
    }
}

/* ===== PRODUCT CARD STYLES ===== */
.product-card {
    background: var(--background-white);
    border: 2px solid rgba(5, 84, 64, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-green);
    box-shadow: var(--card-shadow-hover);
}

.product-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--background-light);
}

/* Responsive product image heights */
@media (min-width: 1200px) {
    .product-image {
        height: 160px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .product-image {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .product-image {
        height: 140px;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(5, 84, 64, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.badge {
    background: var(--primary-green);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(5, 84, 64, 0.3);
    backdrop-filter: blur(10px);
}

.badge.organic { background: #28a745; }
.badge.premium { background: var(--accent-orange); }
.badge.fresh { background: #17a2b8; }
.badge.export { background: var(--brown-accent); }
.badge.certified { background: #ffc107; color: var(--text-primary); }
.badge.ethical { background: #6f42c1; }
.badge.arabica { background: #dc3545; }
.badge.sustainable { background: #20c997; }
.badge.sweet { background: #fd7e14; }
.badge.handmade { background: #e83e8c; }
.badge.cultural { background: #6610f2; }
.badge.healthy { background: #198754; }
.badge.bred { background: #0d6efd; }
.badge.conflict-free { background: #495057; }
.badge.pure { background: #adb5bd; color: var(--text-primary); }
.badge.industrial { background: #6c757d; }
.badge.free-range { background: #198754; }
.badge.roasted { background: #795548; }
.badge.genuine { background: #8d4925; }
.badge.artistic { background: #9c27b0; }
.badge.tropical { background: #ff9800; }

.product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive product info padding */
@media (min-width: 1200px) {
    .product-info {
        padding: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .product-info {
        padding: 0.75rem 0.5rem;
    }
}

.product-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Responsive product name font sizes */
@media (min-width: 1200px) {
    .product-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .product-name {
        font-size: 0.85rem;
    }
}

.product-origin {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-style: italic;
}

@media (max-width: 767.98px) {
    .product-origin {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.enquiry-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(5, 84, 64, 0.2);
}

/* Responsive enquiry button */
@media (min-width: 1200px) {
    .enquiry-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 4px;
    }
}

@media (max-width: 767.98px) {
    .enquiry-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
        gap: 4px;
    }
}

.enquiry-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(232, 136, 36, 0.3);
}

/* ===== LOADING STATE FOR GRID ===== */
.products-grid-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

.products-grid-container.loading .products-grid {
    filter: blur(1px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 100px 0;
    background: var(--background-light);
}

.choice-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.choice-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-white);
    border: 1px solid rgba(5, 84, 64, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.choice-option:hover {
    background: rgba(232, 136, 36, 0.05);
    border-color: #E88824;
    transform: translateX(10px);
    box-shadow: var(--card-shadow-hover);
}

.choice-option.active {
    background: rgba(232, 136, 36, 0.1);
    border-color: #E88824;
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(232, 136, 36, 0.15);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(5, 84, 64, 0.2);
    transition: var(--transition-smooth);
}

.choice-option.active .option-icon {
    background: #E88824;
    box-shadow: 0 8px 20px rgba(232, 136, 36, 0.3);
    transform: rotate(5deg) scale(1.1);
}

.choice-option:hover .option-icon {
    background: #E88824;
    box-shadow: 0 8px 20px rgba(232, 136, 36, 0.3);
}

.option-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.choice-option.active .option-text h4 {
    color: #E88824;
}

.option-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.center-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.center-image {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
    border: 3px solid var(--background-white);
}

.center-image.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 25px 50px rgba(232, 136, 36, 0.2);
    border-color: #E88824;
}

.center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dynamic-content {
    position: relative;
    min-height: 400px;
}

.content-item {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.content-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.content-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.content-item.active h3 {
    color: #E88824;
}

.content-item p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    background: var(--background-white);
    padding: 1rem;
    border-radius: 15px;
    border-left: 4px solid #E88824;
    box-shadow: 0 4px 15px rgba(5, 84, 64, 0.1);
}

.content-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content-item li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--background-white);
    padding: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(5, 84, 64, 0.08);
    border-left: 3px solid #E88824;
    transition: var(--transition-smooth);
}

.content-item.active li:hover {
    border-left-color: #E88824;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(232, 136, 36, 0.1);
}

.content-item li i {
    color: #E88824;
    font-size: 1rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MOBILE WHY CHOOSE US - FAQ STYLE ===== */
.why-choose-mobile {
    display: none;
}

.mobile-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-faq-item {
    background: var(--background-white);
    border: 1px solid rgba(5, 84, 64, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--card-shadow);
}

.mobile-faq-item.active {
    border-color: #E88824;
    box-shadow: 0 15px 35px rgba(232, 136, 36, 0.15);
}

.mobile-faq-header {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-faq-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 136, 36, 0.05), transparent);
    transition: left 0.5s;
}

.mobile-faq-item.active .mobile-faq-header::before {
    left: 100%;
}

.mobile-faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(5, 84, 64, 0.2);
}

.mobile-faq-item.active .mobile-faq-icon {
    background: #E88824;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 15px rgba(232, 136, 36, 0.3);
}

.mobile-faq-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.mobile-faq-item.active .mobile-faq-title {
    color: #E88824;
}

.mobile-faq-arrow {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 0.5rem;
}

.mobile-faq-item.active .mobile-faq-arrow {
    transform: rotate(180deg);
    color: #E88824;
}

.mobile-faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 1.2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-20px);
}

.mobile-faq-item.active .mobile-faq-content {
    max-height: 500px;
    opacity: 1;
    padding: 0 1.2rem 1.5rem;
    transform: translateX(0);
}

.mobile-faq-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 15px;
    border-left: 4px solid #E88824;
}

.mobile-faq-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-faq-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 3px solid #E88824;
}

.mobile-faq-feature:hover {
    background: rgba(232, 136, 36, 0.05);
    transform: translateX(5px);
}

.mobile-faq-feature i {
    color: #E88824;
    font-size: 0.8rem;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-faq-feature-text {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== SERVICES SECTION WITH CLICKABLE CARDS ===== */
.services-section {
    padding: 70px 0;
    background: var(--background-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.services-carousel {
    display: none;
}

.service-card {
    background: rgba(5, 84, 64, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #055440;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(5, 84, 64, 0.1);
    margin: 20px 10px;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #E88824;
    box-shadow: 0 15px 45px rgba(232, 136, 36, 0.2);
}

.service-card:active {
    transform: translateY(-10px) scale(0.98);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(5, 84, 64, 0.2);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 25px rgba(5, 84, 64, 0.3);
}

.service-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(5, 84, 64, 0.2);
    pointer-events: none;
}

.service-link:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 15px rgba(232, 136, 36, 0.3);
}

.explore-card {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.explore-card .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.explore-card h4,
.explore-card p {
    color: white;
}

.explore-card .btn-primary {
    background: white;
    color: var(--primary-green);
    margin-top: 1rem;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.explore-card .btn-primary:hover {
    background: var(--background-light);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 100px 0;
    background: var(--background-light);
}

.newsletter-card {
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(5, 84, 64, 0.2);
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.05;
}

.newsletter-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    z-index: -1;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.newsletter-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-form {
    min-width: 350px;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.input-group:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(232, 136, 36, 0.2);
}

.input-group .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    flex: 1;
    background: transparent;
    color: var(--text-primary);
    outline: none;
    font-weight: 500;
}

.input-group .form-control::placeholder {
    color: var(--text-light);
}

.input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.input-group .btn {
    padding: 15px 20px;
    border: none;
    background: var(--accent-orange);
    color: white;
    border-radius: 0 50px 50px 0;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.input-group .btn:hover {
    background: var(--brown-accent);
    transform: scale(1.05);
}

.newsletter-floats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 15s linear infinite;
    opacity: 0.3;
    color: rgba(255, 255, 255, 0.4);
}

.float-item:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 3s;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.float-item:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 9s;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    margin-top: 4rem;
    text-align: center;
}

.brands-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.brand-item {
    padding: 1rem;
}

.brand-logo {
    background: var(--background-white);
    border: 2px solid #055440;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.brand-logo:hover {
    transform: translateY(-5px);
    border-color: #E88824;
    box-shadow: var(--card-shadow-hover);
}

.brand-logo span {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(5, 84, 64, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-orange);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(232, 136, 36, 0.4);
}

/* ===== MODAL STYLES ===== */
.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(5, 84, 64, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(5, 84, 64, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(5, 84, 64, 0.2);
    background: rgba(255, 255, 255, 0.3);
}

.modal-title {
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-body .form-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.modal-body .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(5, 84, 64, 0.2);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 500;
}

.modal-body .form-control:focus {
    border-color: #E88824;
    box-shadow: 0 0 15px rgba(232, 136, 36, 0.3);
    background: var(--background-white);
    outline: none;
}

.modal-body .form-control::placeholder {
    color: rgba(51, 51, 51, 0.7);
    font-weight: 400;
}

.modal-footer {
    border-top: 1px solid rgba(5, 84, 64, 0.2);
    background: rgba(255, 255, 255, 0.3);
}

.modal-footer .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(5, 84, 64, 0.3);
    color: var(--text-primary);
    border-radius: 25px;
    font-weight: 600;
}

.modal-footer .btn-primary {
    background: var(--primary-green);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(5, 84, 64, 0.3);
    color: white;
    font-weight: 600;
}

.modal-footer .btn-primary:hover {
    background: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(232, 136, 36, 0.4);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -10px) rotate(270deg);
    }
}

/* ===== OWL CAROUSEL CUSTOM STYLES ===== */
.owl-carousel .owl-nav {
    margin-top: 2rem;
    text-align: center;
}

.owl-carousel .owl-nav button {
    background: var(--background-white) !important;
    border: 2px solid rgba(5, 84, 64, 0.2) !important;
    color: var(--text-primary) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    margin: 0 10px !important;
    font-size: 1.2rem !important;
    transition: var(--transition-smooth) !important;
    box-shadow: var(--card-shadow) !important;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: var(--card-shadow-hover) !important;
}

.owl-carousel .owl-dot {
    display: inline-block !important;
    width: 12px !important;
    height: 12px !important;
    background: rgba(5, 84, 64, 0.3) !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    transition: var(--transition-smooth) !important;
    cursor: pointer !important;
    border: none !important;
    padding: 0 !important;
}

.owl-carousel .owl-dot span {
    display: none !important;
}

.owl-carousel .owl-dot.active,
.owl-carousel .owl-dot:hover {
    background: var(--primary-green) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 15px rgba(5, 84, 64, 0.4) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-stats {
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .newsletter-content {
        padding: 2rem 1.5rem;
    }

    .floating-product {
        width: 100px;
        height: 100px;
    }
}

/* ===== MOBILE RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 991.98px) {
    /* Hide desktop grids, show mobile carousels */
    .services-grid {
        display: none !important;
    }

    .services-carousel {
        display: block !important;
    }

    /* Hide desktop why choose us, show mobile FAQ */
    .why-choose-desktop {
        display: none !important;
    }

    .why-choose-mobile {
        display: block !important;
    }

    /* Hero section mobile */
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }

    .floating-product {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    /* Newsletter mobile */
    .newsletter-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    /* General mobile styles */
    .hero-section {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Filter tabs mobile */
    .filter-tabs {
        gap: 0.5rem;
        padding: 0 10px;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    /* Categories mobile */
    .category-card {
        margin: 15px 5px;
        padding: 1.5rem 1rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Services mobile */
    .service-card {
        padding: 2rem 1.5rem;
        margin: 15px 5px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Newsletter mobile */
    .newsletter-content {
        padding: 2rem 1.5rem;
    }

    /* Back to top mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Small mobile adjustments */
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    /* Hero buttons mobile */
    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Services mobile */
    .service-card {
        height: 300px;
    }

    /* Newsletter mobile */
    .newsletter-content {
        padding: 1.5rem 1rem;
    }

    .input-group {
        flex-direction: row;
        border-radius: 15px;
    }

    .input-group .form-control {
        border-radius: 15px 0 0 15px;
        text-align: center;
        padding: 12px 16px;
    }

    .input-group .btn {
        border-radius: 0 15px 15px 0;
        padding: 12px 16px;
    }

    /* Mobile grid adjustments */
    .products-grid {
        gap: 8px;
    }
}

/* ===== ULTRA SMALL MOBILE (320px and below) ===== */
@media (max-width: 320px) {
    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        height: 280px;
    }

    .products-grid {
        gap: 6px;
    }
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
    filter: blur(1px);
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-out;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-green));
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
.touch-device .category-card:active,
.touch-device .product-card:active,
.touch-device .service-card:active,
.touch-device .mobile-faq-header:active {
    transform: scale(0.98);
}

.touch-active {
    background: rgba(5, 84, 64, 0.05) !important;
    border-color: var(--primary-green) !important;
}

/* ===== PRINT STYLES ===== */
@media print {
    .floating-elements,
    .newsletter-floats,
    .floating-product,
    .back-to-top {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title,
    .hero-title {
        color: black;
    }

    .gradient-text {
        -webkit-text-fill-color: initial;
        color: var(--primary-green);
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    :root {
        --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        --card-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .category-card,
    .product-card,
    .service-card {
        border-width: 2px;
    }

    .btn-outline {
        border-width: 3px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary-green {
    color: var(--primary-green) !important;
}

.text-accent-orange {
    color: var(--accent-orange) !important;
}

.text-brown-accent {
    color: var(--brown-accent) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

.bg-accent-orange {
    background-color: var(--accent-orange) !important;
}

.bg-brown-accent {
    background-color: var(--brown-accent) !important;
}

.border-primary-green {
    border-color: var(--primary-green) !important;
}

.border-accent-orange {
    border-color: var(--accent-orange) !important;
}

.shadow-custom {
    box-shadow: var(--card-shadow) !important;
}

.shadow-custom-hover {
    box-shadow: var(--card-shadow-hover) !important;
}

.rounded-custom {
    border-radius: var(--border-radius) !important;
}

.rounded-custom-lg {
    border-radius: var(--border-radius-lg) !important;
}

.rounded-custom-xl {
    border-radius: var(--border-radius-xl) !important;
}