/* =========================================== */
/* THREADS BY JOSH - Complete Final CSS */
/* =========================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Thrifted.com Inspired Color Palette */
    --primary: #FF3B30; /* Vibrant red/orange */
    --secondary: #00C2B8; /* Turquoise teal */
    --accent: #FFD600; /* Bright yellow */
    --light: #FFFFFF;
    --dark: #111111;
    --text: #333333;
    --bg-light: #FAFAFA;
    --bg-dark: #0A0A0A;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #757575;
    
    /* Additional vibrant colors */
    --vibrant-pink: #FF2D55;
    --vibrant-purple: #5856D6;
    --vibrant-green: #34C759;
    --vibrant-blue: #007AFF;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    transition: var(--transition);
    -webkit-font-smoothing: antialiased;
}

body.dark-mode {
    --light: var(--bg-dark);
    --dark: #FFFFFF;
    --text: #E0E0E0;
    --bg-light: var(--bg-dark);
    background: var(--bg-dark);
    color: var(--dark);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
}

body.dark-mode p {
    color: var(--dark);
}

/* Logo */
.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.dark-mode .logo {
    color: var(--dark);
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background: var(--light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-light);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.dark-mode header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.dark-mode .nav-links a {
    color: var(--dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Button */
.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-medium);
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.dark-mode .theme-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--dark);
}

.theme-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: rotate(15deg);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--dark);
    transition: var(--transition);
}

.dark-mode .cart-icon {
    color: var(--dark);
}

.cart-icon:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

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

/* ========== HERO SLIDER ========== */

