/* Boho/Eco Design System for Tierra Café */

/* Color System */
:root {
    --color-coffee: #8B6F47;
    --color-sage: #7C9885;
    --color-sand: #D4A574;
    --color-terra: #BC6C25;
    --color-cream: #FEFAE0;
    --color-olive: #606C38;
    --color-stone: #DDA15E;
    --color-white: #FFFDF7;

    /* Gradients */
    --gradient-earth: linear-gradient(135deg, var(--color-coffee) 0%, var(--color-sage) 50%, var(--color-terra) 100%);
    --gradient-natural: linear-gradient(45deg, var(--color-sand) 0%, var(--color-stone) 100%);

    /* Shadows */
    --shadow-soft: 0 4px 12px rgba(139, 111, 71, 0.1);
    --shadow-medium: 0 8px 24px rgba(139, 111, 71, 0.15);
    --shadow-strong: 0 12px 32px rgba(139, 111, 71, 0.2);

    /* Typography */
    --font-heading: 'Amatic SC', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-organic: 255px 15px 225px 15px/15px 225px 15px 255px;

    /* Container */
    --container-max: 1400px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-coffee);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

.boho-body {
    position: relative;
}/* Text
ure Overlay */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(188, 108, 37, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 152, 133, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-coffee);
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
}

.boho-subheading {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-sage);
    font-weight: 400;
}

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

/* Eco Banner */
.eco-banner {
    background: var(--gradient-earth);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-xs) 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.eco-banner p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.eco-banner i {
    color: var(--color-cream);
}

/* Header */
.boho-header {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-sand);
}

.secondary-nav {
    display: flex;
    gap: var(--space-md);
}

.secondary-nav a {
    color: var(--color-sage);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.secondary-nav a:hover {
    color: var(--color-coffee);
}

.header-logo {
    text-align: center;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-coffee);
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.75rem;
    color: var(--color-sage);
    margin-top: 2px;
}

.header-actions {
    display: flex;
    gap: var(--space-sm);
}

.action-btn {
    background: none;
    border: none;
    color: var(--color-coffee);
    font-size: 1.25rem;
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: var(--color-cream);
    color: var(--color-sage);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-terra);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Main Navigation */
.main-navigation {
    padding: var(--space-sm) 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--color-coffee);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link:hover,
.nav-link.active {
    background: var(--color-sage);
    color: var(--color-white);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-medium);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    color: var(--color-coffee);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--color-cream);
    color: var(--color-sage);
}

/* Buttons */
.boho-btn {
    background: var(--color-sage);
    color: var(--color-white);
    border: 2px solid var(--color-sage);
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    position: relative;
    overflow: hidden;
}

.boho-btn:hover {
    background: transparent;
    color: var(--color-sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.boho-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.boho-btn:hover::before {
    left: 100%;
}

/* Cards */
.boho-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-sand);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.boho-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-earth);
}

/* Hand-drawn Elements */
.hand-drawn-border {
    border: 2px solid var(--color-coffee);
    border-radius: var(--radius-organic);
}

.hand-drawn-underline {
    position: relative;
}

.hand-drawn-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-sage);
    border-radius: 50px;
    transform: rotate(-1deg);
}

/* Organic Shapes */
.organic-shape {
    clip-path: polygon(0% 20%, 20% 0%, 80% 5%, 100% 25%, 95% 80%, 75% 100%, 25% 95%, 5% 75%);
}

/* Watercolor Effects */
.watercolor-bg {
    position: relative;
}

.watercolor-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top left, rgba(124, 152, 133, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(188, 108, 37, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    border-radius: inherit;
}

/* Responsive Grid */
.boho-grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .nav-menu {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .secondary-nav {
        justify-content: center;
    }

    .header-actions {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .nav-menu {
        gap: var(--space-xs);
    }

    .nav-link {
        font-size: 1rem;
        padding: var(--space-xs);
    }
}/*
 Footer Styles */
.boho-footer {
    background: var(--color-coffee);
    color: var(--color-cream);
    position: relative;
    margin-top: var(--space-xxl);
}

.footer-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 152, 133, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-xxl) var(--space-md) var(--space-md);
}

