/* Default Header */
#siteHeader {
    width: 100%;
    background: transparent;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

/* Sticky State */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* Header Styles */


.hamburger {
    display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .hamburger {
        display: block;
    }

    .site-navbar {
        background: rgba(0, 0, 0, 0.9) !important;      
    }

    .site-navbar .container {
        padding: 0.5rem 15px;
    }

    .site-logo img {
        max-height: 40px;
        width: auto;
    }

    .site-menu-toggle {
        font-size: 1.5rem !important;
        color: white !important;
    }

    .site-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .site-navigation.active {
        left: 0;
    }

    .site-menu {
        flex-direction: column;
        padding: 2rem 0;
        margin: 0;
        list-style: none;
    }

    .site-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-menu li a {
        display: block;
        padding: 1rem 2rem;
        color: white !important;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .site-menu li a:hover,
    .site-menu li.active a {
        background: rgba(255, 255, 255, 0.1);
        color: #f8f9fa !important;
    }
}

/* Hero Section Mobile Responsive */
.intro-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.intro-section .row {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 15px;
}

.intro-section .sub-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.intro-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 767.98px) {   
    .intro-section {
        min-height: 80vh;
    }

    .intro-section h1 {
        font-size: 2rem;
    }

    .intro-section .sub-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .intro-section h1 {
        font-size: 1.75rem;
    }

    .intro-section .sub-title {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Products Section Mobile Responsive */
.wine_v_1 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wine_v_1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wine_v_1 .thumbnail {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.wine_v_1 .thumbnail img {
    transition: transform 0.3s ease;
    max-height: 300px;
    object-fit: contain;
    width: 100%;
}

.wine_v_1:hover .thumbnail img {
    transform: scale(1.05);
}

.wine_v_1 .heading {
    font-size: 1.1rem;
    font-weight: 600;
}

.wine_v_1 .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c9302c;
}

.wine-actions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.wine_v_1:hover .wine-actions {
    opacity: 1;
}

.wine-actions .heading-2 {
    color: white;
    margin-bottom: 1rem;
}

.wine-actions .heading-2 a {
    color: white;
    text-decoration: none;
}

.wine-actions .price {
    margin-bottom: 1rem;
}

.wine-actions .rating {
    margin-bottom: 1.5rem;
}

.wine-actions .rating .fa {
    color: #ffc107;
    margin: 0 2px;
}

.wine-actions .btn.add {
    background: #c9302c;
    color: white;
    border: 2px solid #c9302c;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.wine-actions .btn.add:hover {
    background: transparent;
    color: #c9302c;
}

@media (max-width: 767.98px) {
    .wine_v_1 {
        margin-bottom: 2rem;
    }

    .wine_v_1 .thumbnail img {
        max-height: 250px;
    }

    .wine-actions {
        padding: 1rem;
    }

    .wine-actions .heading-2 {
        font-size: 1rem;
    }
}

/* Hero-2 Section Mobile Responsive */
.hero-2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-2 .container {
    position: relative;
    z-index: 2;
}

.hero-2 .sub-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.hero-2 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 767.98px) {
    .hero-2 {
        min-height: 40vh;
        padding: 3rem 0;
    }

    .hero-2 h2 {
        font-size: 1.75rem;
    }

    .hero-2 .sub-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .hero-2 h2 {
        font-size: 1.5rem;
    }

    .hero-2 .sub-title {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Testimonials Mobile Responsive */
.testimony {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimony img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.testimony p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimony .small {
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .testimony {
        padding: 1.5rem;
        margin: 0 5px;
    }

    .testimony img {
        width: 60px;
        height: 60px;
    }

    .testimony p {
        font-size: 0.95rem;
    }
}

/* General Mobile Improvements */
.site-section {
    padding: 4rem 0;
}

@media (max-width: 767.98px) {
    .site-section {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }
}

/* Owl Carousel Mobile Fixes */
.owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #c9302c;
}

@media (max-width: 575.98px) {
    .owl-dots {
        margin-top: 1rem;
    }

    .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

/* Touch-friendly buttons */
.btn,
.nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

.container-fluid,
.container {
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading optimization */
img {
    max-width: 100%;
    height: auto;
}



/* Additional mobile-specific styles */
.site-navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent zoom on input focus (iOS) */
input,
select,
textarea {
    font-size: 16px;
}

/* Better touch targets */
@media (max-width: 767.98px) {

    .btn,
    .nav-link,
    .site-menu-toggle {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Loading states */
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Prevent flash of unstyled content */
.owl-carousel {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owl-carousel.owl-loaded {
    opacity: 1;
}

/* Better focus states for accessibility */
.nav-link:focus,
.btn:focus,
.site-menu-toggle:focus {
    outline: 2px solid #c9302c;
    outline-offset: 2px;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .wine_v_1 {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {

    .site-navbar,
    .owl-carousel,
    .wine-actions {
        display: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .wine_v_1 {
        border: 2px solid;
    }

    .testimony {
        border: 2px solid;
    }
}



/* Enhanced Wine Products Styles */
.wines-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,100 Q250,50 500,100 T1000,100 L1000,300 L0,300 Z" fill="%23111"/></svg>');
    background-size: cover;
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.wines-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.wines-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.wines-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Enhanced Product Cards */
.wine_v_1 {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.wine_v_1:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Image Wrapper Enhancements */
.product-image-container {
    position: relative;
    height: null;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px 20px 0 0;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: transform 0.6s ease;
}

.wine_v_1:hover .product-image-container img {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.wine_v_1:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.wine_v_1:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

/* Quick Actions */
.quick-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 10;
}

.wine_v_1:hover .quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.quick-action-btn:hover {
    background: white;
    transform: scale(1.1);
    color: #00d4ff;
}

/* Product Info Section */
.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-category {
    color: #00d4ff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.heading,
.heading-2 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.heading a,
.heading-2 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.heading a:hover,
.heading-2 a:hover {
    color: #00d4ff;
}

/* Price Styling */
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

/* Rating Enhancement */
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.rating .icon-star,
.rating .icon-star-o {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating .icon-star-o {
    color: #666;
}

/* Enhanced Add to Cart Button */
.btn.add {
    width: 100%;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-top: auto;
}

.btn.add:hover {
    background: linear-gradient(45deg, #0099cc, #00d4ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn.add:active {
    transform: translateY(0);
}

/* Carousel Enhancements */
.carousel-inner {
    border-radius: 20px 20px 0 0;
}

.carousel-item {
    border-radius: 20px 20px 0 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.wine_v_1:hover .carousel-control-prev,
.wine_v_1:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 1rem;
}

.carousel-control-next {
    right: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50%;
    filter: invert(1);
}

/* No Products Alert Enhancement */
.alert-info {
    background: linear-gradient(135deg, #00d4ff20, #0099cc20);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    border-radius: 15px;
    padding: 2rem;
    font-size: 1.1rem;
}

/* Pagination Enhancement */
.pagination {
    justify-content: center;
    gap: 0.5rem;
}

.page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
    background: #00d4ff;
    color: #000;
    border-color: #00d4ff;
}

/* Loading Animation */
.loading-wine {
    animation: wine-pulse 1.5s infinite;
}

@keyframes wine-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wines-hero h1 {
        font-size: 2.5rem;
    }

    .product-image-container {
        height: 250px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .quick-actions {
        display: none;
    }
}

@media (max-width: 576px) {
    .wines-hero {
        padding: 2rem 0;
    }

    .wines-hero h1 {
        font-size: 2rem;
    }

    .col-lg-4.col-md-6 {
        margin-bottom: 2rem;
    }
}