.elementor-9061 .elementor-element.elementor-element-26fe587{--display:flex;}.elementor-9061 .elementor-element.elementor-element-26fe587.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-9061 .elementor-element.elementor-element-26fe587{--width:98.134%;}}/* Start custom CSS for html, class: .elementor-element-4d186d2 */:root {
    /* Color Palette */
    --primary-color: #0047ab; /* Rich blue */
    --secondary-color: #c9a66b; /* Gold accent */
    --dark-color: #111111; /* Near black */
    --light-color: #f8f9fa; /* Off-white */
    --grey-color: #6c757d; /* Neutral grey */
    --error-color: #dc3545; /* Error red */
    --success-color: #28a745; /* Success green */
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    
    /* Backgrounds */
    --bg-dark: #111111;
    --bg-light: #ffffff;
    --bg-muted: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #0047ab 0%, #002c68 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Sizes and Spacing */
    --header-height: 100px;
    --section-padding: 100px;
    --container-padding: 15px;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Effects */
    --transition-slow: 1s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-medium: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/*------------------------------------------
    Global Reset and Base Styles
-------------------------------------------*/
*, *::before, *::after {
    margin: 0;
    padding-top: 100;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

h1 {
    font-size: 5.6rem;
}

h2 {
    font-size: 4.2rem;
}

h3 {
    font-size: 3.2rem;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.6rem;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.6rem;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    outline: none;
    background: transparent;
}

/*------------------------------------------
    Utility Classes
-------------------------------------------*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

.light {
    color: var(--text-light);
}

.light h1, .light h2, .light h3, .light h4, .light h5, .light h6 {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
    opacity: 0;
}

.visible {
    visibility: visible;
    opacity: 1;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.section-description {
    font-size: 1.8rem;
    max-width: 700px;
    margin-bottom: 4rem;
}

.blur-bg {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/*------------------------------------------
    Buttons
-------------------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.primary-btn:hover {
    background-color: var(--text-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.ghost-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.ghost-btn:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.btn.dark {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn.dark:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon i {
    transition: transform var(--transition-fast);
}

.btn-icon:hover i {
    transform: translateX(5px);
}

/*------------------------------------------
    Loader
-------------------------------------------*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-container img {
    height: 8rem;
    margin: 0 auto;
}

.loading-bar {
    width: 20rem;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    width: 0;
    background-color: var(--secondary-color);
    transition: width 4s cubic-bezier(0.19, 1, 0.22, 1);
}

/*------------------------------------------
    Custom Cursor
-------------------------------------------*/
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, border 0.3s;
}



/*------------------------------------------
    Hero Section
-------------------------------------------*/
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.hero-text {
    max-width: 650px;
    color: var(--text-light);
}

.hero-title {
    font-size: 7.2rem;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-text {
    margin-bottom: 1rem;
}

.scroll-line {
    width: 2px;
    height: 5rem;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--secondary-color);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(200%);
    }
}

/*------------------------------------------
    Heritage Section
-------------------------------------------*/
.heritage-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    position: relative;
}

.section-intro {
    margin-bottom: 8rem;
}



.heritage-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 8rem 0;
}

.gallery-image {
    height: 40rem;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.gallery-image:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

.stats-container {
    padding: 8rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.stat-value::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -2rem;
    font-size: 3rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*------------------------------------------
    Products Section
-------------------------------------------*/
.products-section {
    padding: var(--section-padding) 0;
    background-color: var(--light-color);
    position: relative;
}

.products-categories {
    margin-bottom: 6rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    color: var(--text-dark);
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 3rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 8rem;
}

.product-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-fast);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.product-image-container {
    position: relative;
    height: 30rem;
    overflow: hidden;
}

.product-image {
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    height: 100%;
    z-index: 2;
    transition: all var(--transition-medium);
}

.product-item:hover .placeholder-bottle {
    transform: translateY(-10px) scale(1.05);
}

.liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--secondary-color);
    transition: all var(--transition-medium);
}

.liquid::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--secondary-color);
    filter: blur(10px);
}

.product-item:hover .liquid {
    height: 50%;
    background-color: #d4b67e;
}

.product-details {
    padding: 2.5rem;
    text-align: center;
}

