.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c1810 0%, #722f37 50%, #8b4513 100%);
    color: #fff;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/wine-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content {
    text-align: left;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-products {
    text-align: center;
}
.hero-products-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f8f8f8;
}
.hero-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}
.hero-product-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-product-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}
.product-image-wrapper {
    position: relative;
    margin-bottom: 1rem;
}
.product-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.hero-product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}
.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.product-info {
    text-align: center;
}
.product-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.product-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.product-title a:hover {
    color: #d4af37;
}
.product-price {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #722f37;
}
.product-region {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
    color: #d4af37;
}
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: linear-gradient(45deg, #722f37, #8b1538);
    color: #fff;
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(45deg, #8b1538, #4a1c20);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 47, 55, 0.4);
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: #722f37;
    border: 2px solid #722f37;
}
.btn-outline:hover {
    background: #722f37;
    color: #fff;
    transform: translateY(-2px);
}
.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}
.countries-section,
.food-pairings-section,
.newsletter-section {
    padding: 80px 0;
}
.countries-section {
    background: linear-gradient(135deg, #faf9f7 0%, #f6f4f1 100%);
}
.food-pairings-section {
    background: #fff;
}
.newsletter-section {
    background: linear-gradient(135deg, #722f37 0%, #2c1810 100%);
    color: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c1810;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    border-radius: 2px;
}
.newsletter-section .section-title,
.newsletter-title {
    color: #fff;
}
.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-section .section-subtitle,
.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
}
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.country-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.country-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.country-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.country-card:hover .country-image {
    transform: scale(1.05);
}
.country-info {
    padding: 2rem;
}
.country-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c1810;
}
.country-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}
.country-stats {
    margin-bottom: 1.5rem;
}
.wine-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #722f37;
    font-weight: 600;
}
.pairings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.pairing-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.pairing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.pairing-image-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.pairing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.pairing-card:hover .pairing-image {
    transform: scale(1.05);
}
.pairing-content {
    padding: 2rem;
}
.pairing-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c1810;
}
.pairing-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}
.pairing-wines {
    margin-bottom: 2rem;
}
.pairing-wines-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #722f37;
}
.wine-types-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wine-type {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    margin: 0.2rem 0.4rem 0.2rem 0;
    background: #f8f9fa;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #722f37;
    border: 1px solid rgba(114, 47, 55, 0.2);
}
.pairing-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.pairing-actions .wine-count {
    font-size: 0.9rem;
}
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
.newsletter-form {
    margin-bottom: 3rem;
}
.newsletter-form input[type="email"] {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    width: 300px;
    margin-right: 1rem;
    outline: none;
}
.newsletter-form button {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    color: #2c1810;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.newsletter-form button:hover {
    background: linear-gradient(45deg, #b8941f, #a0801b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.social-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}
.social-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}
.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
}
.social-icon {
    width: 20px;
    height: 20px;
    display: block;
}
.smooth-scroll {
    scroll-behavior: smooth;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.country-card,
.pairing-card,
.hero-product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.country-card.animate-in,
.pairing-card.animate-in,
.hero-product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}
.hero-product-card.animate-in {
    animation: fadeInScale 0.6s ease-out forwards;
}
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: none;
    }
    .hero-actions {
        justify-content: center;
    }
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .countries-grid,
    .pairings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .country-info,
    .pairing-content {
        padding: 1.5rem;
    }
    .newsletter-form input[type="email"] {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .social-links-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .btn {
        width: 100%;
        max-width: 280px;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .countries-section,
    .food-pairings-section,
    .newsletter-section {
        padding: 60px 0;
    }
    .container {
        padding: 0 15px;
    }
}