:root {
    --wine-primary: #800000; /* Maroon */
    --wine-secondary: #006400; /* Dark Green */
    --wine-white: #ffffff; /* White */
    --wine-tertiary: #f9f3e9;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #eeeeee;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section - NO DEFAULT BACKGROUND IMAGE */
.hero-section {
    position: relative;
    width: 100vw;
    height: calc(100vh - 117px); /* Subtract the height of the navbar */
    min-height: 650px;
    margin-left: calc(-50vw + 50%);
    margin-top: -2rem; /* Pull it up to meet the navbar */
    /* REMOVED: background-image: url('../img/wine.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; /* Light gray fallback when no image */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-btn {
    padding: 16px 45px;
    font-size: 1.15rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.primary-btn:hover {
    background-color: #a52a2a;
    border-color: #a52a2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--wine-primary);
    border: 2px solid white;
    font-weight: 600;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--wine-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Us Section */
.about-us-section {
    background-color: var(--wine-primary);
    margin-top: 80px; /* Add spacing from the hero section */
    position: relative;
}

/* Add a decorative element before the section */
.about-us-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--wine-primary), transparent);
}

.about-us-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
    position: relative;
}

/* Handle single column layout when no image */
.about-us-container[style*="grid-template-columns: 1fr"] {
    grid-template-columns: 1fr;
}

.about-us-container[style*="grid-template-columns: 1fr"] .about-us-content {
    text-align: center;
    padding: 80px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.about-us-container[style*="grid-template-columns: 1fr"] .learn-more-btn {
    align-self: center;
}

.about-us-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--wine-primary);
    color: white;
    position: relative;
}

/* Add a subtle pattern overlay to the content area */
.about-us-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.02)" fill-opacity="0.4"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    pointer-events: none;
}

.about-us-content > * {
    position: relative;
    z-index: 1;
}

.about-us-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.2;
    position: relative;
}

/* Add a decorative underline to the heading */
.about-us-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: white;
    opacity: 0.8;
}

.about-us-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    font-weight: 400;
}

.about-us-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Add a subtle overlay effect to the image */
.about-us-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--wine-primary) 0%, transparent 30%);
    opacity: 0.3;
    pointer-events: none;
}

.barrels-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
}

.learn-more-btn {
    display: inline-block;
    background-color: white;
    color: var(--wine-primary);
    padding: 16px 45px;
    border-radius: 50px; /* Made more rounded */
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 35px;
    align-self: flex-start;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
}

/* Add a hover effect with a sliding background */
.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.learn-more-btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.learn-more-btn:hover::before {
    left: 0;
}

/* Featured Products Section - NO DEFAULT BACKGROUND */
.featured-products-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    /* REMOVED: background-image: url(...); */
}

.featured-products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-products-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-products-section .section-header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--wine-primary);
    margin-bottom: 15px;
}

.featured-products-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Wine Cards Grid */
.wine-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Wine Card */
.wine-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.wine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Wine Badge */
.wine-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
}

.wine-badge.seasonal {
    background-color: #ff9800;
    color: white;
}

.wine-badge.new {
    background-color: #4caf50;
    color: white;
}

.wine-badge.promotional {
    background-color: #f44336;
    color: white;
}

/* Wine Image Container */
.wine-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: #f8f8f8;
}

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

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

/* Wine Details */
.wine-details {
    padding: 25px;
}

.wine-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--wine-primary);
    margin-bottom: 8px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.wine-region {
    color: var(--wine-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.wine-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Price Box */
.wine-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.wine-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--wine-primary);
}

.original-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

/* Promotion Info */
.promotion-info {
    color: #f44336;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
    min-height: 20px;
}

/* Wine Button */
.wine-btn {
    display: inline-block;
    background-color: var(--wine-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--wine-primary);
}

.wine-btn:hover {
    background-color: transparent;
    color: var(--wine-primary);
    transform: translateY(-2px);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--wine-primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--wine-primary);
}

.view-all-btn:hover {
    background-color: transparent;
    color: var(--wine-primary);
    transform: translateY(-2px);
}

/* Premium Wine Collection Section - NO DEFAULT BACKGROUND */
.wine-collection-section {
    max-width: 1200px;
    margin: 100px auto 100px;
    padding: 60px 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 0, 0, 0.05);
    /* REMOVED: background-image: url(...); */
}

.collection-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M1 1h2v2H1V1zm4 0h2v2H5V1zm4 0h2v2H9V1zm4 0h2v2h-2V1zm4 0h2v2h-2V1zm0 4h2v2h-2V5zM1 5h2v2H1V5zm8 0h2v2H9V5zm4 0h2v2h-2V5zM5 5h2v2H5V5zm-4 4h2v2H1V9zm4 0h2v2H5V9zm4 0h2v2H9V9zm4 0h2v2h-2V9zm4 0h2v2h-2V9zM1 13h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2zM1 17h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z" fill="rgba(128,0,0,0.03)" fill-rule="evenodd"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

/* Enhanced Header with Decorative Elements */
.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.header-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: var(--wine-primary);
}

.header-icon {
    margin: 0 15px;
    font-size: 1.8rem;
}

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

.section-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    color: var(--wine-primary);
    margin: 0 0 25px 0;
    position: relative;
    display: inline-block;
}

.section-header h3::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: var(--wine-secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Split the categories into two rows with a divider */
.collection-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(128, 0, 0, 0.05), rgba(128, 0, 0, 0.3), rgba(128, 0, 0, 0.05));
    max-width: 200px;
}

.wine-icon {
    margin: 0 20px;
    font-size: 1.2rem;
    color: var(--wine-primary);
}

