/* ===================================
   CultivateCrest - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Enhanced Color Scheme - Natural & Earthy Tones */
    --primary-color: #2E5C3E;
    --primary-dark: #1F3D29;
    --primary-light: #4A7C59;
    --secondary-color: #D4A574;
    --accent-color: #B8A26E;
    --warm-gold: #E5A827;
    --sage-green: #6B8E6F;
    --cream: #F5F3ED;
    --terracotta: #C87951;

    /* Modern Gradients */
    --primary-gradient: linear-gradient(135deg, #2E5C3E 0%, #6B8E6F 100%);
    --warm-gradient: linear-gradient(135deg, #D4A574 0%, #E5A827 100%);
    --success-gradient: linear-gradient(135deg, #4CAF50 0%, #45B649 100%);
    --natural-gradient: linear-gradient(135deg, #F5F3ED 0%, #E8E4DB 100%);

    /* Text Colors */
    --text-dark: #2C3E2E;
    --text-light: #6C7869;
    --text-muted: #9CA89D;

    /* Background Colors */
    --bg-light: #F9F8F5;
    --bg-cream: #F5F3ED;
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, #F9F8F5 100%);
    --bg-white: #FFFFFF;
    --border-color: #E5E3DC;
    --error-color: #C87951;
    --success-color: #4A7C59;

    /* Typography */
    --font-body: 'Questrial', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

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

    /* Border Radius - Soft & Rounded */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 50px;
    --radius-full: 50%;

    /* Modern Shadows - Softer */
    --shadow-sm: 0 2px 12px rgba(46, 92, 62, 0.08);
    --shadow-md: 0 4px 24px rgba(46, 92, 62, 0.12);
    --shadow-lg: 0 8px 40px rgba(46, 92, 62, 0.16);
    --shadow-xl: 0 16px 60px rgba(46, 92, 62, 0.20);
    --shadow-warm: 0 8px 30px rgba(212, 165, 116, 0.25);

    /* Smooth Transitions */
    --transition-fast: 0.2s cubic-bezier(0, 0, 0.3, 1);
    --transition-base: 0.3s cubic-bezier(0, 0, 0.3, 1);
    --transition-smooth: 0.6s cubic-bezier(0, 0, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Utility Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--animation-delay, 0s);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Header Scrolled State */
.header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu ul {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.search-container {
    position: relative;
}

.search-btn,
.icon-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: var(--spacing-xs);
    transition: color var(--transition-fast);
}

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

.whatsapp-btn {
    color: #25D366;
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    min-width: 300px;
    display: none;
    margin-top: var(--spacing-xs);
}

.search-box.active {
    display: block;
}

.search-box input {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.search-results {
    margin-top: var(--spacing-sm);
    max-height: 300px;
    overflow-y: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Individual Slide Backgrounds */
.slide-bg-1 {
    background: linear-gradient(135deg, #2A7C9F 0%, #3DBEAA 100%);
}

.slide-bg-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.slide-bg-2 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.slide-bg-4 {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    z-index: 3;
}

.slide-content .container {
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.slide-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide-subtitle {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.slide-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    font-size: 1.25rem;
}

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

.slider-prev {
    left: var(--spacing-lg);
}

.slider-next {
    right: var(--spacing-lg);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: width var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--warm-gradient);
    color: var(--text-dark);
    box-shadow: var(--shadow-warm);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--spacing-md) calc(var(--spacing-xl) + 0.5rem);
    font-size: 1.15rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Sections */
.benefits-section,
.newsletter-section {
    padding: var(--spacing-xxl) 0;
}

/* Products Section with Wavy Background */
.products-section {
    padding: calc(var(--spacing-xxl) + 3rem) 0 calc(var(--spacing-xxl) + 3rem);
    background: linear-gradient(180deg, #f9f8f5 0%, #f5f3ed 100%);
    position: relative;
    overflow: visible;
    margin-top: -80px;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: #ffffff;
    clip-path: ellipse(100% 55% at 50% 0%);
    z-index: 1;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #ffffff;
    clip-path: ellipse(100% 55% at 50% 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    position: relative;
    z-index: 10;
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 400;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    align-items: stretch;
    position: relative;
    z-index: 10;
}

.loading {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* View All Button Container */
.view-all-container {
    text-align: center;
    margin-top: calc(var(--spacing-xl) * 1.5);
    position: relative;
    z-index: 10;
}

.btn-view-all {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(46, 92, 62, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn-view-all:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 92, 62, 0.35);
}

.btn-view-all:hover::before {
    width: 400px;
    height: 400px;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 124, 159, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

.benefit-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card i {
    font-size: 3.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: transform var(--transition-base);
}

.benefit-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-xxl) * 1.5) calc(var(--spacing-xl) * 2);
}

.newsletter-section .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
}

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

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

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 40px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

.form-message {
    color: var(--bg-white);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #f9f8f5;
    color: #333;
    padding: calc(var(--spacing-xxl) * 1.5) 0 0;
    position: relative;
}

.footer .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.footer-content {
    padding: 0 calc(var(--spacing-xl) * 2) var(--spacing-xxl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Brand */
.footer-brand {
    max-width: 260px;
}

.footer-logo {
    height: 55px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
}

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

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

.footer-col ul li a {
    color: #666;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

/* Newsletter Section */
.footer-newsletter {
    max-width: 320px;
}

.footer-newsletter h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
}

.newsletter-form-footer {
    margin-bottom: var(--spacing-md);
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    transition: border-color var(--transition-base);
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--primary-color);
}

.newsletter-input-wrapper i.fa-envelope {
    color: #999;
    margin-right: 10px;
    font-size: 0.9rem;
}

.newsletter-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: #333;
}

.newsletter-input-wrapper input::placeholder {
    color: #999;
}

.newsletter-input-wrapper button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    transition: transform var(--transition-fast);
}

.newsletter-input-wrapper button:hover {
    transform: translateX(3px);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: var(--spacing-lg) calc(var(--spacing-xl) * 2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0efe9;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.payment-icon:hover {
    opacity: 1;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Breadcrumb */
.breadcrumb {
    padding: var(--spacing-md) 0;
    background-color: var(--bg-light);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    margin: 0 var(--spacing-xs);
    color: var(--text-light);
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8E8E8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: var(--radius-lg);
}

.image-placeholder i {
    font-size: 4rem;
}

.product-image-large i {
    font-size: 8rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.error {
    color: var(--error-color);
    text-align: center;
    padding: var(--spacing-lg);
}

.success {
    color: var(--success-color);
}
