@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===================================
   GLOBAL LUXURY BASE
=================================== */

body {
  background: var(--black);
  color: var(--text-light);
  font-family: var(--font-body);
}

::selection {
  background: rgba(201,168,76,0.3);
  color: var(--cream);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
* { scrollbar-width: thin; scrollbar-color: var(--gold-dark) var(--black); }

/* ===================================
   GOLD SEPARATOR UTILITY
=================================== */

.ct-gold-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #9a7b2f;
  --amber: #d4820a;
  --copper: #b87333;
  --black: #080808;
  --charcoal: #141414;
  --charcoal-mid: #1e1e1e;
  --cream: #f5e6c8;
  --cream-light: #fdf6e9;
  --text-light: #e8dcc8;
  --text-muted: #8a7a5a;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

body h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

        /* ===========================
  /* ===================================
   MAIN WRAPPER
=================================== */

.scroll-animation-wrapper{
    position: relative;
    min-height: 100vh;
    height: auto;
    background: var(--black);
}

/* ===================================
   FIXED VIDEO
=================================== */
/* =========================
   FIXED VIDEO BOX
========================= */

/* ====================================
   FIXED VIDEO BANNER
==================================== */

.fixed-video-box{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    z-index:20;
    overflow:hidden;
    padding:80px;

    transition:
    all 1.2s cubic-bezier(0.22,1,0.36,1);

}

/* video */

.fixed-video-box video{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:
    transform 1.4s cubic-bezier(0.22,1,0.36,1);

}

/* ====================================
   AFTER SCROLL
==================================== */

.fixed-video-box.active{

    padding:0px;

    /* move video to middle column */
    width:33.33%;
    height:88vh;

    top:40px;
    left:50%;

    transform:translateX(-50%);

}
/* =========================
   HEADER
========================= */

.luxury-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    background:#080808;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 42px;
}

/* Left Menu Icon */

.menu-btn{
    background:transparent;
    border:none;
    color:#ffffff;
    font-size:20px;
    font-weight:300;
    cursor:pointer;
}

.menu-btn i{
    font-size:30px;
    color:#2f2f2f;
}
.menu-btn:focus,
.menu-btn:active{
    background:transparent !important;
    outline:none;
    box-shadow:none;
}

/* Center Logo */

.logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
        top: 26px;
}

.logo img{
    width:118px !important;
    object-fit:contain;
}

/* Search Icon */

.search-btn{
    width:40px;
    height:40px;
    border:none;
    background:transparent;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
}

.search-btn i{
    font-size:24px;
    color:#2f2f2f;
}

/* =========================
   OVERLAY
========================= */

.menu-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.25);
    backdrop-filter:blur(18px);

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:0.4s ease;
}

/* ACTIVE */

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
   SIDEBAR MENU
========================= */

.sidebar-menu{
    width:470px;
    height:100vh;

    background:#f7f7f7;

    padding:28px 28px 18px;

    transform:translateX(-100%);
    transition:0.45s ease;

    display:flex;
    flex-direction:column;
}

.menu-overlay.active .sidebar-menu{
    transform:translateX(0);
}

/* Top Close */

.menu-top{
    display:flex;
    justify-content:flex-start;
}

.close-btn{
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    cursor:pointer;
}

.close-btn i{
    font-size:30px;
    color:#303030;
}

/* Menu Links */

.menu-links{
    margin-top:35px;
}

.menu-item{
    display:flex;
    align-items:center;
    justify-content:space-between;

    text-decoration:none;

    color:#3a3a3a;

    font-size:14px;
    font-weight:400;

    padding:18px 4px;

    border-top:1px solid #dddddd;
}

.menu-item:last-child{
    border-bottom:1px solid #dddddd;
}

.menu-item i{
    font-size:20px;
    font-family: "Playfair Display";
}

/* Empty Lines */

.extra-lines{
    margin-top:18px;
}

.extra-lines div{
    width:100%;
    height:1px;
    background:#dddddd;
    margin:34px 0;
}

/* Contact */

.contact-link{
    margin-top:8px;
    font-size:18px;
    color:#3a3a3a;
}

/* Bottom Buttons */

.bottom-buttons{
    margin-top:auto;

    display:flex;
    gap:10px;
}

.bottom-buttons button{
    flex:1;
    height:50px;

    border-radius:6px;

    font-size:14px;
    font-weight:500;

    cursor:pointer;
}

.dark-btn{
    background: #70737800;
    color: #c9a84c;
    border: 3px solid #c9a84c;
    font-family: "Playfair Display";
}

.light-btn{
    background:#fff;
    color:#444;
    border:1px solid #d8d8d8;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .luxury-header{
        height:70px;
        padding:0 18px;
    }

    .logo img{
        width:115px;
    }

    .hero-section{
        padding:82px 0 0;
        height:100vh;
    }

    .sidebar-menu{
        width:100%;
        border-radius:12px 12px 0 0;
        padding:24px;
    }

    .menu-item{
        font-size:17px;
        padding:20px 0;
    }

    .bottom-buttons{
        gap:8px;
    }

    .bottom-buttons button{
        height:48px;
        font-size:15px;
    }

}

/* zoom animation */

.fixed-video-box.active video{

    transform:scale(1.08);

}

/* ====================================
   BANNER SECTION
==================================== */

.banner-section{
    position:relative;
    z-index:5;
    padding-top:120vh;
    padding-left:40px;
    padding-right:40px;
    padding-bottom:100px;
}

.banner-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:25px;
}

/* cards */

.banner-card{
    position:relative;

    width:100%;
    height:500px;

    overflow:hidden;

    border-radius:20px;

    background:#000;
}

/* =========================
   VIDEO
========================= */

.banner-card video{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* mobile */

@media(max-width:991px){

.banner-grid{
    grid-template-columns:1fr;
}

.fixed-video-box.active{

    width:92%;
    height:60vh;
    top:15px;

}

.banner-card{
    height:60vh;
}

.banner-section{
    padding-left:15px;
    padding-right:15px;
}

}

/* overlay content */

.video-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:90%;
    transition:.5s;
}

.video-content p{
    font-size:18px;
    margin-bottom:15px;
}

.video-content h1{
    font-size:70px;
    line-height:1.1;
    font-weight:500;
    margin-bottom:20px;
}

.video-content a{
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid #fff;
}

/* ===================================
   BANNER SECTION
=================================== */



/* cards */

.banner-card{
    position:relative;
    height:88vh;
    overflow:hidden;
    background:url('../img/Casa Tupak Bottle (Reposado & Blanco) 2.png') center center/cover no-repeat;
}

/* images */

.banner-card img{
    width:100%;
    height:100%;  
    object-fit:cover;
    display:block;
}

/* center card */

.center-video-target{
    position:relative;
    overflow:hidden;
}

/* card content */

.card-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px 25px;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index:2;
}

.card-content h2{
    font-size:22px;
    margin-bottom:10px;
    font-weight:500;
}

.card-content a{
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid #fff;
}

/* ===================================
   VIDEO ANIMATION
=================================== */

.fixed-video-box.animate{

    width:32%;
    height:88vh;

    top:40px;
    left:50%;
    transform:translateX(-50%);

}

/* hide overlay text */

.fixed-video-box.animate .video-content{
    opacity:0;
}

/* final hide */

.fixed-video-box.hide-video{
    opacity:0;
    visibility:hidden;
}

/* ===================================
   EXTRA CONTENT
=================================== */

.extra-content{
    background:var(--charcoal);
    padding:120px 10%;
}

.extra-content h2{
    font-size:60px;
    margin-bottom:25px;
}

.extra-content p{
    font-size:18px;
    line-height:1.9;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

.banner-grid{
    grid-template-columns:1fr;
}

.banner-card{
    height:70vh;
}

.fixed-video-box.animate{

    width:92%;
    height:70vh;
    top:15px;

}

.video-content h1{
    font-size:45px;
}

.banner-section{
    padding-left:15px;
    padding-right:15px;
}

}

/* ===================================
   MOBILE
=================================== */

/* ===============================
   MOBILE FIX VERSION
================================ */

@media(max-width:768px){

/* remove merge animation */

.fixed-video-box{

    position:relative;
    width:100%;
    height:65vh;
    top:0;
    left:0;
    transform:none !important;

    opacity:1 !important;
    visibility:visible !important;
    padding:0px !important;

}

/* stop animation */

.fixed-video-box.animate{

    width:100%;
    height:65vh;
    top:0;
    left:0;
    transform:none !important;

}

/* video normal */

.fixed-video-box video{

    width:100%;
    height:100%;
    object-fit:cover;

}

/* remove fixed effect */

.scroll-animation-wrapper{

    height:auto;

}

/* banner spacing */

.banner-section{

    padding-top:20px;
    padding-left:15px;
    padding-right:15px;
    padding-bottom:50px;

}

/* one column */

.banner-grid{

    grid-template-columns:1fr;
    gap:15px;

}

/* cards */

.banner-card{

    height:60vh;

}

/* hide center empty section */

.center-video-target{

    display:none;

}

/* text */

.video-content{

    width:90%;

}

.video-content h1{

    font-size:34px;
    line-height:1.2;

}

.video-content p{

    font-size:14px;

}

.card-content{

    padding:20px;

}

.card-content h2{

    font-size:18px;

}

/* remove hide effect */

.fixed-video-box.hide-video{

    opacity:1 !important;
    visibility:visible !important;

}

}
        /* RESPONSIVE */
.logo img{
  width:101px;
  height:auto;
  display:block;
  object-fit:contain;
}
@media(max-width:768px){

  .logo img{
    width:82px;
  }
}
        .lux-touch-wrap {
  padding: 80px 5%;
  background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  background-color: var(--charcoal);
  font-family: var(--font-body);
}

.lux-touch-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.lux-touch-left {
  width: 35%;
}

.lux-touch-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--cream);
  font-family: var(--font-heading);
}

.lux-touch-left p {
  color: #ddb86e;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* RIGHT */
.lux-touch-slider {
  width: 65%;
  overflow: hidden;
  position: relative;
}

.lux-slider-track {
  display: flex;
  gap: 20px;
  transition: 0.5s;
}

/* CARD */
.lux-card {
 min-width: 400px;
    height: 569px;
  position: relative;
  overflow: hidden;
}

.lux-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.lux-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.lux-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.lux-overlay h4 {
  margin-bottom: 5px;
}

.lux-overlay span {
  font-size: 13px;
  border-bottom: 1px solid #fff;
}

/* ARROWS */
.lux-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: none;
  padding: 10px;
  cursor: pointer;
  color: var(--black);
}

.lux-arrow.left { left: 0; }
.lux-arrow.right { right: 0; }

/* MOBILE */
@media(max-width:768px){

  .lux-touch-container {
    flex-direction: column;
  }

  .lux-touch-left,
  .lux-touch-slider {
    width: 100%;
  }

  .lux-card {
    min-width: 80%;
  }

}

.df-footer {
  background: var(--charcoal);
  padding: 40px 5%;
  color: var(--text-light);
  border-top: 1px solid rgba(201,168,76,0.15);
}

