/* REFINED PROFESSIONAL DESIGN */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background: #FFFFFF;
    color: #333333;
    line-height: 1.6;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    width: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 4px 20px rgba(0,0,0,0.3);
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    color: #FFFFFF;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #DAA520;
    opacity: 1;
}

/* Navigation with User Dropdown */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.125rem 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #8B0000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-dropdown {
    position: relative;
}

.user-icon-btn {
    background: none;
    border: 2px solid #8B0000;
    color: #8B0000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.user-icon-btn:hover {
    background: #8B0000;
    color: white;
}

.user-dropdown-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
}

.user-dropdown-menu.show {
    display: block;
}

.user-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-dropdown-menu a:hover {
    background: #F8F8F8;
    color: #8B0000;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: #8B0000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #8B0000;
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Quick Links with FA Icons */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    padding: 0 2rem;
}

.quick-link-card {
    background: white;
    padding: 1rem 1rem;
    text-align: center;
    border-right: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.quick-link-card:last-child {
    border-right: none;
}

.quick-link-card:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-5px);
}

.quick-link-card:hover .quick-link-title {
    color: white;
}

.quick-link-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #8B0000;
    transition: color 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    color: #DAA520;
}

.quick-link-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #8B0000;
    transition: color 0.3s ease;
}

.quick-link-text {
    font-size: 0.8rem;
    color: #666;
}

.quick-link-card:hover .quick-link-text {
    color: rgba(255,255,255,0.9);
}