.footer-newsletter {
    background: var(--color-sage);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.newsletter-title {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.newsletter-content p {
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 250px;
    background: var(--color-white);
    color: var(--color-coffee);
}

.newsletter-form button {
    background: var(--color-terra);
    color: var(--color-white);
    border: none;
    border-radius: 25px;
    padding: var(--space-sm) var(--space-lg);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--color-stone);
    transform: translateY(-2px);
}

.newsletter-incentive {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-cream);
    font-weight: 500;
}

.newsletter-incentive i {
    font-size: 1.5rem;
    color: var(--color-stone);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-title {
    color: var(--color-sand);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 2px 0;
}

.footer-nav a:hover {
    color: var(--color-sand);
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(254, 250, 224, 0.2);
    border-bottom: 1px solid rgba(254, 250, 224, 0.2);
}

.contact-info {
    display: flex;
    gap: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-cream);
}

.contact-item i {
    color: var(--color-sand);
}

.contact-item a {
    color: var(--color-cream);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--color-sand);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    color: var(--color-cream);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: var(--space-xs);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--color-sand);
    background: rgba(254, 250, 224, 0.1);
    transform: translateY(-2px);
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.cert-badge {
    background: var(--color-sage);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-legal {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.legal-info {
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--color-cream);
    opacity: 0.8;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.legal-nav a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-nav a:hover {
    color: var(--color-sand);
}

.separator {
    color: var(--color-cream);
    opacity: 0.5;
}

.footer-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.payment-title {
    color: var(--color-sand);
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--color-cream);
}

.bizum-icon {
    background: var(--color-sand);
    color: var(--color-coffee);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(254, 250, 224, 0.2);
    color: var(--color-cream);
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-bottom i {
    color: var(--color-terra);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }

    .footer-contact {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-certifications {
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-nav {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .separator {
        display: none;
    }

    .footer-payment {
        flex-direction: column;
        gap: var(--space-sm);
    }
}/* Co
ntact Form Styles */
.boho-contact-section {
    padding: var(--space-xxl) 0;
    background: var(--color-white);
    position: relative;
}

.boho-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(124, 152, 133, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(188, 108, 37, 0.05) 0%, transparent 50%);
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--color-sage);
}

.boho-form {
    background: var(--color-white);
    padding: var(--space-xxl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-sand);
    margin-bottom: var(--space-xxl);
    position: relative;
}

.boho-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-earth);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-coffee);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.form-label i {
    color: var(--color-sage);
}

.form-input,
.form-select,
.form-textarea {
    padding: var(--space-md);
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-cream);
    color: var(--color-coffee);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(124, 152, 133, 0.1);
}

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

.form-preferences {
    margin: var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-sm);
    background: var(--color-cream);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-sage);
    border-color: var(--color-sage);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--color-sage);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--color-coffee);
}

.form-actions {
    text-align: center;
}

.boho-submit-btn {
    background: var(--gradient-earth);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    padding: var(--space-md) var(--space-xxl);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.boho-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.boho-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.boho-submit-btn:hover::before {
    left: 100%;
}

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

.alt-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-sand);
    transition: all 0.3s ease;
    position: relative;
}

.alt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-sage);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.alt-card i {
    font-size: 2.5rem;
    color: var(--color-sage);
    margin-bottom: var(--space-md);
}

.alt-card h4 {
    color: var(--color-coffee);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.alt-card p {
    color: var(--color-coffee);
    margin-bottom: var(--space-xs);
    opacity: 0.8;
}

.alt-card a {
    color: var(--color-sage);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.alt-card a:hover {
    color: var(--color-coffee);
    text-decoration: underline;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .boho-form {
        padding: var(--space-lg);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-alternatives {
        grid-template-columns: 1fr;
    }

    .boho-submit-btn {
        width: 100%;
        justify-content: center;
    }
}/*
 Product Card Styles */
.boho-product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-sand);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.boho-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.boho-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-earth);
    z-index: 1;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.boho-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--color-sage);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.product-badge.organic {
    background: var(--color-olive);
}