/* ========== HERO SLIDER ========== */
.hero-slider {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero-slide {
    min-width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* NO COLOR OVERLAY - Just pure images */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

/* Main greeting text */
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    background: rgba(0, 0, 0, 0.8);
    display: inline-block;
    padding: 15px 40px;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

/* Tagline */
.tagline {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Date */
.date {
    font-size: 1rem;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    animation: fadeInUp 0.8s ease 0.4s both;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Shipping banner */
.shipping-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-top: 10px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.shipping-banner i {
    color: var(--accent);
}

/* ========== HERO BUTTONS (FIXED) ========== */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease 1s both;
}

/* Primary button - Shop Collection */
.hero-buttons .btn {
    background: rgba(255, 59, 48, 0.95);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 200px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    background: #FF2D55;
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(255, 45, 85, 0.5);
}

/* Secondary button - Our Story */
.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid white;
    color: var(--primary);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    min-width: 200px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Hero slider navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Shipping banner */
.shipping-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-top: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.shipping-banner i {
    color: var(--accent);
}

/* Hero slider navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* ========== CATEGORY NAVIGATION ========== */
.category-nav {
    background: linear-gradient(90deg, var(--primary), var(--vibrant-pink));
    padding: 1rem 0;
    margin: 2rem 0;
    position: sticky;
    top: 73px;
    z-index: 999;
}

.category-nav .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover,
.category-btn.active {
    background: white;
    color: var(--vibrant-pink);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== IMAGE SLIDER ========== */
.image-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 80px 0;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-content h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Smaller, elegant slider arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
    font-size: 1rem;
    color: white;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* ========== SHOP CATEGORIES ========== */
.categories-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.dark-mode .categories-section {
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.dark-mode .section-header h2 {
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.dark-mode .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Category Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--gray-light);
    position: relative;
}

.dark-mode .category-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.category-content {
    padding: 24px;
}

.category-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark-mode .category-content h3 {
    color: var(--dark);
}

.category-count {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ========== FEATURED PRODUCTS ========== */
.featured-products {
    padding: 80px 0;
    background: var(--light);
}

.dark-mode .featured-products {
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
}

.dark-mode .product-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-image {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.dark-mode .product-title {
    color: var(--dark);
}

.product-description {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.dark-mode .product-description {
    color: rgba(255, 255, 255, 0.6);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dark-mode .add-to-cart {
    background: var(--light);
    color: var(--dark);
}

.add-to-cart:hover {
    background: var(--primary);
    transform: scale(1.02);
}

/* ========== QUICK STATS ========== */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary), var(--vibrant-pink));
    border-radius: var(--radius-lg);
    margin: 80px 0;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ========== ABOUT PAGE STYLES ========== */
.about-page {
    padding: 60px 0;
}

.about-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(0, 194, 184, 0.1));
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.dark-mode .about-hero h1 {
    color: var(--dark);
}

.about-hero .subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-text h2 {
    color: var(--dark);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-image {
    height: 500px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-image: url('images/about/about-story.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.mission-section {
    background: linear-gradient(135deg, var(--secondary), var(--vibrant-blue));
    padding: 60px;
    border-radius: var(--radius-lg);
    margin-bottom: 80px;
    text-align: center;
    color: white;
}

.mission-section h2 {
    color: white;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-card p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: white;
}

.values {
    margin-bottom: 80px;
}

.values h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

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

.value-card {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.dark-mode .value-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.value-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.dark-mode .value-card h3 {
    color: var(--dark);
}

.process {
    margin-bottom: 80px;
}

.process h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

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

.step {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.dark-mode .step {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.dark-mode .step h3 {
    color: var(--dark);
}

.impact {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.05), rgba(0, 194, 184, 0.05));
    padding: 60px;
    border-radius: var(--radius-lg);
}

.impact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.dark-mode .impact h2 {
    color: var(--dark);
}

.impact-message {
    max-width: 800px;
    margin: 0 auto;
}

.impact-list {
    list-style: none;
    margin-top: 24px;
}

.impact-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
}

.impact-list i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-page {
    padding: 60px 0;
}

.contact-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 40px 0 60px;
}

.contact-card {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.dark-mode .contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-card:nth-child(1) i { color: #25D366; } /* WhatsApp green */
.contact-card:nth-child(2) i { color: #E4405F; } /* Instagram pink */
.contact-card:nth-child(3) i { color: var(--primary); } /* Email red */
.contact-card:nth-child(4) i { color: var(--secondary); } /* Clock teal */

.contact-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
}

.dark-mode .contact-card h3 {
    color: var(--dark);
}

.contact-card p {
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-card .hours {
    color: var(--primary);
    font-weight: 600;
}

.contact-card .note {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-top: 8px;
}

.dark-mode .contact-card .note {
    color: rgba(255, 255, 255, 0.6);
}

.contact-card .whatsapp-btn,
.contact-card .instagram-btn,
.contact-card .email-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card .whatsapp-btn {
    background: #25D366;
}

.contact-card .instagram-btn {
    background: #E4405F;
}

.contact-card .email-btn {
    background: var(--primary);
}

.contact-card .whatsapp-btn:hover,
.contact-card .instagram-btn:hover,
.contact-card .email-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 80px;
}

.contact-form-section h2 {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.dark-mode .contact-form-section h2 {
    color: var(--dark);
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
}

.dark-mode .contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.dark-mode .form-group label {
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light);
    color: var(--text);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

.error-message {
    color: #FF4444;
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

.success-message {
    background: var(--vibrant-green);
    color: white;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 24px;
    text-align: center;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--vibrant-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* FAQ Styles */
.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.dark-mode .faq-section h2 {
    color: var(--dark);
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-light);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dark-mode .faq-category h3 {
    color: var(--dark);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.faq-item {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
}

.dark-mode .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Shipping Policy */
.shipping-policy {
    margin-bottom: 80px;
}

.shipping-policy h2 {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.dark-mode .shipping-policy h2 {
    color: var(--dark);
}

.policy-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
}

.dark-mode .policy-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.policy-card h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.dark-mode .policy-card h3 {
    color: var(--dark);
}

.policy-section {
    margin-bottom: 32px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h4 {
    margin-bottom: 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark-mode .policy-section h4 {
    color: var(--dark);
}

.shipping-table {
    margin-top: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-light);
}

.dark-mode .table-row {
    border-color: rgba(255, 255, 255, 0.1);
}

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

.table-row.header {
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.table-row.highlight {
    background: rgba(255, 59, 48, 0.1);
}

.dark-mode .table-row.highlight {
    background: rgba(255, 59, 48, 0.2);
}

.table-cell {
    padding: 16px;
    text-align: center;
}

/* Quick Categories Chips */
.quick-categories {
    margin: 40px 0;
}

.category-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.category-chip {
    padding: 10px 20px;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.dark-mode .category-chip {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark);
}

.category-chip:hover,
.category-chip.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Shopping Info Cards */
.shopping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.info-card {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.dark-mode .info-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.info-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.dark-mode .info-card h3 {
    color: var(--dark);
}

/* Condition Guide */
.condition-guide {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
    border: 1px solid var(--gray-light);
}

.dark-mode .condition-guide {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.condition-guide h3 {
    margin-bottom: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dark-mode .condition-guide h3 {
    color: var(--dark);
}

.condition-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

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

.condition-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Products Page Specific */
.products-page {
    padding: 60px 0;
}

.full-grid {
    margin: 40px 0;
}

.no-results {
    text-align: center;
    padding: 60px;
    color: var(--gray-dark);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

.dark-mode .no-results {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== KENYA PRIDE ========== */
.kenya-pride {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000, #FF0000, #006600);
    position: relative;
    overflow: hidden;
}

.kenya-pride::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="1" opacity="0.1"/></svg>');
    animation: rotate 20s linear infinite;
}

.kenya-pride .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.kenya-flag {
    display: flex;
    justify-content: center;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 32px auto;
    max-width: 400px;
    box-shadow: var(--shadow-md);
}

.flag-stripe {
    flex: 1;
}

.flag-black { background: #000000; }
.flag-red { background: #FF0000; }
.flag-green { background: #006600; }
.flag-white { background: #FFFFFF; }

/* ========== NEWSLETTER ========== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), var(--vibrant-blue));
    text-align: center;
    color: white;
}

.newsletter-form {
    max-width: 500px;
    margin: 32px auto 0;
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: white;
    transform: scale(1.05);
}

/* ========== FILTERS ========== */
.filter-section {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.dark-mode .filter-section {
    background: rgba(255, 255, 255, 0.05);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.875rem;
}

.dark-mode .filter-group label {
    color: var(--dark);
}

#categoryFilter,
#priceFilter,
#conditionFilter {
    padding: 12px 16px;
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-md);
    background: var(--light);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.dark-mode #categoryFilter,
.dark-mode #priceFilter,
.dark-mode #conditionFilter {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--dark);
}

#categoryFilter:focus,
#priceFilter:focus,
#conditionFilter:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-btn {
    padding: 12px 24px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dark-mode .filter-btn {
    background: var(--light);
    color: var(--dark);
}

.filter-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* ========== CART SIDEBAR ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--light);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.dark-mode .cart-sidebar {
    background: var(--bg-dark);
}

.cart-sidebar.active {
    right: 0;
}

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

.dark-mode .cart-header {
    border-color: rgba(255, 255, 255, 0.1);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.dark-mode .close-cart {
    color: var(--dark);
}

.close-cart:hover {
    color: var(--primary);
    transform: scale(1.1);
}

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

.empty-cart {
    text-align: center;
    color: var(--gray-dark);
    padding: 40px;
}

.dark-mode .empty-cart {
    color: rgba(255, 255, 255, 0.6);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
}

.dark-mode .cart-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
}

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.dark-mode .cart-item-title {
    color: var(--dark);
}

.cart-item-condition {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.dark-mode .cart-item-condition {
    color: rgba(255, 255, 255, 0.6);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    padding: 4px;
}

.remove-item:hover {
    color: var(--primary);
}

.cart-total {
    padding: 24px;
    border-top: 1px solid var(--gray-light);
    text-align: center;
}

.dark-mode .cart-total {
    border-color: rgba(255, 255, 255, 0.1);
}

.cart-total h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.dark-mode .cart-total h4 {
    color: var(--dark);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--vibrant-pink);
    transform: scale(1.02);
}

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

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

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) rotate(10deg);
}

/* ========== FOOTER ========== */
/* ========== FOOTER ========== */
footer {
    background: #111111; /* Always dark footer */
    color: white;
    padding: 80px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-section h4 {
    color: var(--accent); /* Yellow accent */
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
    margin-top: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    padding-left: 8px;
}

/* Social icons in footer */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    margin: 0;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Contact info in footer */
.contact-info {
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--accent); /* Yellow icons */
}

.copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.payment-methods {
    text-align: center;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.payment-methods i {
    color: var(--accent);
    margin-right: 8px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .slide-content h3 {
        font-size: 2.5rem;
    }
    
    .about-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-slider {
        min-height: 60vh;
    }
    
    .hero-slide {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 400px;
        order: -1;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .image-slider {
        height: 400px;
        margin: 60px 0;
    }
    
    .slide-content {
        left: 40px;
    }
    
    .slide-content h3 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .filter-section {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .values-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .table-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .shopping-info {
        grid-template-columns: 1fr;
    }
    
    .condition-items {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-slider {
        min-height: 50vh;
    }
    
    .hero-slide {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .image-slider {
        height: 300px;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slider-nav {
        width: 48px;
        height: 48px;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-hero {
        padding: 40px 20px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 20px;
    }
    
    .mission-card p {
        font-size: 1.2rem;
    }
    
    .contact-form,
    .policy-card {
        padding: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ========== FIX DARK MODE FOOTER VISIBILITY ========== */
body.dark-mode footer {
    background: #111111;
}

.dark-mode .footer-tagline {
    color: rgba(255, 255, 255, 0.6) !important;
}

.dark-mode .footer-section p:not(.footer-tagline) {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode .footer-section h3,
.dark-mode .footer-section h4 {
    color: #FFFFFF;
}

/* Fix payment methods in dark mode */
.dark-mode .payment-methods {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode .payment-methods i {
    color: var(--accent);
}

/* Fix copyright text in dark mode */
.dark-mode .copyright {
    color: rgba(255, 255, 255, 0.5);
}