/* Ana CSS Dosyası - RoyaleWine */

:root {
    /* Primary Colors - Deep Wine Tones */
    --primary-dark: #2c1810;      /* Koyu fıçı kahverengisi */
    --primary-medium: #3d2317;    /* Orta fıçı kahverengisi */
    --primary-light: #4a2c1a;     /* Açık fıçı kahverengisi */
    
    /* Secondary Colors - Rich Gold */
    --secondary-gold: #c9a96e;    /* Zengin altın */
    --secondary-gold-light: #e6d4a8; /* Açık altın */
    --secondary-gold-dark: #a68b4f;  /* Koyu altın */
    
    /* Accent Colors - Wine Red */
    --accent-wine: #722f37;       /* Şarap kırmızısı */
    --accent-wine-light: #8b3a42; /* Açık şarap kırmızısı */
    --accent-wine-dark: #5a252b;  /* Koyu şarap kırmızısı */
    
    /* Neutral Colors - Warm Tones */
    --neutral-white: #fefefe;     /* Sıcak beyaz */
    --neutral-light: #f5f1eb;     /* Krem rengi */
    --neutral-medium: #8b7355;    /* Kahverengi */
    --neutral-dark: #3d2f1f;      /* Koyu kahverengi */
    
    /* Background Colors */
    --bg-primary: #fefefe;
    --bg-secondary: #f5f1eb;
    --bg-dark: #2c1810;
    
    /* Text Colors */
    --text-primary: #2c1810;
    --text-secondary: #8b7355;
    --text-light: #fefefe;
    --text-muted: rgba(254, 254, 254, 0.85);
    
    /* Legacy Colors for Compatibility */
    --primary-color: #8B0000;
    --secondary-color: #d4af37;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a52a2a 100%);
    color: white;
    padding: 120px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 12px 30px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-wine);
    color: var(--text-light);
    border: 2px solid var(--accent-wine);
}

.btn-primary:hover {
    background-color: var(--accent-wine-light);
    border-color: var(--accent-wine-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--accent-wine);
    border: 2px solid var(--accent-wine);
}

.btn-outline-primary:hover {
    background-color: var(--accent-wine);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--accent-wine);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Modern Wine Cards */
.wine-card {
    background: linear-gradient(145deg, var(--neutral-white) 0%, var(--bg-secondary) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.wine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wine-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.wine-card:hover::before {
    opacity: 1;
}

.wine-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.wine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(0.95) contrast(1.05);
}

.wine-card:hover .wine-image img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1) contrast(1.1);
}