.product-badge.new {
    background: var(--color-terra);
}

.product-actions {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.boho-product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .action-btn {
    background: var(--color-white);
    color: var(--color-coffee);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.product-actions .action-btn:hover {
    background: var(--color-sage);
    color: var(--color-white);
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-origin {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-sage);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.product-name {
    margin-bottom: var(--space-sm);
    flex-grow: 1;
}

.product-name a {
    color: var(--color-coffee);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--color-sage);
}

.product-details {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-coffee);
    font-size: 0.875rem;
    opacity: 0.8;
}

.detail-item i {
    color: var(--color-sage);
}

.product-notes {
    color: var(--color-coffee);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
    opacity: 0.8;
    font-style: italic;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--color-sand);
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-coffee);
}

.weight {
    color: var(--color-sage);
    font-size: 0.875rem;
    font-weight: 500;
}

.product-certifications {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.cert-icon {
    font-size: 1.25rem;
    cursor: help;
}

.add-to-cart-btn {
    margin: 0 var(--space-lg) var(--space-lg);
    justify-content: center;
    width: calc(100% - 2 * var(--space-lg));
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-xxl) 0;
}

/* Featured Products Section */
.featured-products {
    padding: var(--space-xxl) 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-sage);
    font-style: italic;
}

/* Responsive Product Cards */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--space-lg);
    }

    .product-info {
        padding: var(--space-md);
    }

    .product-details {
        flex-direction: column;
        gap: var(--space-xs);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        position: static;
        flex-direction: row;
        justify-content: center;
        opacity: 1;
        transform: none;
        padding: var(--space-sm);
        background: rgba(255, 255, 255, 0.9);
    }
}/
* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 111, 71, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-header {
    display: flex;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-sand);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.25rem;
    color: var(--color-coffee);
    background: transparent;
    font-family: var(--font-body);
}

.search-input::placeholder {
    color: var(--color-sage);
}

.search-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-sage);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: var(--color-cream);
    color: var(--color-coffee);
}

.search-results {
    padding: var(--space-lg);
    max-height: 400px;
    overflow-y: auto;
}

.search-placeholder {
    text-align: center;
    color: var(--color-sage);
    font-style: italic;
}

/* Hero Section Styles */
.boho-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.boho-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 152, 133, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(188, 108, 37, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-sage);
    margin-bottom: var(--space-xl);
    font-family: var(--font-serif);
    font-style: italic;
}

.boho-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-earth);
    color: var(--color-white);
    text-decoration: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.boho-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.boho-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.boho-cta:hover::before {
    left: 100%;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.botanical-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-sage);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

/* Sustainability Banner */
.sustainability-banner {
    background: var(--color-sage);
    color: var(--color-white);
    padding: var(--space-xl) 0;
    margin: var(--space-xxl) 0;
}

.banner-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.eco-stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.eco-stat:hover {
    transform: translateY(-5px);
}

.eco-stat i {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-cream);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: var(--space-xs);
}

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

/* Form Focus States */
.form-group.focused .form-label {
    color: var(--color-sage);
    transform: translateY(-2px);
}

.form-group.focused .form-input,
.form-group.focused .form-select,
.form-group.focused .form-textarea {
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(124, 152, 133, 0.1);
}

/* Favorite Button Active State */
.add-favorite.active {
    background: var(--color-terra);
    color: var(--color-white);
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .boho-hero {
        min-height: 60vh;
        padding: var(--space-xl) 0;
    }

    .banner-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .eco-stat {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-container {
        grid-template-columns: 1fr;
    }

    .search-container {
        width: 95%;
        margin: 0 auto;
    }

    .search-header {
        padding: var(--space-md);
    }

    .search-input {
        font-size: 1rem;
    }
}/* Shopping Cart Styles */
.cart-btn {
    background: var(--color-coffee) !important;
    color: var(--color-white) !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cart-btn i {
    color: var(--color-white) !important;
    font-size: 1.25rem !important;
}

.cart-btn:hover {
    background: var(--color-sage) !important;
    transform: scale(1.1);
}

.cart-btn:hover i {
    color: var(--color-white) !important;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-terra);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--color-white);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 111, 71, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    display: flex;
    opacity: 1;
}

