﻿/* ============================================
   VIRTUAL FREE E-COMMERCE STYLES
   Complete Enhanced Version - Updated for South Africa
============================================ */

/* CSS Variables */
:root {
    /* Color Scheme - Adjusted for white logo background */
    --primary-black: #000000;
    --secondary-gray: #333333;
    --accent-gray: #666666;
    --light-gray: #f8f9fa;
    --medium-gray: #888888;
    --dark-text: #222222;
    --medium-text: #555555;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* South Africa Colors */
    --sa-green: #007749;
    --sa-yellow: #FFB81C;
    --sa-red: #DE3831;
    --sa-blue: #002395;
    --sa-black: #000000;
    --sa-white: #FFFFFF;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-black) 0%, var(--accent-gray) 100%);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-black);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-gray);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: white; }
.text-black { color: var(--primary-black); }
.text-gray { color: var(--medium-text); }

.bg-light { background-color: var(--light-gray); }
.bg-dark { background-color: var(--primary-black); color: white; }
.bg-gray { background-color: var(--secondary-gray); color: white; }

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

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

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

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

.container-spacy {
    padding: 80px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.columns {
    padding: 15px;
}

.large-12 { width: 100%; }
.large-6 { width: 50%; }
.large-4 { width: 33.333%; }
.large-3 { width: 25%; }
.large-8 { width: 66.666%; }

.medium-12 { width: 100%; }
.medium-6 { width: 50%; }

/* Proudly South African */
.proudly-sa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sa-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 5px 0;
}

.proudly-sa-flag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    height: 16px;
}

.proudly-sa-flag span {
    display: inline-block;
    width: 4px;
    height: 16px;
}

.proudly-sa-flag .green { background-color: var(--sa-green); }
.proudly-sa-flag .yellow { background-color: var(--sa-yellow); }
.proudly-sa-flag .red { background-color: var(--sa-red); }
.proudly-sa-flag .blue { background-color: var(--sa-blue); }
.proudly-sa-flag .black { background-color: var(--sa-black); }
.proudly-sa-flag .white { background-color: var(--sa-white); border: 1px solid #eee; }

.sa-badge {
    background: linear-gradient(90deg, var(--sa-green), var(--sa-yellow), var(--sa-red), var(--sa-blue));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--sa-green) 0%, var(--sa-blue) 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.banner-content span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.site-header {
    background: white;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-black);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.brand-logo {
    flex: 0 0 auto;
}

/* UPDATED LOGO SIZE - Larger and more visible */
.brand-logo img {
    height: 100px !important; /* Increased from 80px to 100px */
    width: auto;
    max-width: 300px;
    transition: var(--transition-normal);
    background: white;
    padding: 8px;
    border-radius: 8px;
    border: 2px solid var(--primary-black);
}

.brand-logo img:hover {
    transform: scale(1.05);
}

/* Search Bar */
.search-bar {
    position: relative;
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 45px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

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

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.search-button:hover {
    color: var(--primary-black);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--secondary-gray);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 5px;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a:hover {
    color: var(--primary-black);
    background: var(--light-gray);
}

.nav-active {
    color: var(--primary-black) !important;
    font-weight: 700;
}

.nav-active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--primary-black);
}

/* Cart Icon - UPDATED for better visibility */
.cart-icon {
    position: relative;
}

.cart-button {
    background: var(--sa-green) !important; /* Changed from black to SA green */
    color: white !important; /* White text for visibility */
    border: 2px solid var(--sa-green) !important;
    font-weight: 700;
}

.cart-button:hover {
    background: #00663a !important; /* Darker green on hover */
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 73, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--sa-red); /* Changed to SA red */
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button:hover:before {
    width: 300px;
    height: 300px;
}

.button i {
    margin-right: 8px;
}

.button-primary {
    background: var(--primary-black);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #222;
    color: white;
}

.button-secondary {
    background: white;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    background: var(--light-gray);
    color: var(--primary-black);
}

.button-success {
    background: var(--success-color);
    color: white;
}

.button-warning {
    background: var(--warning-color);
    color: var(--dark-text);
}

.button-danger {
    background: var(--danger-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    -webkit-text-fill-color: white;
    background: none;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
    -webkit-text-fill-color: white;
    background: none;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-cards {
    padding: 80px 0;
    background: var(--light-gray);
}

.feature-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    height: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-black) 0%, var(--accent-gray) 100%);
}

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

.service-card h5 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    height: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    border-top: 5px solid var(--primary-black);
}

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

.category-icon {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
}

.category-card h6 {
    color: var(--primary-black);
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    position: relative;
}

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

.product-image {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition-normal);
}

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

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-black);
    min-height: 3em;
}

.product-description {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 4em;
}

.product-rating {
    color: var(--warning-color);
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating span {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-left: 10px;
}

/* UPDATED: ZAR Currency */
.product-price {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.product-price:before {
    content: 'ZAR ';
    font-size: 1rem;
    color: var(--medium-gray);
}

.old-price {
    text-decoration: line-through;
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-right: 10px;
}

.old-price:before {
    content: 'ZAR ';
    font-size: 0.9rem;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 2px solid var(--border-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--border-color);
}

.quantity-input {
    width: 60px;
    text-align: center;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    font-weight: 600;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: var(--info-color);
    color: white;
}

.badge-sale {
    background: var(--success-color);
    color: white;
}

.badge-hot {
    background: var(--danger-color);
    color: white;
}

.badge-special {
    background: var(--warning-color);
    color: var(--dark-text);
}

/* Filters */
.filters-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
}

.filter-bar {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

.filter-label {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    color: var(--dark-text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-black);
}

.price-range {
    width: 100%;
    margin: 10px 0;
    -webkit-appearance: none;
    height: 5px;
    background: var(--border-color);
    border-radius: 5px;
    outline: none;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-black);
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    padding: 12px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: var(--transition-fast);
    min-width: 45px;
    text-align: center;
}

.page-link:hover {
    background: var(--light-gray);
    border-color: var(--primary-black);
}

.page-link.active {
    background: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonial-item {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--medium-text);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 4rem;
    color: var(--border-color);
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-text:before {
    top: -20px;
    left: -10px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-top: 30px;
}

.testimonial-role {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    background: rgba(255,255,255,0.2);
}

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

/* Quick Stats */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-black);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-black);
}

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

.contact-info {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-black);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: var(--medium-text);
}

/* Footer */
.site-footer {
    background: #111;
    color: white;
    padding: 80px 0 30px;
}

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

/* Footer Logo - Updated for larger size */
.footer-logo img {
    height: 80px !important; /* Increased from 60px to 80px */
    width: auto;
    max-width: 250px;
    background: white;
    padding: 6px;
    border-radius: 6px;
    margin-bottom: 20px;
}

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: white;
    color: var(--primary-black);
    transform: translateY(-5px);
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: var(--primary-black);
    animation: spin 1s ease-in-out infinite;
}

/* Modal (for cart, etc.) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background