.wine-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.status-available {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.status-sold_out {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.status-revise {
    background: linear-gradient(135deg, #ffc107, #f39c12);
    color: #212529;
}

.status-coming_soon {
    background: linear-gradient(135deg, #17a2b8, #3498db);
    color: white;
}

.wine-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
}

.wine-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wine-vintage {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 600;
    background: rgba(139, 0, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.wine-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #dc3545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wine-actions {
    margin-top: auto;
}

.wine-actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #a52a2a);
    border: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wine-actions .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;
}

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

.wine-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: #000000;
    color: var(--text-light);
    padding: 80px 0 30px 0;
    margin-top: 100px;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(114, 47, 55, 0.08) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-logo i {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.brand-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
}

.link-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-gold);
    border-radius: 1px;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.link-list a:hover {
    color: var(--secondary-gold);
    padding-left: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--secondary-gold);
}

.contact-item i {
    width: 16px;
    color: var(--secondary-gold);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link:hover {
    color: var(--secondary-gold);
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.legal-link:hover::after {
    width: 100%;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 60px 0 20px 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-brand .brand-name {
        font-size: 1.8rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Ultra Modern Header */
/* Modern Header Styles */
.modern-header {
    background: #000000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.modern-navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--secondary-gold);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--secondary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sell-btn, .buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sell-btn {
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    color: var(--primary-dark);
    border-color: var(--secondary-gold);
}

.sell-btn:hover {
    background: var(--secondary-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
    color: var(--primary-dark);
}

.buy-btn {
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    color: var(--text-light);
    border-color: var(--accent-wine);
}

.buy-btn:hover {
    background: var(--accent-wine-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.4);
    color: var(--text-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item i {
    font-size: 0.7rem;
    width: 12px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .brand-text {
        gap: 0.1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--secondary-gold);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--secondary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sell-btn, .buy-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sell-btn {
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.sell-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.5);
}

.buy-btn {
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.4);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(114, 47, 55, 0.5);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-line {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .brand-text {
        gap: 0.1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
}

.ultra-modern-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.ultra-modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.title-main {
    color: var(--text-light);
    font-weight: 200;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 100;
    color: #d4af37;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Ultra Modern Content */
.ultra-modern-content {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
}

.floating-filter-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 100px;
    z-index: 100;
}


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

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

.filter-toggles {
    display: flex;
    gap: 8px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 50px;
}

.filter-toggle {
    background: none;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.filter-toggle.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.filter-toggle:hover:not(.active) {
    background: rgba(139, 0, 0, 0.1);
    color: var(--primary-color);
}

.modern-sort {
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.9rem;
    background: white;
    color: #333;
    min-width: 180px;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
}

.modern-sort:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

.ultra-modern-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.results-badge {
    background: linear-gradient(135deg, var(--primary-color), #a52a2a);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.results-count {
    font-size: 1.2rem;
    font-weight: 700;
}

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

.pagination-indicator {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.page-info {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.ultra-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.ultra-modern-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    backdrop-filter: blur(10px);
}

.ultra-modern-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.ultra-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-wine), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-modern-card:hover::before {
    opacity: 1;
}

.wine-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.wine-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
}

.ultra-modern-card:hover .wine-image {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1) contrast(1.1) saturate(1.2);
}

.wine-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.wine-actions-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}


.btn-action {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-action:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.wine-info {
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.wine-header {
    margin-bottom: 16px;
}

.wine-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-wine));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wine-vintage {
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.wine-details {
    margin-bottom: 20px;
}

.wine-producer {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

.wine-region {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
}

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

.wine-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-modern-detail {
    background: linear-gradient(135deg, var(--primary-color), #a52a2a);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-modern-detail::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;
}

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

.btn-modern-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    color: white;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.no-results p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modern-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pagination-info {
    color: #666;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pagination {
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-pagination:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 0, 0, 0.05);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 0, 0, 0.05);
}

.pagination-number.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Modern Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--accent-wine);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
    background: var(--accent-wine-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(114, 47, 55, 0.4);
}

.scroll-to-top-btn:active {
    transform: translateY(-1px) scale(0.95);
}

.scroll-to-top-btn i {
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-gradient {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .filter-toggles {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .ultra-modern-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ultra-modern-results {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modern-pagination {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

/* Search Section */
.search-section {
    padding: 80px 0;
}

.search-form .form-control,
.search-form .form-select {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.25);
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #a52a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

/* Product Detail Page */
.product-detail {
    padding: 120px 0 80px 0;
}

.product-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-info {
    padding-left: 40px;
}

.product-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-vintage {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.product-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--text-light);
}

.commission-info {
    background: linear-gradient(135deg, var(--secondary-color), #f4d03f);
    color: var(--text-dark);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.commission-info h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

/* Forms */
.form-section {
    padding: 120px 0 80px 0;
    background-color: var(--bg-light);
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 20px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.25);
}

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

/* Shop Page */
.shop-header {
    padding: 120px 0 40px 0;
    background-color: var(--bg-light);
}

.filter-sidebar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

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

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    flex: 1;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 10px;
    transition: var(--transition);
}

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

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

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    padding: 20px;
    margin-bottom: 30px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Clean Hero Section */
.clean-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('../images/wineslider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.4) 0%, rgba(44, 24, 16, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-wine);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-wine-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    color: var(--text-light);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

/* Ultra Modern Featured Section */
.ultra-modern-featured {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.1;
    color: #8B0000;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #000000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--secondary-gold);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    color: white;
    background: var(--secondary-gold);
    border-color: var(--secondary-gold);
}

/* Modern Search Section */
.modern-search {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.search-content {
    max-width: 800px;
    margin: 0 auto;
}

.search-header {
    margin-bottom: 40px;
}

.search-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.1;
    color: #8B0000;
    letter-spacing: 0.02em;
}

.search-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.search-form-container {
    margin-bottom: 30px;
}

.search-inputs {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 16px;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 16px;
    color: #6c757d;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-input:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
    background: white;
}

.modern-select {
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modern-select:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
    background: white;
}

.modern-select option {
    background: white;
    color: #2c3e50;
}

.btn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-search:hover {
    background: #6B0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.quick-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-label {
    color: #6c757d;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 8px 16px;
    background: white;
    color: #8B0000;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.filter-tag:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

/* Wine-Inspired Color Palette */
:root {
    /* Primary Colors - Deep Wine Tones */
    --primary-dark: #2c1810;
    --primary-medium: #3d2317;
    --primary-light: #4a2c1a;
    
    /* Secondary Colors - Rich Gold */
    --secondary-gold: #c9a96e;
    --secondary-gold-light: #e6d4a8;
    --secondary-gold-dark: #a68b4f;
    
    /* Accent Colors - Wine Red */
    --accent-wine: #722f37;
    --accent-wine-light: #8b3a42;
    --accent-wine-dark: #5a252b;
    
    /* Neutral Colors - Warm Tones */
    --neutral-white: #fefefe;
    --neutral-light: #f5f1eb;
    --neutral-medium: #8b7355;
    --neutral-dark: #3d2f1f;
    
    /* Background Colors */
    --bg-primary: #fefefe;
    --bg-secondary: #f5f1eb;
    --bg-dark: #2c1810;
    
    /* Text Colors */
    --text-primary: #2c1810;
    --text-secondary: #8b7355;
    --text-light: #fefefe;
    --text-muted: rgba(254, 254, 254, 0.85);
}

/* Premium Features Section */
.premium-features {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.premium-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(114, 47, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.features-header .section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--accent-wine);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(114, 47, 55, 0.2);
}

.features-header .section-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--neutral-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-gold), var(--secondary-gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
    border-color: var(--accent-wine);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    border-radius: 50%;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.4);
}

.feature-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.feature-highlight {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

/* Additional Animations */
@keyframes heroOverlay {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes bottleFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(5deg); }
}

@keyframes glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(90deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .clean-hero {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
    
    .modern-search {
        padding: 60px 0;
    }
    
    .search-title {
        font-size: 2.2rem;
    }
    
    .search-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .premium-features {
        padding: 80px 0;
    }
    
    .features-header .section-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .form-card {
        margin: 0 15px;
        padding: 30px 20px;
    }
    
    .price-range {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .wine-card {
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

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

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

/* Utility Classes */
.text-gold {
    color: var(--secondary-color) !important;
}

.bg-gold {
    background-color: var(--secondary-color) !important;
}

.border-gold {
    border-color: var(--secondary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow) !important;
}

.shadow-lg-custom {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-custom {
    border-radius: 15px !important;
}

.transition-custom {
    transition: var(--transition) !important;
}

/* Super Hero Section */
.super-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px; /* Header height fix */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7) 0%, rgba(44, 24, 16, 0.5) 50%, rgba(114, 47, 55, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 25px;
    margin-bottom: 2rem;
}

.hero-badge span {
    color: var(--secondary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-super-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-super-primary::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 ease;
}

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

.btn-super-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.5);
    color: var(--text-light);
}

.btn-super-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    text-decoration: none;
    border: 2px solid rgba(201, 169, 110, 0.5);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-super-outline:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    border-color: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Super Featured Section */
.super-featured {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.super-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(114, 47, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.super-featured .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 25px;
    margin-bottom: 1.5rem;
}

.section-badge span {
    color: var(--secondary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.super-featured .section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-main {
    color: var(--text-primary);
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent-wine), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.super-featured .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.super-wines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.super-wine-card {
    background: var(--neutral-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
}

.super-wine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-wine), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.super-wine-card:hover::before {
    opacity: 1;
}

.super-wine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(44, 24, 16, 0.15);
}

.wine-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.super-wine-card:hover .wine-image {
    transform: scale(1.08);
}

.wine-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.wine-status-badge.status-available {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.wine-status-badge.status-sold_out {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.wine-status-badge.status-reserved {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.wine-status-badge.status-coming_soon {
    background: rgba(139, 92, 246, 0.9);
    color: white;
}

.wine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7), rgba(114, 47, 55, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.super-wine-card:hover .wine-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.view-btn:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.wine-content {
    padding: 30px;
}

.wine-header {
    margin-bottom: 20px;
}

.wine-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.wine-vintage {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.wine-details {
    margin-bottom: 25px;
}

.wine-producer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-weight: 500;
}

.wine-region {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.wine-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-wine);
}

.btn-wine-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-wine-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3);
    color: var(--text-light);
}

.section-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Super Search Section */
.super-search {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.super-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(114, 47, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.search-header {
    margin-bottom: 50px;
}

.search-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.search-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.search-form {
    margin-bottom: 40px;
}

.search-input-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    background: var(--neutral-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.15);
}

.search-select {
    padding: 18px 20px;
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    background: var(--neutral-white);
    min-width: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.05);
}

.search-select:focus {
    outline: none;
    border-color: var(--secondary-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.15);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(114, 47, 55, 0.4);
}

.quick-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.filter-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: var(--neutral-white);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.05);
}

.filter-tag:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.2);
    border-color: var(--secondary-gold);
}

.filter-tag i {
    font-size: 0.9rem;
}

/* Super Features Section */
.super-features {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.super-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(114, 47, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.super-features .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.super-features .section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.super-features .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.super-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.super-feature-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--neutral-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.super-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-wine), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.super-feature-card:hover::before {
    opacity: 1;
}

.super-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(44, 24, 16, 0.15);
}

.feature-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-wine-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-wine), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.super-feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.4);
}

.super-feature-card:hover .icon-glow {
    opacity: 0.3;
}

.feature-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.feature-highlight {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    color: var(--primary-dark);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
    transition: all 0.3s ease;
}

.super-feature-card:hover .feature-highlight {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

/* Responsive Design for Super Sections */
@media (max-width: 768px) {
    .super-hero {
        height: 80vh;
        min-height: 600px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-super-primary,
    .btn-super-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .super-wines-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .super-wine-card {
        max-width: 100%;
    }
    
    .wine-image-container {
        height: 250px;
    }
    
    .search-input-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .input-wrapper {
        min-width: 100%;
    }
    
    .search-select {
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .quick-filters {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .filter-tags {
        justify-content: center;
    }
    
    .super-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .super-feature-card {
        padding: 40px 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .feature-highlight {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .search-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .super-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .super-wines-grid {
        gap: 25px;
    }
    
    .wine-content {
        padding: 25px;
    }
    
    .wine-name {
        font-size: 1.1rem;
    }
    
    .wine-price {
        font-size: 1.2rem;
    }
    
    .super-feature-card {
        padding: 30px 15px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .search-title {
        font-size: 1.8rem;
    }
}