.cart-popup {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.cart-overlay.active .cart-popup {
    transform: translateY(0);
}

.cart-header {
    background: var(--color-sage);
    color: var(--color-white);
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-white);
}

.cart-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-content {
    padding: var(--space-lg);
    max-height: 60vh;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: var(--space-xxl) var(--space-lg);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.empty-cart p {
    color: var(--color-sage);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.cart-items {
    margin-bottom: var(--space-lg);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-sand);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

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

.cart-item-name {
    font-weight: 600;
    color: var(--color-coffee);
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.cart-item-details {
    font-size: 0.8rem;
    color: var(--color-sage);
    margin-bottom: var(--space-xs);
}

.cart-item-price {
    font-weight: 600;
    color: var(--color-coffee);
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.quantity-btn {
    background: var(--color-sage);
    color: var(--color-white);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

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

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--color-coffee);
}

.remove-item {
    background: var(--color-terra);
    color: var(--color-white);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.remove-item:hover {
    background: #a0471c;
}

.cart-summary {
    border-top: 2px solid var(--color-sand);
    padding-top: var(--space-lg);
}

.cart-total {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-coffee);
}

.checkout-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: var(--space-md) var(--space-lg);
}

/* Checkout Overlay */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 111, 71, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: var(--space-lg);
}

.checkout-overlay.active {
    display: flex;
    opacity: 1;
}

.checkout-popup {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    margin: auto;
}

.checkout-overlay.active .checkout-popup {
    transform: translateY(0);
}

.checkout-header {
    background: var(--color-coffee);
    color: var(--color-white);
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-white);
}

.checkout-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.checkout-content {
    padding: var(--space-lg);
    max-height: 75vh;
    overflow-y: auto;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.checkout-section h4 {
    color: var(--color-coffee);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
    border-bottom: 2px solid var(--color-sand);
    padding-bottom: var(--space-sm);
}

.checkout-section .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.checkout-section .form-group {
    display: flex;
    flex-direction: column;
}

.checkout-section .form-group.full-width {
    grid-column: 1 / -1;
}

.checkout-section label {
    color: var(--color-coffee);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.checkout-section input,
.checkout-section textarea {
    padding: var(--space-sm);
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--color-cream);
    color: var(--color-coffee);
    transition: border-color 0.3s ease;
}

.checkout-section input:focus,
.checkout-section textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    background: var(--color-white);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--color-sage);
    background: var(--color-cream);
}

.payment-method input[type="radio"] {
    margin: 0;
}

.payment-method input[type="radio"]:checked + .payment-option {
    color: var(--color-sage);
    font-weight: 600;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-coffee);
    font-size: 0.9rem;
}

.payment-option i {
    font-size: 1.2rem;
}

.checkout-summary {
    background: var(--color-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-sand);
}

.checkout-items-list {
    margin-bottom: var(--space-lg);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-sand);
    font-size: 0.9rem;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-name {
    color: var(--color-coffee);
}

.checkout-item-quantity {
    color: var(--color-sage);
    margin: 0 var(--space-sm);
}

.checkout-item-price {
    color: var(--color-coffee);
    font-weight: 600;
}

.checkout-total {
    border-top: 2px solid var(--color-sage);
    padding-top: var(--space-md);
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    color: var(--color-coffee);
}

.total-final {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-coffee);
    border-top: 1px solid var(--color-sand);
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
}

.checkout-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: space-between;
    align-items: center;
}

.btn-secondary {
    background: none;
    border: 2px solid var(--color-sage);
    color: var(--color-sage);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-secondary:hover {
    background: var(--color-sage);
    color: var(--color-white);
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-popup,
    .checkout-popup {
        width: 95%;
        max-height: 95vh;
    }

    .checkout-section .form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .checkout-actions button {
        width: 100%;
        justify-content: center;
    }

    .payment-methods {
        gap: var(--space-xs);
    }

    .payment-method {
        padding: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .cart-item-controls {
        align-self: flex-end;
    }

    .checkout-overlay {
        padding: var(--space-sm);
    }
}