/* Global Styles */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #292f36;
    --light-color: #f7fff7;
    --accent-color: #ffd166;
    --gray-color: #6c757d;
    --light-gray: #f8f9fa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: flex;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    color: var(--dark-color);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-color);
}

/* Sidebar Styles */
/* EMERGENCY OVERRIDES */
.sidebar {
    background: white !important;
    overflow-y: auto !important;
}

.sidebar-nav {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sidebar-nav ul {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sidebar-nav li {
    display: block !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid #eee !important;
}

.sidebar-nav a {
    color: #333 !important;
    font-size: 16px !important;
    text-decoration: none !important;
}
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}

.sidebar-nav {
    padding: 80px 20px 20px;
    
}

.sidebar-nav ul {
    flex-direction: column;
    
}

.sidebar-nav ul li {
    margin: 15px 0;
}

.sidebar-nav ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

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

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: var(--primary-color);
}

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

.overlay.active {
    display: block;
}

/* Hero Section */
/* Hero Section with Blobs */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1460353581641-37baddab0fa2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1351&q=80') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    margin-top: 60px;
    overflow: hidden;
}

/* Organic Blob Container */
.shoe-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Individual Blobs */
.blob {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: var(--color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: blob-pulse 8s ease-in-out infinite;
    opacity: 1;
}

@keyframes blob-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }
}

.blob-shoe {
    position: absolute;
    width: 60%;
    height: 60%;
    object-fit: contain;
    animation: shoe-float 8s ease-in-out infinite;
}

@keyframes shoe-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.import-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.import-tag i {
    margin-right: 10px;
    color: var(--accent-color);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Feature Blobs */
.blob-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.feature-blob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mini-blob {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blob-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    backdrop-filter: blur(2px);
    animation: mini-blob-pulse 6s ease-in-out infinite;
}

@keyframes mini-blob-pulse {
    0%, 100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .blob {
        --size: 80px !important;
    }
    
    .blob-features {
        gap: 15px;
    }

    .shoe-blobs{
        display: none;
    }
    
    .mini-blob {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Product Filters - Horizontal Scroll */
.product-filters {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 8px;
    padding: 10px 0 15px;
    margin: 0 -15px 20px;
    padding-left: 15px;
}

/* Hide scrollbar on Chrome/Safari */
.product-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex: 0 0 auto; /* Prevent shrinking */
    padding: 8px 16px;
    border-radius: 20px;
    background: #f5f5f5;
    border: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 !important; /* Force remove any margins */
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
    .product-filters {
        gap: 6px;
        padding-bottom: 12px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}



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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 14px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: bold;
    font-size: 20px;
    color: var(--primary-color);
}

.add-to-cart {
    background: var(--dark-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: var(--primary-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.about-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
}

.feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
/* Testimonials Section */
.testimonials {
    background: #f9f9f9;
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.testimonial-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: #eee;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.testimonial-slider {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.customer-info h4 {
    margin-bottom: 5px;
}

.customer-info p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.rating {
    color: var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-color);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-prev, .slider-next {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--dark-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Testimonials */
.testimonials {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.section-subtitle {
    color: var(--gray-color);
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
    min-height: 300px;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.customer-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.customer-info h4 {
    margin: 0;
    font-size: 18px;
}

.customer-info p {
    color: var(--gray-color);
    margin: 5px 0;
    font-size: 14px;
}

.rating {
    color: var(--accent-color);
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-footer {
    text-align: left;
    font-size: 14px;
    color: var(--gray-color);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-prev, .slider-next {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--dark-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

#contact-form {
    flex: 1;
    min-width: 300px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease;
}

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.info-item p {
    color: var(--dark-color);
}

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: #ddd;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ddd;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: flex-end;
}

.cart-content {
    background: white;
    width: 100%;
    max-width: 400px;
    height: 100%;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close-cart {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: color 0.3s ease;
}

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

.cart-items {
    margin: 30px 0;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 15px;
}

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

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

.cart-item-details h4 {
    margin-bottom: 5px;
}

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

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-btn {
    background: #eee;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 3px;
}

.remove-item {
    color: var(--gray-color);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

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

.cart-total {
    text-align: right;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-total h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.cart-total h3 span {
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
    }

    .logo {
        margin-right: auto;
        margin-left: 20px;
    }

    .cart-icon {
        margin-left: auto;
        margin-right: 20px;
    }

    header .container {
        flex-direction: row;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about .container {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .cart-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .product-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        margin: 5px 0;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .testimonial p {
        font-size: 16px;
    }
}

/* NUCLEAR OVERRIDES - TEMPORARY */
.product-filters {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.product-filters > * {
    float: none !important;
    display: block !important;
    clear: none !important;
}

/* About Section Innovations */
.founders-card {
    display: flex;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.founders-image {
    flex: 1;
    min-width: 150px;
}

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

.founders-info {
    flex: 2;
    padding: 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.mission, .vision {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.mission i, .vision i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.buea-connection {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.buea-connection i {
    color: var(--primary-color);
    font-size: 20px;
}

.location-tag {
    position: absolute;
    bottom: -30px;
    background: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #292f36;
}

.feature-desc {
    font-size: 13px;
    color: var(--gray-color);
    margin-top: 5px;
    display: none;
}

.feature:hover .feature-desc {
    display: block;
}