/* Section Styles */
.section {
    padding: 3rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Slider */
.product-slider {
    position: relative;
    padding: 0 1rem;
}

.products-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.products-slider .swiper-wrapper {
    display: flex;
}

.products-slider .swiper-slide {
    width: 33.333%;
    padding: 0 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.product-card {
    position: relative;
    height: 450px;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #8B0000;
}

.product-image {
    position: absolute;
    inset: 0;
    height: 100%;
    background: linear-gradient(135deg, #8B0000, #C41E3A);
    background: linear-gradient(135deg, #8B0000, #C41E3A);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product-logo {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 2;
}

.product-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: rgba(255,255,255,0.98);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.5);
}

.wine-bottle {
    width: 65px;
    height: 220px;
    background: rgba(255,255,255,0.25);
    border-radius: 30px 30px 8px 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.wine-bottle::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.4);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.product-quick-view {
    display: none;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.7) 50%, transparent);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-vintage {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.product-origin {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.product-rating {
    color: #FFD700;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #8B0000;
    color: white;
    border-color: #8B0000;
}

.btn-primary:hover {
    background: #6B0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139,0,0,0.2);
}

.product-info .btn {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.9);
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-info .btn:hover {
    background: white;
    color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Partners Section */
.partners-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.partners-slider-container .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-height: 140px;
    max-height: 140px;
    height: 140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139,0,0,0.15);
}

.partner-card i {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.partner-card:hover i {
    transform: scale(1.1);
    color: #DAA520;
}

.partner-name {
    font-size: 0.875rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Quick View Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #8B0000;
    color: white;
    border-color: #8B0000;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-wine-bottle {
    width: 80px;
    height: 300px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    position: relative;
}

.modal-wine-bottle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
}

.modal-product-flag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-badge {
    display: inline-block;
    background: #DAA520;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    width: fit-content;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-origin {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.modal-rating {
    color: #DAA520;
    font-size: 1rem;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
}

.modal-description {
    color: #666;
    line-height: 1.8;
    font-size: 0.938rem;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: #F8F8F8;
    border-radius: 8px;
}

.modal-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-info-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-info-value {
    font-weight: 600;
    color: #333;
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-label {
    font-weight: 600;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    padding: 0.5rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background: #F0F0F0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #8B0000;
    color: white;
}

.quantity-value {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.btn-modal-cart {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-modal-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139,0,0,0.3);
}

.btn-favorite {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #8B0000;
    border-radius: 8px;
    color: #8B0000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-favorite:hover {
    background: #8B0000;
    color: white;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 350px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-favorite {
        width: 100%;
    }
}

/* Countries Section */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.country-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.country-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.country-card:hover .country-bg {
    transform: scale(1.05);
}

.country-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.country-flag-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.country-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.country-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #8B0000;
}

/* CTA Banner */
.cta-banner {
    background: #8B0000;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    width: 100%;
    padding: 0 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #DAA520;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #DAA520;
    text-decoration: none;
}

/* Quick View Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #8B0000;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image {
    position: relative;
    background: linear-gradient(135deg, #8B0000 0%, #B8860B 100%);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.modal-product-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
}

.modal-wine-bottle {
    width: 120px;
    height: 350px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(0,0,0,0.2) 100%);
    border-radius: 50px 50px 10px 10px;
    position: relative;
}

.modal-wine-bottle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: rgba(139, 0, 0, 0.8);
    border-radius: 50% 50% 0 0;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-badge {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin: 0;
}

.modal-origin {
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-origin i {
    color: #8B0000;
}

.modal-rating {
    display: flex;
    gap: 0.25rem;
    color: #FFD700;
    font-size: 1.25rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8B0000;
    margin: 0.5rem 0;
}

.modal-description {
    color: #666;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #F8F8F8;
    border-radius: 8px;
}

.modal-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-info-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 600;
}

.modal-info-value {
    font-size: 1rem;
    color: #333;
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.quantity-label {
    font-weight: 600;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #F8F8F8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.quantity-btn {
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quantity-btn:hover {
    background: #8B0000;
    color: white;
    transform: scale(1.1);
}

.quantity-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-modal-cart {
    flex: 1;
    background: #8B0000;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-modal-cart:hover {
    background: #6B0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-favorite {
    background: white;
    border: 2px solid #E5E5E5;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    border-color: #8B0000;
    color: #8B0000;
    transform: scale(1.1);
}

.btn-favorite i.fa-solid {
    color: #8B0000;
}

@media (max-width: 768px) {
    /* Hero - Tablet */
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }

    .hero-slider .swiper-slide {
        height: 60vh;
        min-height: 450px;
        width: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
        margin-bottom: 1.5rem;
    }

    /* Hide Our Picks section on tablet and below */
    #ourPicksSection {
        display: none;
    }

    /* Quick Links - 2x2 on tablet */
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        gap: 0;
        padding: 0 1rem;
    }
    
    .quick-link-card {
        border-right: 1px solid #E5E5E5;
        border-bottom: 1px solid #E5E5E5;
        padding: 1.5rem;
    }

    .quick-link-card:nth-child(even) {
        border-right: none;
    }

    .quick-link-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .quick-link-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .quick-link-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .quick-link-text {
        font-size: 0.85rem;
    }

    /* Countries - 2x2 on tablet */
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .products-slider {
        padding: 0 1rem;
    }

    .products-slider .swiper-slide {
        width: 50%;
    }

    .products-slider {
        padding: 0 1rem;
    }

    .products-slider .swiper-slide {
        width: 50%;
    }

    .country-card {
        height: 300px;
    }

    .product-card {
        height: 380px;
    }

    .country-flag-large {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .country-name {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .country-description {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    /* Footer - 2x2 on tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 300px;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-favorite {
        width: 100%;
    }
}

/* Small Mobile: 480px and below */
@media (max-width: 480px) {
    /* Hero - Mobile */
    .hero-slider {
        height: 55vh;
        min-height: 400px;
        overflow: hidden;
        margin-top: 0;
    }

    .hero-slider .swiper-slide {
        height: 55vh;
        min-height: 400px;
        width: 100% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(139,0,0,0.75), rgba(0,0,0,0.55));
    }

    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 0.9rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1.05rem);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .hero-content .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    /* Quick Links - 2x2 grid on mobile */
    .quick-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.2rem;
        margin-top: 0;
        padding: 1rem 0.75rem;
        overflow-x: unset;
    }

    .quick-link-card {
        border-right: none;
        border-bottom: none;
        padding: 0.08rem 0.25rem;
        min-width: unset;
        flex-shrink: unset;
    }

    .quick-link-card:last-child {
        border-bottom: none;
    }

    .quick-link-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .quick-link-title {
        font-size: 0.85rem;
    }

    .quick-link-text {
        font-size: 0.8rem;
    }

    /* Product Slider as 2x2 Grid on Mobile */
    .productSwiper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem !important;
    }

    .productSwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .productSwiper .swiper-slide {
        width: auto !important;
        height: auto !important;
    }

    .product-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-image {
        height: 200px;
        flex-shrink: 0;
    }

    .wine-bottle {
        width: 50px;
        height: 150px;
    }

    .product-info {
        padding: 1rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .product-origin {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .product-vintage {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .wine-bottle {
        width: 50px;
        height: 150px;
    }

    .product-logo {
        width: 50px;
        height: 50px;
        padding: 6px;
    }

    .product-flag {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .product-rating {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .product-info .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin-top: auto;
    }

    /* Countries - single column */
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .products-slider {
        padding: 0 0.5rem;
    }

    .products-slider .swiper-slide {
        width: 100%;
        padding: 0 0.5rem;
    }

    .country-card {
        height: 250px;
    }

    .country-flag-large {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .country-name {
        font-size: 1.15rem;
    }

    .country-description {
        font-size: 0.8rem;
    }

    /* Footer - 2x2 grid on mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.75rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.4rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

}