.product-name {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-type {
    font-size: 1.6rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

.product-link i {
    transition: transform var(--transition-fast);
}

.product-link:hover {
    color: var(--secondary-color);
}

.product-link:hover i {
    transform: translateX(5px);
}

.product-spotlight {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.spotlight-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.spotlight-image-container {
    flex: 1;
    position: relative;
}

.spotlight-image {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.featured-product-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    transform: rotate3d(0, 1, 0, 10deg);
    transition: all var(--transition-medium);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
}

.spotlight-image:hover .featured-product-image {
    transform: rotate3d(0, 1, 0, 0deg);
}

.spotlight-info {
    flex: 1;
}

.spotlight-label {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 3rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.spotlight-title {
    font-size: 3.6rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.spotlight-description {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    opacity: 0.8;
}

.spotlight-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    text-align: center;
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.8;
}

/*------------------------------------------
    Distillery Section
-------------------------------------------*/
.distillery-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.distillery-content {
    margin-bottom: 8rem;
}

.process-steps {
    margin: 6rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-medium);
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.7;
    min-width: 8rem;
}

.step-content {
    flex: 1;
    padding-top: 1rem;
}

.step-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.distillery-cta {
    margin-top: 4rem;
    text-align: center;
}

.distillery-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 20rem;
    grid-gap: 0;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
    filter: grayscale(80%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/*------------------------------------------
    Testimonials Section
-------------------------------------------*/
.testimonials-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
}

.testimonials-slider {
    padding-bottom: 6rem;
}

.testimonial-card {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 1.4rem;
    color: var(--text-muted);
}

/*------------------------------------------
    Newsletter Section
-------------------------------------------*/
.newsletter-section {
    padding: var(--section-padding) 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text .section-title {
    color: var(--text-light);
}

.newsletter-form-container {
    flex: 1;
}

.newsletter-form {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
}

.form-group {
    display: flex;
    margin-bottom: 2rem;
}

.form-group input {
    flex: 1;
    height: 5rem;
    padding: 0 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 1.6rem;
}

.submit-btn {
    height: 5rem;
    padding: 0 3rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-consent input {
    margin-top: 0.5rem;
}

.form-consent label {
    font-size: 1.4rem;
    color: var(--text-dark);
}

/*------------------------------------------
    Contact Section
-------------------------------------------*/
.contact-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000047' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-content {
    display: flex;
    gap: 6rem;
}

.contact-info {
    flex: 1;
}

.contact-description {
    margin-bottom: 4rem;
}

.contact-details {
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-muted);
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.form-header {
    margin-bottom: 3rem;
    text-align: center;
}

.form-header h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.contact-form .form-group {
    display: block;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1.6rem;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form textarea {
    height: 15rem;
    resize: none;
}



/*------------------------------------------
    Scroll Progress
-------------------------------------------*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    z-index: 9999;
}

/*------------------------------------------
    Back to Top Button
-------------------------------------------*/
.back-top-btn {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 99;
}

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top-btn:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

/*------------------------------------------
    Age Verification Modal
-------------------------------------------*/
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-verification-content {
    max-width: 500px;
    width: 90%;
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.age-logo {
    margin-bottom: 2rem;
}

.age-logo img {
    height: 6rem;
    margin: 0 auto;
}

.age-verification-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.age-verification-content p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.age-question {
    font-weight: 600;
    font-size: 1.8rem;
    margin: 2rem 0;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.age-yes {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.age-no {
    background-color: var(--error-color);
    color: var(--text-light);
}

.hidden {
    display: none !important;
}

/* Split Text Animation */
.split-text .word {
    display: inline-block;
    overflow: hidden;
}

.split-text .char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.split-text.animate .char {
    transform: translateY(0);
}

/*------------------------------------------
    Image Overlays and Effects
-------------------------------------------*/
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

/* Liquid Animations */
.liquid-animation {
    position: relative;
    overflow: hidden;
}

.liquid-drop {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: -10px;
    opacity: 0.8;
    animation: drop 2s linear infinite;
}

@keyframes drop {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(0.8) translateY(20px);
    }
    100% {
        transform: scale(0.4) translateY(40px);
        opacity: 0;
    }
}

/* Reveal Animations */
.reveal {
    position: relative;
    overflow: hidden;
}

.reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.animate::after {
    transform: translateX(100%);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 576px) {
    html {
        font-size: 55%;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .section-padding {
        padding: 6rem 0;
    }
    
    /* Navigation */
    .top-nav {
        display: none;
    }
    
    .desktop-nav-links {
        display: none;
    }
    
    .main-menu {
        justify-content: center;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .logo img {
        height: 4.5rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 5rem;
        left: 0 !important;
    }
    
    .timeline-item::after {
        left: 0 !important;
        right: auto !important;
    }
    
    .timeline-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    /* Gallery */
    .heritage-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 25rem);
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    /* Products */
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .spotlight-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .spotlight-features {
        grid-template-columns: 1fr;
    }
    
    /* Distillery */
    .distillery-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 20rem);
    }
    
    /* Newsletter */
    .newsletter-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    /* Contact */
    .contact-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    html {
        font-size: 58%;
    }
    
    .container {
        padding: 0 3rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 5.6rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 5rem;
        left: 0 !important;
    }
    
    .timeline-item::after {
        left: 0 !important;
        right: auto !important;
    }
    
    .timeline-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    /* Gallery */
    .heritage-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 30rem);
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    /* Products */
    .spotlight-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    /* Distillery */
    .distillery-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 20rem);
    }
    
    /* Newsletter & Contact */
    .newsletter-content,
    .contact-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .footer-links {
        justify-content: space-between;
        gap: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    html {
        font-size: 60%;
    }
    
    /* Navigation */
    .contact-info a:not(:first-child) {
        display: none;
    }
    
    .desktop-nav-links {
        gap: 2rem;
    }
    
    /* Timeline */
    .timeline-item {
        width: 50%;
    }
    
    /* Gallery */
    .heritage-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 25rem;
    }
    
    /* Products */
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spotlight-content {
        gap: 4rem;
    }
    
    /* Newsletter */
    .newsletter-content {
        gap: 3rem;
    }
    
    /* Contact */
    .contact-content {
        gap: 3rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Container */
    .container {
        max-width: 960px;
    }
    
    /* Products */
    .products-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 7.2rem;
    }
    
    .hero-section {
        min-height: 1100px;
        padding-top: 18rem; /* Increase top padding for larger screens */
    }
    
    #hero-video {
        width: 100%;
        height: 100%;
    }
    
    .video-background {
        height: 100vh;
    }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-section {
        min-height: 1200px;
        padding-top: 20rem; /* Even more padding for XXL screens */
    }
    
    .hero-title {
        font-size: 8rem;
    }
    
    .video-background {
        height: 120vh; /* Make video even bigger on XXL screens */
    }
    
    #hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Height-based Media Queries */
@media (max-height: 700px) {
    .hero-section {
        min-height: auto;
        height: auto;
        padding: 12rem 0;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }
    
    .hero-content {
        margin-top: 6rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-overlay .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 2.4rem;
        margin: 0.5rem;
    }
}

/* Retina and High DPI Displays */
@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) {
    .parallax-bg,
    .video-overlay {
        background-size: cover;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Only apply if the site doesn't already have a dark theme */
    .age-verification-content {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .age-verification-content h2 {
        color: var(--secondary-color);
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #fff;
        color: #000;
        margin: 0;
        padding: 0;
    }
    
    .hero-section,
    .video-container,
    .nav-overlay,
    .menu-toggle,
    .back-top-btn,
    .scroll-progress,
    .scroll-indicator,
    .newsletter-section,
    .footer {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .main-nav {
        position: relative;
        background: none;
        padding: 1rem 0;
        border-bottom: 1px solid #000;
    }
    
    .section-title,
    h2, h3 {
        color: #000;
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .product-item,
    .timeline-item,
    .process-step,
    .contact-item {
        page-break-inside: avoid;
    }
    
    .product-image,
    .gallery-image {
        display: none;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 1rem 0;
    }
    
    .timeline-content {
        margin: 0 !important;
        padding: 1rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .footer-content {
        display: block;
        text-align: center;
        border-top: 1px solid #000;
        padding-top: 1rem;
    }
    
    .copyright,
    .disclaimer {
        font-size: 1rem;
        color: #333;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-line::after,
    .liquid,
    .cursor,
    .cursor-follower {
        animation: none !important;
    }
    
    .product-item:hover .liquid,
    .product-item:hover .placeholder-bottle,
    .spotlight-image:hover .featured-product-image,
    .gallery-item:hover img {
        transform: none;
    }
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 71, 0.9);
    border-bottom: 1px rgba(0, 0, 71, 0.9);
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background:rgba(0, 0, 71, 0.9); /* Slightly darker blue when scrolled */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: rgb(255, 255, 255);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation Container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.logo-icon {
    margin-right: 0.5rem;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.950rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-icon {
    margin-right: 0.5rem;
}

.dropdown-arrow {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Base Dropdown Menu Style */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  background: rgba(0, 0, 71, 0.9);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  z-index: 1000;
  pointer-events: none; /* Prevent accidental hover */
}


/* Show dropdown when hovering parent or menu */
.nav-item:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Mobile Menu Button */


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: no;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: 50vh;
    background: rgba(8, 5, 5, 0.05);
    background-color: #667eea;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 998;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 1rem;
}

/* Mobile Navigation Items */
.mobile-nav-item {
    margin-bottom: 0.25rem;
}

.mobile-nav-link {
    display: none;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-link {
    display: flex;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Mobile Dropdown */
.mobile-nav-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
    background: none;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-text {
    display: flex;
    align-items: center;
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Submenu */
.mobile-submenu-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

.mobile-submenu-button:hover {
    background: rgba(1, 0, 0, 0.1);
}

.mobile-submenu.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 1rem;
}

.mobile-submenu.active .mobile-submenu-content {
    max-height: 300px;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Enhanced mobile backdrop blur */
    
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 5rem 0.75rem 3rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .features-card {
        padding: 1rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .dropdown-menu {
        min-width: 14rem;
    }
    
    .submenu-content {
        min-width: 12rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    
    
    .dropdown-menu, .submenu-content {
        background: rgba(255, 255, 255, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.4);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom scrollbar for mobile menu */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Focus styles for accessibility */
.nav-link:focus,
.dropdown-item:focus,
.submenu-item:focus,
.mobile-nav-link:focus,
.mobile-nav-button:focus,
.mobile-dropdown-item:focus,
.mobile-submenu-item:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

/* Backdrop blur fallback for older browsers */
@supports not (backdrop-filter: blur(20px)) {
    
    
    .dropdown-menu, .submenu-content {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .mobile-menu {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .features-card {
        background: rgba(255, 255, 255, 0.2);
    }
}



:root {
            --primary-color: #000047;
            --secondary-color: #ffffff;
            --text-dark: #333333;
            --text-light: #ffffff;
            --background-light: #f5f5f5;
            --background-dark: #000033;
            --transition: all 0.3s ease;
        }
        
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #ffffff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo img {
          height: 50px;
          width: auto;
        }
        
        .nav-link {
         color: white;
         font-size: 16px;
         font-weight: 600;
          position: relative;
        }

        .nav-link::after {
          content: "";
          position: absolute;
          bottom: -5px;
          left: 0;
          height: 2px;
          width: 0;
          background-color: white;
          transition: width 0.3s ease;
        }
        
        /* Brands Page Specific Styles */
        .brands-hero {
            height: 60vh;
            background-image: url('attached_assets/all product.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-top: 80px;
        }
        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            color: #ffffff;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
      
        
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 150px;
        }
        
        .hero-tag {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s forwards 0.6s;
        }
        
        .hero-title {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 20px;
            max-width: 800px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s forwards 0.8s;
        }
        
        .hero-description {
            font-size: 18px;
            max-width: 500px;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s forwards 1s;
            text-align: center;
        }
        
        .hero-btn {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s forwards 1.2s;
        }
        
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            animation: fadeIn 0.6s forwards 1.4s;
        }
        
        .scroll-text {
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .scroll-icon {
            font-size: 24px;
            animation: bounce 2s infinite;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        .brands-tabs {
            background-color: white;
            padding: 2rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 80px;
            z-index: 100;
        }
        
        .tabs-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
}
        
        .brand-tab {
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--text-dark);
            padding: 1rem 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            scroll-snap-align: start;
        }
        
        .brand-tab:hover {
            color: var(--primary-color);
        }
        
        .brand-tab.active {
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
        }
        
        .brands-section {
            padding: 8rem 0;
            background-color: var(--background-light);
        }
        
        .brand-category-title {
            font-size: 3.2rem;
            margin-bottom: 4rem;
            text-align: center;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
        }
        
        .brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
}



        
        .brands-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  
}
        
        .brand-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    margin: 0;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 280px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.brand-card:hover img {
    transform: scale(1.05);
}

.brand-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
}

.brand-card p {
    font-size: 1rem;
    color: #555;
    text-align: center;
}
        
        .brand-image {
            height: 280px;
            position: relative;
            overflow: hidden;
            
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .brand-image img {
            max-width: 70%;
            max-height: 90%;
            transition: all 0.5s ease;
        }
        
        .brand-card:hover .brand-image img {
            transform: scale(1.05);
        }
        
        .brand-content {
            padding: 2.5rem;
            text-align: center;
        }
        
        .brand-name {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .brand-type {
            font-size: 1.4rem;
            font-weight: 500;
            color: #666;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .brand-desc {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.6;
            color: #777;
            margin-bottom: 2rem;
        }
        
        .brand-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            background-color: var(--primary-color);
            color: white;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .brand-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .brand-btn i {
            font-size: 1.2rem;
        }
        
        .brands-intro {
            padding: 6rem 0;
            background-color: white;
        }
        
        .intro-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .intro-content h2 {
            font-size: 3.6rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
        }
        
        .intro-content p {
            font-size: 1.6rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 2rem;
        }
        
        .intro-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .heritage-section {
            padding: 8rem 0;
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Modal container */
.product-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: flex-end;
    padding: 2rem;
}

/* Slide-up animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content.slide-up {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease forwards;
    position: relative;
}

/* Close button */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.modal-left img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal-right h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

.modal-right p {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.variant-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.variant-item {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.variant-item img {
    height: 40px;
    border-radius: 6px;
}
  
.cta-big-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 10px 22px;
  background: #256eff;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-big-button:hover {
  background: #174ed4;
}

.band-section {
  position: relative;
  background-image: url('https://www.gihocdistil.com/wp-content/uploads/2026/06/band.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.band-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.band-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.band-title {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: white;
}

.band-description {
  font-size: 1.6rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.cta-big-button {
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 30px;
  background: #256eff;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-big-button:hover {
  background: #174ed4;
}

        
        .heritage-container {
            text-align: center;
        }
        
        .heritage-title {
            color: white;
            font-size: 3.6rem;
            margin-bottom: 2rem;
            font-family: 'Playfair Display', serif;
        }
        
        .heritage-desc {
            font-size: 1.8rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 4rem;
            opacity: 0.9;
        }
        
        .heritage-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .heritage-stat {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 3rem 2rem;
            border-radius: 10px;
        }
        
        .stat-value {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        .stat-label {
            color: white;
            font-size: 1.6rem;
            opacity: 0.9;
        }
        
        @media (max-width: 992px) {
            .intro-container {
                grid-template-columns: 1fr;
            }
            
            .heritage-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .brands-hero-title {
                font-size: 3.5rem;
            }
            
            .brands-tabs {
                position: static;
            }
            
            .brand-tab {
                font-size: 1.4rem;
                padding: 0.8rem 1.2rem;
            }
            
            .heritage-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            @media (max-width: 768px) {
  .brand-card {
    padding: 1rem;
  }

  .brand-card img {
    max-height: 220px;
  }

  .brand-card h3 {
    font-size: 1.3rem;
  }

  .brand-card p {
    font-size: 0.9rem;
  }
}

        }
        
        /* Footer Styles */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 6rem 0 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
        }
        
        .footer-logo {
            margin-bottom: 2rem;
        }
        
        .footer-logo img {
            height: 60px;
        }
        
        .footer-info {
            font-size: 1.4rem;
            line-height: 1.8;
            opacity: 0.8;
        }
        
        .footer-title {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 1rem;
        }
        
        .footer-link a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }
        
        .footer-link a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-social {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 4rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.4rem;
            opacity: 0.8;
        }
        
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */