/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    transition: background 0.3s ease;
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-logo h2 {
    color: #d4af37;
    font-size: 1.8rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #e6c35c, #d4af37);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 30px 0;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    padding-top: 80px;
    /* Account for navbar height */
}

.hero-section.scroll-out {
    transform: translateY(-100%);
}

/* Bottle Container */
.bottle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Base Bottle Styles */
.bottle {
    position: absolute;
    right: 10%;
    max-height: 70vh;
    width: auto;
    opacity: 0;
    transition: all 1s ease-in-out;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* Red Bottle - Drops from top on 1st background */
.bottle-red {
    top: -100%;
    right: 25%;
    transform: scale(0.5) rotateY(0deg) rotate(-15deg);
    opacity: 0;

}

.bottle-red.active {
    top: 15%;
    right: 15%;
    transform: scale(1.2) rotateY(0deg) rotate(5deg);
    opacity: 1;
}

.bottle-red.exit {
    top: 15%;
    right: 15%;
    transform: scale(1.2) rotateY(90deg) rotate(5deg);
    opacity: 0;
}

/* Green Bottle - Rotates and transforms on 2nd background */
.bottle-green {
    top: 15%;
    right: 15%;
    transform: rotateY(-90deg) rotate(5deg) scale(1.2);
    opacity: 0;
}

.bottle-green.active {
    top: 15%;
    right: 15%;
    transform: rotateY(0deg) rotate(0deg) scale(1.2);
    opacity: 1;
}

/* Can Bottles - Two bottles for 1st background */
.bottle-can-top {
    top: -100%;
    right: 20%;
}

.bottle-can-top.active {
    top: 10%;
    right: 30%;
    opacity: 1;
}

.bottle-can-top.exit {
    top: -100%;
    right: 20%;
    opacity: 0;
}

.bottle-can-bottom {
    bottom: -100%;
    right: 20%;
}

.bottle-can-bottom.active {
    bottom: 10%;
    right: 16%;
    opacity: 1;
}

.bottle-can-bottom.exit {
    bottom: -100%;
    right: 20%;
    opacity: 0;
}

/* 3D Golden Can */
.bottle-3d-can {
    top: 50%;
    right: 20%;
    width: 300px;
    height: 500px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 1s ease-in-out, top 1s ease-in-out;
    pointer-events: auto;
}

.bottle-3d-can.active {
    opacity: 1;
}

.bottle-3d-can.exit {
    opacity: 0;
    top: -100%;
}

/* Gold-Black Bottles - Two bottles for 2nd background */
.bottle-gold-top {
    top: -100%;
    right: 20%;
}

.bottle-gold-top.active {
    top: 10%;
    right: 30%;
    opacity: 1;
}

.bottle-gold-bottom {
    bottom: -100%;
    right: 20%;
}

.bottle-gold-bottom.active {
    bottom: 10%;
    right: 16%;
    opacity: 1;
}

.bottle-gold-top.exit {
    top: -100%;
    right: 20%;
    opacity: 0;
}

.bottle-gold-bottom.exit {
    bottom: -100%;
    right: 20%;
    opacity: 0;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-bg.active {
    opacity: 1;
    z-index: 2;
}

/* Right Bottom Corner Background Images */
.right-bottom-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.right-bottom-img {
    position: absolute;
    bottom: -2%;
    right: -10%;
    width: 70%;
    height: 70%;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 2;
}

.right-bottom-img.active {
    opacity: .5;
    z-index: 3;
}

/* Dark overlay for better text readability */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.hero-cta {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #e6c35c, #d4af37);
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #d4af37;
    transform: scale(1.2);
    border-color: #fff;
}

.indicator:hover {
    background: #d4af37;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    opacity: 0.8;
    animation: fadeInUp 1s ease-in-out 1s both;
}

.scroll-hint span {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(-10px);
    }

    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Bottle Center Section */
.bottle-center-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0909;
    position: relative;
    z-index: 6;
    overflow: hidden;
    transition: opacity 0.6s ease-out;
    opacity: 0.95;
    transform: translateY(8px);
}

.bottle-center-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.noble-brew-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12vw;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #1a1410;
    opacity: 0.7;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    text-transform: uppercase;
}

.bottle-center-3d-wrapper {
    position: relative;
    z-index: 1;
}