/* Collection Footer with View All Button */
.collection-footer {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wine-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(128, 0, 0, 0.3);
    font-weight: 500;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    background-color: #600000;
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.4);
}

.arrow-icon {
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Wine Categories Grid */
.wine-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Enhanced Wine Category Card */
.wine-category {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.wine-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(128, 0, 0, 0.15);
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Premium Image Container */
.category-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.wine-category:hover .category-image img {
    transform: scale(1.08);
}

/* Luxury Overlay Effect */
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 30%,
    rgba(0,0,0,0.1) 70%,
    transparent 100%);
    padding: 40px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.5s ease;
}

.wine-category:hover .category-overlay {
    opacity: 1;
}

/* Premium Category Tag */
.category-tag {
    display: inline-block;
    background-color: var(--wine-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition-delay: 0.1s;
    max-width: fit-content;
}

.wine-category:hover .category-tag {
    transform: translateY(0);
    opacity: 1;
}

/* Premium Category Title */
.category-overlay h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition-delay: 0.2s;
}

.wine-category:hover .category-overlay h4 {
    transform: translateY(0);
    opacity: 1;
}

/* Luxury Explore Button */
.explore-btn {
    display: inline-block;
    color: white;
    background-color: rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.5s ease;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(20px);
    opacity: 0;
    transition-delay: 0.3s;
    font-weight: 500;
    max-width: fit-content;
}

.wine-category:hover .explore-btn {
    transform: translateY(0);
    opacity: 1;
    background-color: var(--wine-primary);
    border-color: var(--wine-primary);
}

.explore-btn:hover {
    background-color: white !important;
    color: var(--wine-primary) !important;
    border-color: white !important;
}

/* Premium Category Details */
.category-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    min-height: 150px;
}

.category-details h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    color: var(--wine-primary);
}

.category-details p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Premium Wine Category Colors */
.wine-category.red .category-tag {
    background-color: #8B0000;
}

.wine-category.white .category-tag {
    background-color: #6B8E23;
}

.wine-category.rose .category-tag {
    background-color: #DB7093;
}

.wine-category.sweet .category-tag {
    background-color: #B8860B;
}

.wine-category.sparkling .category-tag {
    background-color: #4682B4;
}

.wine-category.moscato .category-tag {
    background-color: #9370DB;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-section {
        height: calc(100vh - 117px);
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .about-us-content {
        padding: 60px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: calc(100vh - 200px);
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-us-section {
        margin-top: 60px;
    }

    .about-us-section::before {
        top: -30px;
    }

    .about-us-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-us-content {
        padding: 60px 40px;
        text-align: center;
        order: 2; /* Put content below image on mobile */
    }

    .about-us-content h2 {
        font-size: 3rem;
    }

    .about-us-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .learn-more-btn {
        align-self: center;
    }

    .about-us-image {
        height: 400px;
        order: 1; /* Put image above content on mobile */
    }

    .barrels-image {
        min-height: 400px;
    }

    .wine-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: -1.5rem;
        height: calc(100vh - 180px);
        min-height: 550px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 35px;
    }

    .about-us-section {
        margin-top: 50px;
    }

    .about-us-content {
        padding: 50px 30px;
    }

    .about-us-content h2 {
        font-size: 2.6rem;
    }

    .about-us-content p {
        font-size: 1.1rem;
    }

    .about-us-image {
        height: 350px;
    }

    .barrels-image {
        min-height: 350px;
    }

    .featured-products-section {
        padding: 60px 0;
    }

    .featured-products-section .section-header h2 {
        font-size: 2.8rem;
    }

    .wine-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wine-name {
        font-size: 1.6rem;
        min-height: auto;
    }

    .wine-description {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: -1rem;
        height: calc(100vh - 150px);
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-us-section {
        margin-top: 40px;
    }

    .about-us-content {
        padding: 40px 20px;
    }

    .about-us-content h2 {
        font-size: 2.2rem;
    }

    .about-us-content p {
        font-size: 1rem;
    }

    .about-us-image {
        height: 300px;
    }

    .barrels-image {
        min-height: 300px;
    }

    .learn-more-btn {
        padding: 14px 35px;
        font-size: 1.05rem;
    }

    .featured-products-section {
        padding: 50px 0;
    }

    .featured-products-section .container {
        padding: 0 15px;
    }

    .featured-products-section .section-header h2 {
        font-size: 2.3rem;
    }

    .wine-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .wine-details {
        padding: 20px;
    }

    .wine-price {
        font-size: 1.4rem;
    }

    .wine-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: -1rem;
        height: calc(100vh - 120px);
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .about-us-content h2 {
        font-size: 2rem;
    }

    .about-us-content p {
        font-size: 0.95rem;
    }

    .about-us-image {
        height: 250px;
    }

    .barrels-image {
        min-height: 250px;
    }

    .featured-products-section {
        padding: 40px 0;
    }

    .featured-products-section .section-header {
        margin-bottom: 40px;
    }

    .featured-products-section .section-header h2 {
        font-size: 2rem;
    }

    .featured-products-section .section-header p {
        font-size: 1rem;
    }

    .wine-cards-grid {
        gap: 15px;
    }

    .wine-image {
        height: 240px;
    }

    .wine-details {
        padding: 15px;
    }

    .wine-name {
        font-size: 1.4rem;
    }

    .wine-region {
        font-size: 0.9rem;
    }

    .wine-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .wine-price {
        font-size: 1.3rem;
    }

    .original-price {
        font-size: 1.1rem;
    }

    .promotion-info {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .wine-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .view-all-wrapper {
        margin-top: 40px;
    }

    .view-all-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