/* HEADER ENHANCEMENT */
.r-header {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

/* TOP BAR */
.df-topbar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.df-top-item p {
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-body);
}

/* DIVIDER */
.df-divider {
  height: 1px;
  background: rgba(201,168,76,0.15);
  margin: 25px 0;
}

/* MAIN */
.df-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* NEWSLETTER */
.df-newsletter {
  width: 35%;
}

.df-newsletter h4 {
  margin-bottom: 15px;
  color: var(--cream);
  font-family: var(--font-heading);
}

.df-input-wrap {
  display: flex;
  gap: 10px;
}

.df-input-wrap input {
  flex: 1;
  padding: 12px;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--charcoal-mid);
  color: var(--text-light);
}

.df-input-wrap button {
  background: var(--gold);
  color: var(--black);
  padding: 12px 18px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: var(--font-body);
}

/* TOGGLE */
.df-toggle {
  margin-top: 20px;
  font-size: 14px;
}

.df-switch {
  display: inline-block;
  width: 40px;
  height: 20px;
  background: rgba(201,168,76,0.3);
  border-radius: 20px;
  margin-left: 10px;
}

/* LINKS */
.df-links {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  width: 65%;
}

.df-col h5 {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.df-col a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.df-col a:hover {
  color: var(--gold);
}

/* BOTTOM */
.df-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.df-logo {
  font-size: 28px;
}

.df-social span {
  margin-left: 10px;
  font-size: 14px;
  color: var(--gold);
  cursor: pointer;
  transition: opacity 0.2s;
}

.df-social span:hover {
  opacity: 0.7;
}

.df-lang {
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){

  .df-topbar {
    grid-template-columns: 1fr;
  }

  .df-main {
    flex-direction: column;
  }

  .df-newsletter,
  .df-links {
    width: 100%;
  }

  .df-links {
    grid-template-columns: repeat(2,1fr);
  }

  .df-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

}
/* SECTION */
.luxury-section{
    width:100%;
    min-height:100vh;
    display:flex;
    background:var(--charcoal);
}

/* =========================
LEFT SLIDER
========================= */

.left-slider{
    width:34%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider-track{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:none;
    transition:none;
}

.slide.active img{
    transform:none;
}

/* =========================
CENTER + RIGHT CONTENT
========================= */

.right-wrapper{
    width:66%;
    display:flex;
}

/* COLUMN */

.right-content{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 40px;
    border-left:1px solid rgba(201,168,76,0.08);
}

/* CONTENT */

.content-box{
    max-width:620px;
    text-align:center;
}

.subtitle{
    font-size:15px;
    color:var(--text-muted);
    margin-bottom:18px;
    font-weight:500;
    font-family:var(--font-body);
}

.main-title{
    font-size:2rem;
    line-height:1.1;
    font-weight:300;
    color:var(--cream);
    margin-bottom:60px;
    letter-spacing:-1px;
    font-family:var(--font-heading);
}

/* DF-TOP-ITEM STRONG */
.df-top-item strong {
  color: var(--cream);
  font-family: var(--font-body);
}

/* PRODUCT GRID */

.product-grid{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:60px;
}

/* PRODUCT CARD */

.product-card{
    width:220px;
        justify-content: center;
}

.product-image{
    background:var(--charcoal-mid);
    padding:35px;
    transition:0.4s ease;
    overflow:hidden;
}

.product-image img{
    width:100%;
    display:block;
    transition:0.4s ease;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-title{
    font-size:11px;
    line-height:1.3;
    color:var(--text-muted);
    font-weight:400;
    margin-top:15px;
    font-family:var(--font-body);
    letter-spacing:2px;
    text-transform:uppercase;
}

/* BUTTON */

.discover-btn{
    display:inline-block;
    background:transparent;
    color:var(--gold);
    text-decoration:none;
    border-radius:0;
    font-size:11px;
    transition:all 0.3s;
    border:1px solid rgba(201,168,76,0.4);
    font-family:var(--font-body);
    letter-spacing:2px;
    text-transform:uppercase;
    padding:14px 32px;
}

.discover-btn:hover{
    background:var(--gold);
    color:var(--black);
}

/* =========================
TABLET
========================= */

@media(max-width:1400px){

    .main-title{
        font-size:42px;
    }

    .product-card{
        width:180px;
    }

}

@media(max-width:1200px){

    .luxury-section{
        flex-direction:column;
    }

    .left-slider{
        width:100%;
        height:75vh;
    }

    .right-wrapper{
        width:100%;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .right-wrapper{
        flex-direction:column;
    }

    .right-content{
        width:100%;
        padding:70px 25px;
        border-left:none;
        border-top:1px solid rgba(201,168,76,0.08);
    }

    .main-title{
        font-size:38px;
        margin-bottom:40px;
    }

    .product-grid{
        flex-direction:column;
        align-items:center;
    }

    .product-card{
        width:100%;
        max-width:320px;
    }

}

/* SMALL MOBILE */

@media(max-width:768px){

    .left-slider{
        height:85vh;
    }

    .main-title{
        font-size:30px;
    }

    .product-image{
        padding:25px;
    }

    .product-title{
        font-size:18px;
    }

    .discover-btn{
        width:110px;
        height:87px;
        font-size:18px;
    }
    .phone-hide-img{
        display: none !important;
    }

}
/* =========================
STACK SECTION
========================= */

.sticky-wrapper{
    position:relative;
}

/* EACH PANEL */

.sticky-panel{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: visible;
    z-index: 2;
}

/* BANNER */

.luxury-banner{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
}

/* Background Image */
.luxury-banner .bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.banner-overlay{
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.45); */
    z-index: 2;
}

/* Banner Wrapper - Flex Container */
.banner-wrapper{
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
}

/* Content */
.banner-content{
    position: relative;
    z-index: 3;
    max-width: 550px;
    color: #fff;
    text-align: center;
    flex: 0 1 45%;
}

/* Right Side Image */
.banner-image-right{
    flex: 0 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-right-img{
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

/* Heading */
.banner-content h2{
    font-size: 68px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
        color: #ffb347;
}
.banner-content h4{
    padding: 14px;
}
.banner-content h6{
      color: #ffb347;
}
/* Paragraph */
.banner-content p{
        font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f1f1f1;
    margin-top: 16px;
}

        
/* Button */
.banner-btn{
    display: inline-block;
    padding: 5px 34px;
    background: #462a01;
    color: #ffb347;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

.banner-btn:hover{
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width: 992px){

    .luxury-banner{
        height: 80vh;
        padding: 0 4%;
    }

    .banner-wrapper{
        gap: 30px;
    }

    .banner-content{
        max-width: none;
        flex: 0 1 50%;
    }

    .banner-image-right{
        flex: 0 1 50%;
    }

    .banner-right-img{
        max-width: 280px;
    }

    .banner-content h2{
        font-size: 44px;
    }

    .banner-content p{
        font-size: 16px;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

    .luxury-banner{
        height: 70vh;
        justify-content: center;
        padding: 0 15px;
    }

    .banner-wrapper{
        gap: 20px;
    }

    .banner-content{
        text-align: center;
        max-width: none;
        flex: 0 1 45%;
    }

    .banner-image-right{
        flex: 0 1 45%;
    }

    .banner-right-img{
        max-width: 243px;
    }

    .banner-content h2 {
               font-size: 39px !important;
        margin-bottom: 4px;
    }


    .banner-content p {
       font-size: 13px;
        line-height: 19px;
        margin-bottom: 4px;
        
    }

    .banner-btn{
                padding: 5px 28px;
        font-size: 10px;

    }
    .banner-content h4 {
    padding: 9px;
    font-size: 18px;
}
.banner-content h6 {
    color: #ffb347;
    font-size: 14px;
}

}
@media (max-width: 568px) {
    .sticky-panel, .luxury-banner {
        height: 60vh !important;
    }

    .banner-wrapper{
        gap: 15px;
    }

    .banner-content{
        flex: 0 1 50%;
    }

    .banner-image-right{
        flex: 0 1 50%;
    }

    .banner-right-img{
        max-width: 150px;
    }

    .banner-content h2 {
        font-size: 31px !important;
        margin-bottom: 4px;
    }
    .banner-content h4 {
        padding: 9px;
        font-size: 25px;
    }
    .banner-content p {
        font-size: 11px;
        line-height: 17px;
        margin-bottom: 17px;
        padding-right: 0;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width: 480px){
.sticky-panel,
    .luxury-banner{
        height: 45vh !important;
    }

    .banner-wrapper{
        gap: 10px;
    }

    .banner-content{
        flex: 0 1 50%;
    }

    .banner-image-right{
        flex: 0 1 50%;
    }

    .banner-right-img{
        max-width: 160px;
    }

    .banner-content h2 {
        font-size: 24px !important;
        margin-bottom: 0px;
    }

    .banner-content p{
        font-size: 10px;
        padding-right: 0;
    }
    p .mobile-hide{
display: none;
}
.banner-content h4 {
    padding: 9px;
    font-size: 16px;
}
.banner-content h6 {
    color: #ffb347;
    font-size: 11px;
}
 .main-bottle {
        max-width: 203px !important;
    }
}
@media (max-width: 368px) {
    .luxury-banner {
                height: 35vh !important;
        min-height: 35vh !important;
    }
   
    .banner-content p {
        font-size: 9px !important;
        margin-bottom: 0px !important;
            margin-top: 9px !important;
    }
}



/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* DEMO CONTENT */

.demo-content{
    padding:120px 10%;
    background:#fff;
}

.demo-content h2{
    font-size:60px;
    margin-bottom:20px;
}

.demo-content p{
    font-size:20px;
    line-height:1.9;
    color:#555;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

    .banner-content h2{
        font-size:56px;
    }

}

@media(max-width:768px){

    .sticky-panel,
    .luxury-banner{
                height: 58vh;
    }

   
}

.mobile-video-section{
    display:none;
}
@media(max-width:768px){

.scroll-animation-wrapper{
    display: none;
}

    .mobile-video-section{
        position:relative;
        width:100%;
        overflow:hidden;
    }
    .mobile-video-section{
    display:block;
}


    /* =====================================
    VIDEO
    ===================================== */

    .fixed-video-boxs{
        position:relative;
        width:100%;
        height:85vh;
        overflow:hidden;
    }

    .fixed-video-boxs video{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    /* =====================================
    FIRST TEXT
    ===================================== */

    .video-contents{

        position:absolute;

        top:50%;
        left:50%;

        transform:translate(-50%,-50%);

        width:90%;

        text-align:center;

        z-index:10;

        transition:0.2s linear;

    }

    /* TEXT STYLE */

    .paragraph{
        font-family: var(--font-body);
        letter-spacing:4px;
        font-size:12px;
        text-transform:uppercase;
        color:rgba(201,168,76,0.8);
        margin-bottom:12px;
    }

    .heading-tag{
        background: linear-gradient(135deg, #f0d080, #c9a84c, #9a7b2f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size:42px;
        font-family: var(--font-heading);
        line-height:1.2;
        margin-bottom:20px;
    }

    .a-tag{
        border: 1px solid rgba(201,168,76,0.6);
        padding: 12px 32px;
        letter-spacing: 2px;
        font-family: var(--font-body);
        font-size: 12px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        color: #fff;
        text-decoration: none;
        display: inline-block;
    }

    .a-tag:hover {
        background: var(--gold);
        color: var(--black);
    }

    /* HIDE FIRST TEXT */

    .video-contents.hide{

        opacity:0;

        visibility:hidden;

    }

    /* =====================================
    SECOND TEXT
    ===================================== */

    .after-banner-text{

        position:fixed;

        top:124px;

        left:50%;

        transform:translateX(-50%);

        width:90%;

        text-align:center;

        /* z-index:9999; */

        opacity:0;

        visibility:hidden;

        transition:0.3s ease;

    }

    /* SHOW SECOND TEXT */

    .after-banner-text.show{

        opacity:1;

        visibility:visible;
                

    }

    /* BLACK TEXT */

    .black{
        color:#c9a84c;
    }

    .black-btn{
        color: #c9a84c;
        border: 1px solid #c9a84c;
    }

    /* =====================================
    NEXT SECTION
    ===================================== */

    .next-section{
        position:relative;
        background:var(--charcoal);
        padding:120px 15px 60px;
        z-index:5;
    }

    .dummy-box{
        height:420px;
        background:var(--charcoal-mid);
        border-radius:20px;
        margin-bottom:20px;
        border:1px solid rgba(201,168,76,0.08);
    }

}

/* =====================================
DESKTOP
===================================== */

@media(min-width:769px){

    .after-banner-text{
        display:none;
    }

}
/* SECTION ONLY FOR MOBILE */

.mobile-banner-section{
    display:none;
}

/* MOBILE VIEW */

@media(max-width:768px){

    .mobile-banner-section{
        display:block;
        width:100%;
        padding:20px 15px;
        background:var(--charcoal);
    }
.mobile-banner-section{
    transition:0.4s ease;
}

/* ADD THIS CLASS WHEN PAGE SCROLL 50PX */

.mobile-banner-section.active-scroll{
    margin-top:341px;
}
    .mobile-banner-grid{
        display:flex;
        gap:12px;
    }

    .mobile-banner-card{
        position:relative;

    width:50%;
    height:220px;

    overflow:hidden;

    border-radius:18px;

    background:#000;
    }

    

    .mobile-card-content{
        position:absolute;
        bottom:20px;
        left:15px;
        z-index:2;
    }

    .mobile-card-content h2{
        font-size:18px;
        color:var(--cream);
        font-family:var(--font-heading);
        margin-bottom:8px;
        line-height:1.3;
    }

    .mobile-card-content a{
        color:var(--gold);
        text-decoration:none;
        font-size:14px;
        border-bottom:1px solid var(--gold);
        padding-bottom:2px;
    }

    /* DARK OVERLAY */

    .mobile-banner-card::after{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(0,0,0,0.25);
    }

}
.ct-hero-section{
    width:100%;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    background:#050505;
    display:flex;
    align-items:center;
    padding:80px 7%;
}

/* BACKGROUND */

.ct-bg-layer{
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
    url('../img/casa-bg.jpg') center/cover no-repeat;
    z-index:1;
    transform:scale(1.1);
    animation:bgZoom 18s linear infinite alternate;
}

@keyframes bgZoom{

    from{
        transform:scale(1.05);
    }

    to{
        transform:scale(1.15);
    }

}

/* GLOW EFFECTS */

.ct-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:1;
    opacity:0.45;
}

.glow-one{
    width:350px;
    height:350px;
    background:#ff9800;
    top:-120px;
    left:-120px;
}

.glow-two{
    width:320px;
    height:320px;
    background:#ff3d00;
    bottom:-120px;
    right:-120px;
}

/* CONTAINER */

.ct-container{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    position:relative;
    z-index:2;
}

/* =========================
LEFT CONTENT
========================= */

.ct-content{
    width:50%;
    animation:fadeLeft 1s ease;
}

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

.ct-subtitle{
    display:inline-block;
    color:var(--gold);
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:22px;
    font-family:var(--font-body);
}

.ct-content h1{
    font-size:60px;
    line-height:0.95;
    color:var(--cream);
    font-family:"Cormorant Garamond", Georgia, serif;
    margin-bottom:30px;
    font-weight:700;
}

.ct-content h1 span{
    color:var(--gold);
    position:relative;
}

.ct-content p{
    color:var(--text-muted);
    font-size:14px;
    line-height:1.9;
    margin-bottom:40px;
    font-family:"Cormorant Garamond";
}
.ct-content span{
    font-family: Cinzel, serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #c9a34c;
}

/* BUTTONS */

.ct-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.ct-btn{
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:0.4s ease;
}

.primary-btn{
    background:var(--gold);
    color:var(--black);
    font-family:var(--font-body);
}

.primary-btn:hover{
    transform:translateY(-6px);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    backdrop-filter:blur(8px);
}

.secondary-btn:hover{
    background:rgba(255,255,255,0.08);
}

/* STATS */

.ct-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.ct-stat-box{
    min-width:170px;
    padding:22px;
    border-radius:24px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
}

.ct-stat-box h3{
    color:var(--gold);
    font-size:32px;
    margin-bottom:8px;
    font-family:var(--font-heading);
}

.ct-stat-box span{
    color:var(--text-light);
    font-size:14px;
    font-family:var(--font-body);
}

/* =========================
RIGHT SIDE
========================= */

/* =========================
RIGHT IMAGE AREA
========================= */

.ct-image-area{
    width:45%;
    min-height:760px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1200px;
}

/* =========================
BACKGROUND GLOW CIRCLE
========================= */

.ct-circle{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(255,179,71,0.15),
    rgba(255,255,255,0.02));
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    animation:rotateCircle 20s linear infinite;
}

/* MAIN BOTTLE */

.main-bottle{
     width:100%;
    max-width:360px;
    position:relative;
    z-index:5;
    transform-origin:center bottom;

    animation:
    bottleFloat 5s ease-in-out infinite,
    bottleSwing 12s ease-in-out infinite;

    filter:
    drop-shadow(0 35px 60px rgba(0,0,0,0.6))
    drop-shadow(0 0 30px rgba(255,179,71,0.25));
}

/* =========================
FLOATING IMAGES
========================= */

.floating-img{
    position:absolute;
    width:75px;
    height:200px;
    border-radius:28px;
    overflow:hidden;
    /* background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08); */
    /* box-shadow:
    0 20px 45px rgba(0,0,0,0.4),
    0 0 20px rgba(255,179,71,0.12); */
    transition:0.5s ease;
}

/* HOVER EFFECT */

.floating-img:hover{
    transform:scale(1.08) rotate(2deg);
    box-shadow:
    0 25px 55px rgba(0,0,0,0.5),
    0 0 35px rgba(255,179,71,0.35);
}

/* IMAGE */

.floating-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.floating-img:hover img{
    transform:scale(1.08);
}

/* =========================
POSITIONS
========================= */

.img-one{
    top:20px;
    left:-40px;
    animation:floatOne 5s ease-in-out infinite;
}

.img-two{
    top:60px;
    right:-40px;
    animation:floatTwo 6s ease-in-out infinite;
}

.img-three{
    bottom:40px;
    left:-20px;
    animation:floatThree 5.5s ease-in-out infinite;
}

.img-four{
    bottom:60px;
    right:-20px;
    animation:floatFour 6s ease-in-out infinite;
}


/* ANIMATIONS */

@keyframes bottleFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}


/* ROTATE LEFT → CENTER → RIGHT */

@keyframes bottleSwing{

    /* START STRAIGHT */

    0%{
        rotate:0deg;
    }

    /* STAY STRAIGHT 5 SEC */

    40%{
        rotate:0deg;
    }

    /* LEFT SIDE */

    55%{
        rotate:-11deg;
    }

    /* BACK CENTER */

    70%{
        rotate:0deg;
    }

    /* RIGHT SIDE */

    85%{
        rotate:11deg;
    }

    /* BACK CENTER */

    100%{
        rotate:0deg;
    }

}

@keyframes bottleRotate{

    0%{
        rotate:-2deg;
    }

    50%{
        rotate:2deg;
    }

    100%{
        rotate:-2deg;
    }

}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes pulseCircle{

    0%{
        transform:scale(1);
        opacity:0.4;
    }

    50%{
        transform:scale(1.05);
        opacity:0.8;
    }

    100%{
        transform:scale(1);
        opacity:0.4;
    }

}

@keyframes floatOne{

    0%{
        transform:translateY(0px) rotate(-4deg);
    }

    50%{
        transform:translateY(-20px) rotate(4deg);
    }

    100%{
        transform:translateY(0px) rotate(-4deg);
    }

}

@keyframes floatTwo{

    0%{
        transform:translateY(0px) rotate(4deg);
    }

    50%{
        transform:translateY(20px) rotate(-4deg);
    }

    100%{
        transform:translateY(0px) rotate(4deg);
    }

}

@keyframes floatThree{

    0%{
        transform:translateY(0px) rotate(3deg);
    }

    50%{
        transform:translateY(-18px) rotate(-3deg);
    }

    100%{
        transform:translateY(0px) rotate(3deg);
    }

}

@keyframes floatFour{

    0%{
        transform:translateY(0px) rotate(-3deg);
    }

    50%{
        transform:translateY(18px) rotate(3deg);
    }

    100%{
        transform:translateY(0px) rotate(-3deg);
    }

}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .ct-image-area{
        width:100%;
        min-height:650px;
        margin-top:40px;
    }

    .ct-circle{
        width:420px;
        height:420px;
    }

    .main-bottle{
        max-width:300px;
    }


}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .ct-image-area{
        min-height:500px;
    }

    .ct-circle{
        width:280px;
        height:280px;
    }

    .main-bottle{
        max-width:131px;
    }

    .floating-img{
        width:90px;
        height:120px;
        border-radius:18px;
    }

    .img-one{
        top:10px;
        left:0;
    }

    .img-two{
        top:25px;
        right:0;
    }

    .img-three{
        bottom:30px;
        left:10px;
    }

    .img-four{
        bottom:45px;
        right:10px;
    }

}

@keyframes moveOne{

    50%{
        transform:translateY(-18px);
    }

}

@keyframes moveTwo{

    50%{
        transform:translateY(18px);
    }

}

@keyframes moveThree{

    50%{
        transform:translateY(-15px);
    }

}



/* =========================
TABLET
========================= */

@media(max-width:991px){

    .ct-container{
        flex-direction:column;
        text-align:center;
    }

    .ct-content{
        width:100%;
    }


    .ct-buttons,
    .ct-stats{
        justify-content:center;
    }

    .ct-content h1{
        font-size:58px;
    }



}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .ct-hero-section{
        padding:80px 20px;
        min-height:auto;
    }

    .ct-content h1{
        font-size:42px;
    }

    .ct-content p{
        font-size:15px;
        line-height:1.8;
    }

    
    

    .ct-stat-box{
        width:100%;
    }

    .ct-btn{
        width:100%;
        text-align:center;
    }

}
/* =========================
   MAIN SECTION
========================= */

.neo-luxury-section{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    background:
    linear-gradient(135deg,#000000 40%,#140800 100%);
    padding:80px 7%;
    display:flex;
    align-items:center;
}

/* =========================
   BACKGROUND LIGHTS
========================= */

.bg-light{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:0.4;
}

.light1{
    width:400px;
    height:400px;
    background:#ff9900;
    top:-120px;
    left:-120px;
    animation:moveLight 6s ease-in-out infinite alternate;
}

.light2{
    width:350px;
    height:350px;
    background:#ff5500;
    bottom:-120px;
    right:-100px;
    animation:moveLight2 8s ease-in-out infinite alternate;
}

/* =========================
   CONTAINER
========================= */

.neo-container{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:5;
}

/* =========================
   LEFT CONTENT
========================= */

.neo-content{
    flex:1;
    max-width:620px;
}

.neo-subtitle{
    color:var(--gold);
    letter-spacing:4px;
    font-size:11px;
    display:block;
    margin-bottom:25px;
    font-family:var(--font-body);
    text-transform:uppercase;
}

.neo-content h1{
    font-size:60px;
    line-height:0.95;
    color:var(--cream);
    font-family:"Cormorant Garamond", Georgia, serif;
    margin-bottom:30px;
    font-weight:700;
}

.neo-content h1 span{
    background: linear-gradient(135deg, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position:relative;
}

.neo-content h1 span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:10px;
    width:100%;
    height:12px;
    background:rgba(201,168,76,0.18);
    z-index:-1;
}

.neo-content p{
    color:var(--text-muted);
    font-size:14px;
    line-height:1.9;
    margin-bottom:40px;
    font-family:"Cormorant Garamond";
}
.neo-content span{
    font-family: Cinzel, serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #c9a34c;
}

/* =========================
   BUTTONS
========================= */

.neo-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.neo-btn{
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.neo-btn.primary{
    background:linear-gradient(135deg,var(--gold),var(--amber));
    color:var(--black);
    box-shadow:0 10px 30px rgba(201,168,76,0.35);
    font-family:var(--font-body);
}

.neo-btn.primary:hover{
    transform:translateY(-6px);
}

.neo-btn.secondary{
    border:1px solid rgba(201,168,76,0.25);
    color:var(--cream);
    backdrop-filter:blur(10px);
    font-family:var(--font-body);
}

.neo-btn.secondary:hover{
    background:var(--gold);
    color:var(--black);
}

/* =========================
   FEATURE CARDS
========================= */

.neo-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.feature-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border-radius:24px;
    padding:28px;
    min-width:170px;
    transition:0.4s ease;
}

.feature-card:hover{
    transform:translateY(-8px) scale(1.02);
    border-color:var(--gold);
}

.feature-card h3{
    font-size:38px;
    color:var(--gold);
    margin-bottom:8px;
    font-family:var(--font-heading);
}

.feature-card span{
    color:var(--text-light);
    font-size:15px;
    font-family:var(--font-body);
}

/* =========================
   RIGHT IMAGE AREA
========================= */

.neo-image-area{
    flex:1;
    min-height:720px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Glow */

.main-glow{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(255,136,0,0.35),
    transparent 70%);
    animation:pulseGlow 4s ease-in-out infinite;
}

/* Rotating Ring */

.rotating-ring{
    position:absolute;
    width:580px;
    height:580px;
    border-radius:50%;
    border:1px solid rgba(201,168,76,0.08);
    border-top:1px solid var(--gold);
    animation:rotateRing 18s linear infinite;
}

/* Main Product */

.main-product{
    position:relative;
    width:390px;
    z-index:5;
    animation:mainFloat 4s ease-in-out infinite;
    filter:drop-shadow(0 30px 40px rgba(255,136,0,0.35));
}

/* Floating Items */

.float-item{
    position:absolute;
    width:85px;
    z-index:6;
}

.item1{
        top: 39px;
    left: 139px;
    animation: float1 6s ease-in-out infinite;
}

.item2{
    top:120px;
    right:20px;
    animation:float2 7s ease-in-out infinite;
}

.item3{
    bottom:60px;
    left:80px;
    animation:float3 5s ease-in-out infinite;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes rotateRing{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes mainFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes pulseGlow{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes float1{
    50%{
        transform:translateY(-20px) rotate(5deg);
    }
}

@keyframes float2{
    50%{
        transform:translateY(18px) rotate(-6deg);
    }
}

@keyframes float3{
    50%{
        transform:translateY(-16px);
    }
}

@keyframes moveLight{
    100%{
        transform:translate(60px,40px);
    }
}

@keyframes moveLight2{
    100%{
        transform:translate(-60px,-30px);
    }
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:1100px){

    .neo-container{
        flex-direction:column;
        text-align:center;
    }

    .neo-content{
        max-width:100%;
    }

    .neo-buttons,
    .neo-features{
        justify-content:center;
    }

    .neo-content h1{
        font-size:70px;
    }

    .neo-content p{
        margin-left:auto;
        margin-right:auto;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .neo-luxury-section{
        padding:60px 20px;
    }

    .neo-content h1{
        font-size:48px;
    }

    .neo-content p{
        font-size:15px;
        line-height:1.8;
    }

    .neo-image-area{
        min-height:500px;
    }

    .main-product{
        width:250px;
    }

    .rotating-ring{
        width:320px;
        height:320px;
    }

    .main-glow{
        width:280px;
        height:280px;
    }

    .float-item{
        width:70px;
    }

    .feature-card{
        width:100%;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .neo-content h1{
        font-size:40px;
    }

    .neo-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }

    .neo-btn{
        width:100%;
        text-align:center;
    }
    .item1 {
    left: -38px !important;
}
.item2 {
    right: -75px !important;
}
.item3 {
    bottom: 29px;
    left: 80px !important;
}
.float-item{
        width:90px;
    }
}


/* ===================================
   NEW BRAND SECTIONS — CASA TUPKA
=================================== */

/* ---- SHARED LABEL ---- */
.ct-about-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.ct-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.ct-section-heading span {
  color: var(--gold);
  font-style: italic;
}

/* ---- ABOUT SECTION ---- */
.ct-about-section {
  background: var(--black);
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.ct-about-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ct-about-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ct-about-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 60px;
}

.ct-about-heading span {
  color: var(--gold);
  font-style: italic;
}

.ct-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ct-about-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 24px;
}

.ct-about-divider {
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 32px 0;
}

.ct-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ct-about-tags span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 18px;
  border-radius: 2px;
}

.ct-about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ct-about-img-frame {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  background: rgba(201,168,76,0.03);
}

.ct-about-logo-large {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.ct-about-frame-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ct-quote {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  line-height: 1.7;
  margin: 0;
}

.ct-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 12px;
}

/* ---- TEQUILA SECTION ---- */
.ct-tequila-section {
  background: var(--charcoal);
  padding: 120px 5%;
  position: relative;
}

.ct-tequila-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ct-tequila-header {
  text-align: center;
  margin-bottom: 70px;
}

.ct-tequila-intro {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.ct-tequila-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.12);
}

.ct-tequila-fact {
  background: var(--charcoal);
  padding: 48px 36px;
  transition: background 0.4s ease;
  border: 1px solid transparent;
}

.ct-tequila-fact:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
}

.ct-fact-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.ct-tequila-fact h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}

.ct-tequila-fact p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ---- COLLECTION SECTION ---- */
.ct-collection-section {
  background: var(--black);
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.ct-collection-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.ct-collection-intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 70px;
  line-height: 1.8;
}

.ct-collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.ct-collection-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
  padding: 50px 40px;
  transition: border-color 0.4s ease;
}

.ct-collection-card:hover {
  border-color: rgba(201,168,76,0.5);
}

.ct-card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  top: -50px;
  right: -50px;
  opacity: 0.3;
}

.blanco-glow { background: rgba(200, 230, 255, 0.3); }
.reposado-glow { background: rgba(201, 168, 76, 0.4); }

.ct-card-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ct-card-img-wrap {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.ct-card-bottle {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  transition: transform 0.6s ease;
}

.ct-collection-card:hover .ct-card-bottle {
  transform: translateY(-10px);
}

.ct-card-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.ct-card-content h3 span {
  color: var(--gold);
  font-style: italic;
  font-size: 36px;
}

.ct-card-divider {
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 20px 0;
}

.ct-card-descriptor {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ct-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ct-card-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 20px;
}

.ct-note {
  display: flex;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  align-items: flex-start;
}

.ct-note-label {
  color: var(--gold);
  font-weight: 600;
  min-width: 60px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.ct-card-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 14px 28px;
  transition: all 0.3s ease;
}

.ct-card-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- FOUNDER SECTION ---- */
.ct-founder-section {
  background: var(--charcoal);
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.ct-founder-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.ct-founder-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ct-founder-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 30px;
}

.ct-founder-heading span {
  color: var(--gold);
  font-style: italic;
}

.ct-founder-left p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.ct-founder-left p strong {
  color: var(--cream);
}

.ct-founder-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.ct-founder-stat h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 6px;
}

.ct-founder-stat span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ct-founder-img-container {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

.ct-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.1);
  transition: transform 0.8s ease;
}

.ct-founder-section:hover .ct-founder-img {
  transform: scale(1.03);
}

.ct-founder-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, transparent 50%);
}