.bottle-center-3d {
    position: relative;
    width: 300px;
    height: 500px;
    max-height: 75vh;
    z-index: 1;
    opacity: 0;
}

.product-info-left {
    position: absolute;
    left: 54%;
    top: 38%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    max-width: 400px;
}

.product-tag {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #9a8a7a;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 0.9;
    color: #1a1410;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.product-desc {
    font-size: 0.72rem;
    color: #5a5048;
    line-height: 1.7;
    max-width: 300px;
}

.product-divider {
    width: 50px;
    height: 2px;
    background: #1a1410;
    margin-top: 1.5rem;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.product-specs-right {
    position: absolute;
    left: 54%;
    top: 70%;
    transform: translateY(-50%);
    width: 440px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 3rem;
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0;
    border-bottom: none;
}

.spec-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9a8a7a;
}

.spec-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1410;
    line-height: 1;
    margin-top: 0.15rem;
    letter-spacing: -0.02em;
}

.spec-desc {
    font-size: 0.62rem;
    color: #7a6a5a;
    line-height: 1.5;
    padding-top: 0.35rem;
}

/* Green Label Content (Phase 2 inside bottle-center-section) */
.green-brew-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12vw;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #101a10;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    text-transform: uppercase;
}

.green-info-left {
    position: absolute;
    right: 68%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.lagunitas-style-left {
    text-align: left;
    max-width: 340px;
}

.lagunitas-style-left .handwriting-tag {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #222;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 0.3rem;
    display: block;
}

.lagunitas-style-left .headline-distressed {
    font-family: 'Anton', sans-serif;
    font-size: 5.5rem;
    line-height: 0.85;
    color: #151515;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
}

.lagunitas-style-left .product-desc {
    font-size: 0.72rem;
    color: #444;
    line-height: 1.6;
    margin-left: 0;
}

.lagunitas-style-left .buy-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 28px;
    font-size: 0.7rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
    pointer-events: auto;
    /* clickable */
    transition: background 0.3s ease;
}

.lagunitas-style-left .buy-btn:hover {
    background: #333;
}

.green-specs-right {
    position: absolute;
    left: 68%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

/* Right Side lagunitas style */
.lagunitas-style-right {
    border: 3px solid #222;
    padding: 2.5rem;
    background: transparent;
    width: 420px;
}

.lagunitas-spec-row {
    margin-bottom: 1.5rem;
    display: block;
}

.lagunitas-spec-row.no-border {
    margin-bottom: 0;
}

.lagunitas-spec-row .spec-header {
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #aaa;
}

.lagunitas-spec-row .spec-label {
    font-weight: 800;
    color: #111;
    font-size: 0.85rem;
    display: block;
    letter-spacing: 0.02em;
    margin-bottom: 0.1rem;
}

.lagunitas-spec-row .spec-sub {
    font-size: 0.65rem;
    color: #555;
    display: block;
    font-weight: 500;
}

.lagunitas-spec-row .spec-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.lagunitas-spec-row .spec-value {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    line-height: 0.8;
    color: #111;
    margin: 0;
    min-width: 90px;
}

.lagunitas-spec-row .spec-desc {
    font-size: 0.65rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    padding-top: 0.2rem;
}

.lagunitas-spec-row .spec-desc strong {
    color: #111;
    text-decoration: underline;
    font-weight: 800;
    font-size: 0.6rem;
}

/* Content Section */
.content-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0909;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    padding-top: 100vh;
    /* Push content below the fixed hero */
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.content-section p {
    font-size: 1.2rem;
    color: #ccc;
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

/* Carousel Section - Owl Carousel */
.carousel-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #fffbed;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-nav {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
}

.nav-tab {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a8070;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-tab.active {
    color: #1a1410;
}

.nav-sep {
    font-size: 0.5rem;
    color: #a09880;
}

.carousel-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9vw;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.owl-carousel,
.owl-carousel .owl-stage-outer {
    width: 100%;
    z-index: 1;
    overflow: visible;
}

.owl-item-card {
    background: transparent;
    width: 380px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.owl-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 5;
    background: #fff;
    color: #1a1410;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.5rem 0.6rem;
    border-radius: 50%;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.owl-item-img {
    width: 100%;
    height: 500px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;

}

.owl-item-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
    margin-top: 7rem;

}

.owl-item-content {
    padding: 2.2rem 0 2rem;
    text-align: left;
}

.owl-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1410;
    margin-bottom: 0.5rem;
}

.owl-item-sub {
    font-size: 0.72rem;
    color: #7a7060;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.owl-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a5048;
    text-decoration: underline;
    text-underline-offset: 3px;
    background: transparent;
    padding: 0;
    transition: color 0.3s;
}

.owl-item-btn:hover {
    background: transparent;
    color: #1a1410;
}

.owl-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.owl-item-btn:hover .owl-arrow {
    transform: translateX(4px);
}

.owl-nav-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d0c8b8;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.owl-nav-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #5a5048;
    margin-left: 3px;
}

.owl-nav-btn:hover {
    background: #1a1410;
    border-color: #1a1410;
}

.owl-nav-btn:hover::after {
    border-left-color: #fff;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: flex-end;
    padding-bottom: 2rem;
}

.owl-theme .owl-controls,
.owl-dots,
.owl-nav {
    display: none !important;
}

/* Adjacent bottle fade effect */
.owl-carousel .owl-item {
    opacity: 0.35;
    will-change: opacity;
}

.owl-carousel .owl-item.center {
    opacity: 1;
}

.owl-item-card {
    transform: scale(0.86);
    transform-origin: center bottom;
    will-change: transform;
}

.owl-item.center .owl-item-card {
    transform: scale(1.06);
}

/* Footer Section */
.site-footer {
    background-color: #f8f5ee;
    background-image: url('../images/background/change-bg-2.png');
    /* background-size: cover; */
    background-position: top;
    color: #1a1410;
    padding: 30px 8% 15px;
    position: relative;
    z-index: 10;
    /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -12%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10vw;
    font-family: 'Anton', sans-serif;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
}

.footer-brand img {
    margin-bottom: 10px;
    width: 45px;
    height: auto;
    opacity: 0.9;
}

.footer-brand h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1410;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #5a5048;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 400;
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    flex: 2;
    justify-content: flex-end;
}

.footer-col {
    min-width: 160px;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1a1410;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #7a7060;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-col p {
    color: #7a7060;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-form {
    display: flex;
    border-bottom: 1px solid #c0b8a8;
    padding-bottom: 8px;
    position: relative;
}

.footer-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #1a1410;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    padding-right: 30px;
}

.footer-form input::placeholder {
    color: #a09880;
}

.footer-form button {
    background: transparent;
    border: none;
    color: #1a1410;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 8px;
    transition: transform 0.3s ease;
}

.footer-form button:hover {
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #7a7060;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    color: #5a5048;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4af37;
}

@media (max-width: 992px) {
    .footer-links-group {
        justify-content: flex-start;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 5% 30px;
    }
    .footer-top {
        gap: 40px;
        margin-bottom: 50px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile Text Layout for 3D Bottle Section */
    .product-info-left,
    .green-info-left {
        left: 50% !important;
        right: auto !important;
        top: 8% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        text-align: center;
    }
    
    .lagunitas-style-left {
        max-width: 100% !important;
    }
    
    .product-divider {
        margin: 1rem auto;
    }

    .product-specs-right{
        left: 69% !important;
        right: auto !important;
        top: auto !important;
        bottom: 18% !important;
        transform: translateX(-50%) !important;
        width: 95% !important;
        justify-content: center;
    }
    .green-specs-right {
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: 2% !important;
        transform: translateX(-50%) !important;
        width: 95% !important;
        justify-content: center;
    }

    .product-specs-right {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .product-specs-right .spec-row {
        flex: 1 1 40%;
        align-items: center;
        text-align: center;
    }

    .lagunitas-style-right .spec-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.5rem 0;
    }

    .lagunitas-style-right .spec-header {
        margin-right: 0;
        margin-bottom: 0.5rem;
        align-items: center;
    }
    
    .product-name, 
    .lagunitas-style-left .headline-distressed {
        font-size: 2.8rem !important;
        margin-bottom: 0.5rem;
    }
    
    .bottle-center-3d-wrapper {
        transform: scale(0.65);
    }

    .noble-brew-bg,
    .green-brew-bg {
        font-size: 22vw;
        opacity: 0.2;
    }
    .product-desc,
    .buy-btn,
    .green-spec-row:nth-child(2),
    .green-spec-row:nth-child(3){
        display: none !important;
    }
    .lagunitas-style-right{
        padding: .5rem;
    }
    .navbar-btn{
        display: none;
    }
}