.ct-founder-quote {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  line-height: 1.7;
}

.ct-founder-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 10px;
}

/* ---- STATS SECTION ---- */
.ct-stats-section {
  background: var(--black);
  padding: 100px 5%;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.ct-stats-bg-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.15), transparent);
  pointer-events: none;
}

.ct-stats-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ct-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid rgba(201,168,76,0.1);
}

.ct-stat-item {
  padding: 50px 30px;
  border-right: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s ease;
}

.ct-stat-item:hover { background: rgba(201,168,76,0.04); }

.ct-stat-num {
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.ct-stat-unit {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.ct-stat-item p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ---- COUNTER ANIMATION ---- */
.ct-stat-num.counted { animation: goldPulse 0.5s ease; }
@keyframes goldPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); color: var(--gold-light); }
  100% { transform: scale(1); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .ct-about-grid,
  .ct-founder-container { grid-template-columns: 1fr; gap: 50px; }
  .ct-collection-grid { grid-template-columns: 1fr; }
  .ct-tequila-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ct-about-section,
  .ct-tequila-section,
  .ct-collection-section,
  .ct-founder-section,
  .ct-stats-section { padding: 80px 5%; }
  .ct-tequila-grid { grid-template-columns: 1fr; }
  .ct-stats-grid { grid-template-columns: 1fr; }
  .ct-founder-stats { flex-direction: column; gap: 24px; }
  .ct-founder-img-container { height: 400px; }
}
