 *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .hero-carousel {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .carousel-slide.active {
      opacity: 1;
    }

    .carousel-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
      z-index: 1;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      max-width: 95%;
      width: 100%;
      padding: 2rem;
      animation: slideInUp 1.2s ease-out;
    }

    .slide-title {
      font-family: 'Montserrat', 'Arial Black', sans-serif;
      font-size: clamp(2.5rem, 8vw, 4rem);
      font-weight: 900;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
      line-height: 1.2;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      width: 100%;
      max-width: 100%;
    }

    .slide-title.centered-title {
      text-align: center;
      width: 100%;
    }

    .slide-subtitle {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: 400;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
      line-height: 1.3;
    }

    .slide-description {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      margin-bottom: 3rem;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, #C6A57C 0%, #B8956A 50%, #A6845B 100%);
      color: #1a1a1a;
      padding: 1.4rem 4rem;
      font-size: 1.3rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 0;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 
        0 0 0 1px rgba(198, 165, 124, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-family: 'Montserrat', sans-serif;
      margin-top: 1rem;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      border: 2px solid transparent;
      background-clip: padding-box;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
      z-index: 1;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 
        0 0 0 1px rgba(198, 165, 124, 0.6),
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      background: linear-gradient(135deg, #D4B385 0%, #C6A57C 50%, #B8956A 100%);
      color: #0a0a0a;
      letter-spacing: 2.5px;
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 2rem;
      font-weight: bold;
      transition: all 0.3s ease;
      z-index: 10;
      backdrop-filter: blur(15px);
      font-family: monospace;
    }

    .carousel-nav:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 0 30px rgba(255,255,255,0.3);
      color: #C6A57C;
    }

    .carousel-nav.prev {
      left: 40px;
    }

    .carousel-nav.next {
      right: 40px;
    }

    /* Background images for each slide */
    .slide-1 {
      background-image: url('assets/images/index-hero/1.jpg');
    }

    .slide-2 {
      background-image: url('assets/images/index-hero/2.jpg');
    }

    .slide-3 {
      background-image: url('assets/images/index-hero/3.jpg');
    }

    /* Animations */
    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .slide-content {
        padding: 2rem 1rem;
        max-width: 95%;
      }

      .slide-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: 0.3px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
      }

      .slide-subtitle {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
      }

      .slide-description {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        margin-bottom: 2.5rem;
        max-width: 100%;
      }

      .cta-button {
        padding: 1.2rem 3.5rem;
        font-size: 1.4rem;
        letter-spacing: 1.8px;
        margin-top: 1.5rem;
      }

      /* Hide arrows on mobile */
      .carousel-nav {
        display: none;
      }
    }

    /* Extra small screens */
    @media (max-width: 480px) {
      .slide-content {
        padding: 1.5rem 1rem;
        max-width: 95%;
      }

      .slide-title {
        font-size: clamp(2rem, 9vw, 3rem);
        letter-spacing: 0.2px;
        margin-bottom: 1.2rem;
        line-height: 1.3;
      }

      .slide-subtitle {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.2rem;
      }

      .slide-description {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
        margin-bottom: 2rem;
      }

      .cta-button {
        padding: 1.1rem 3rem;
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        margin-top: 1.2rem;
      }
    }
 .black-edition-showcase {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
      color: #ffffff;
      padding: 3rem 2rem 4rem;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 120px rgba(0,0,0,0.8);
      border-top: 1px solid rgba(198, 165, 124, 0.3);
      border-bottom: 1px solid rgba(198, 165, 124, 0.3);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .black-edition-header {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto 2rem auto;
      text-align: center;
      z-index: 2;
    }
    
    .black-edition-container {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 45% 55%;
      gap: 2rem;
      align-items: center;
      position: relative;
    }
    
    .black-edition-content {
      padding: 2rem;
      z-index: 2;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .black-edition-title-container {
      margin-bottom: 3rem;
      max-width: 100%;
      overflow: visible;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .black-edition-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 0.8rem;
      line-height: 1.2;
      color: #C6A57C;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      width: 100%;
      display: block;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    
    .black-edition-subtitle {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: #C6A57C;
      letter-spacing: 0.05em;
      margin-bottom: 2rem;
      display: block;
      text-align: center;
    }
    
    .black-edition-description {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
      max-width: 90%;
      color: #e8e8e8;
      font-weight: 400;
      letter-spacing: 0.025em;
      text-shadow: 0 0 1px rgba(255,255,255,0.1);
      font-style: italic;
      text-align: left;
    }
    
    .black-edition-cta {
      margin-top: 2rem;
      background: linear-gradient(135deg, #C6A57C 0%, #B8956A 50%, #A6845B 100%);
      border: 2px solid #C6A57C;
      color: #ffffff;
      box-shadow: 
        0 0 0 1px rgba(198, 165, 124, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

    .black-edition-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(198, 165, 124, 0.2), transparent);
      transition: left 0.6s ease;
      z-index: 1;
    }

    .black-edition-cta:hover::before {
      left: 100%;
    }

    .black-edition-cta:hover {
      background: linear-gradient(135deg, #D4B385 0%, #C6A57C 50%, #B8956A 100%);
      color: #ffffff;
      border-color: #D4B385;
      box-shadow: 
        0 0 0 1px rgba(212, 179, 133, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      transform: translateY(-2px) scale(1.02);
    }
    
    .black-edition-bottle-container {
      position: relative;
      display: flex;
      justify-content: center;
      min-height: 500px;
      width: 100%;
      margin-left: auto;
    }
    
    .black-edition-bottle {
      max-height: 500px;
      object-fit: contain;
      filter: drop-shadow(0 0 30px rgba(198, 165, 124, 0.3));
      transform: translateY(0px);
      animation: floatBottle 8s ease-in-out infinite;
      z-index: 3;
      position: relative;
    }
    
    /* Floating Icons Styling */
    .feature-icon {
      position: absolute;
      width: 80px;
      height: 80px;
      background: rgba(0, 0, 0, 0.7);
      border: 2px solid #C6A57C;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 4;
      box-shadow: 0 0 25px rgba(198, 165, 124, 0.5), inset 0 0 15px rgba(198, 165, 124, 0.2);
      animation: pulse 3s ease-in-out infinite;
      backdrop-filter: blur(5px);
    }
    
    .feature-icon-img {
      width: 45px;
      height: 45px;
      filter: invert(80%) sepia(15%) saturate(1000%) hue-rotate(335deg) brightness(100%);
      transition: transform 0.3s ease;
    }
    
    .feature-icon:hover {
      transform: scale(1.1);
      box-shadow: 0 0 30px rgba(198, 165, 124, 0.7);
    }
    
    .feature-icon:hover .feature-icon-img {
      transform: scale(1.1);
    }
    
    .feature-tooltip {
      position: absolute;
      background: rgba(0, 0, 0, 0.9);
      border: 1px solid #C6A57C;
      padding: 1.2rem;
      border-radius: 6px;
      width: 280px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform: translateY(10px);
      z-index: 5;
      backdrop-filter: blur(15px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(198, 165, 124, 0.2);
    }
    
    .feature-icon:hover .feature-tooltip {
      opacity: 1;
      transform: translateY(0);
    }
    
    .feature-tooltip h4 {
      color: #C6A57C;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem;
      margin-bottom: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
    
    .feature-tooltip p {
      color: #e8e8e8;
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 400;
      letter-spacing: 0.02em;
    }
    
    /* Position each icon */
    .icon-color {
      top: 12%;
      left: 8%;
      animation-delay: 0s;
    }
    
    .icon-taste {
      top: 65%;
      left: 10%;
      animation-delay: 1s;
    }
    
    .icon-aroma {
      top: 20%;
      right: 10%;
      animation-delay: 1.5s;
    }
    
    .icon-aging {
      top: 75%;
      right: 8%;
      animation-delay: 0.5s;
    }
    
    /* Tooltip directions */
    .icon-color .feature-tooltip {
      left: 90px;
      top: 0;
    }
    
    .icon-taste .feature-tooltip {
      left: 90px;
      top: 0;
    }
    
    .icon-aroma .feature-tooltip {
      right: 90px;
      top: 0;
    }
    
    .icon-aging .feature-tooltip {
      right: 90px;
      top: 0;
    }
    
    /* Animations */
    @keyframes floatBottle {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(198, 165, 124, 0.3));
      }
      25% {
        filter: drop-shadow(0 0 40px rgba(198, 165, 124, 0.4));
      }
      50% {
        transform: translateY(-20px) rotate(1deg);
        filter: drop-shadow(0 0 50px rgba(198, 165, 124, 0.5));
      }
      75% {
        filter: drop-shadow(0 0 40px rgba(198, 165, 124, 0.4));
      }
    }
    
    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 0 25px rgba(198, 165, 124, 0.4), inset 0 0 15px rgba(198, 165, 124, 0.2);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 0 35px rgba(198, 165, 124, 0.7), inset 0 0 20px rgba(198, 165, 124, 0.3);
        transform: scale(1.08);
      }
    }
    
    /* Add a subtle particle effect background */
    .black-edition-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(198, 165, 124, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(198, 165, 124, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(198, 165, 124, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 70% 70%, rgba(198, 165, 124, 0.08) 0%, transparent 25%);
      z-index: 1;
      opacity: 0.8;
    }
    
    /* Add subtle animated light beams */
    .black-edition-showcase::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(ellipse at center, rgba(198, 165, 124, 0.03) 0%, transparent 70%);
      opacity: 0.5;
      animation: rotateGradient 20s linear infinite;
      z-index: 0;
    }
    
    @keyframes rotateGradient {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    /* Responsive design */
    @media (max-width: 1024px) {
      .black-edition-container {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .black-edition-content {
        text-align: center;
        order: 1;
      }
      
      .black-edition-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }
      
      .black-edition-description {
        margin-left: auto;
        margin-right: auto;
      }
      
      .black-edition-bottle-container {
        margin-bottom: 3rem;
        min-height: 500px;
      }
      
      .black-edition-bottle {
        max-height: 500px;
      }
    }
    
    @media (max-width: 768px) {
      .black-edition-title-container {
        margin-bottom: 2rem;
      }
      
      .black-edition-title {
        font-size: 2.8rem;
        white-space: normal;
        line-height: 1.1;
        letter-spacing: 0.05em;
      }
      
      .black-edition-subtitle {
        font-size: 1.8rem;
        margin-top: 0.5rem;
      }
      
      .black-edition-description {
        font-size: 1.25rem;
        padding: 0 1rem;
      }
      
      .black-edition-bottle {
        max-height: 450px;
      }
      
      .black-edition-bottle-container {
        min-height: 450px;
      }
      
      .feature-icon {
        width: 65px;
        height: 65px;
      }
      
      .feature-icon-img {
        width: 38px;
        height: 38px;
      }
      
      /* Adjust icon positions on tablet */
      .icon-color {
        top: 10%;
        left: 5%;
      }
      
      .icon-taste {
        top: 70%;
        left: 8%;
      }
      
      .icon-aroma {
        top: 15%;
        right: 5%;
      }
      
      .icon-aging {
        top: 75%;
        right: 5%;
      }
    }
    
    @media (max-width: 480px) {
      .black-edition-title {
        font-size: 2.4rem;
      }
      
      .black-edition-subtitle {
        font-size: 1.5rem;
      }
      
      .black-edition-description {
        font-size: 1.15rem;
      }
      
      .black-edition-bottle {
        max-height: 380px;
      }
      
      .feature-tooltip {
        width: 220px;
      }
      
      .feature-icon {
        width: 55px;
        height: 55px;
      }
      
      .feature-icon-img {
        width: 32px;
        height: 32px;
      }
      
      /* Adjust icon positions on mobile */
      .icon-color {
        top: 8%;
        left: 2%;
      }
      
      .icon-taste {
        top: 70%;
        left: 2%;
      }
      
      .icon-aroma {
        top: 8%;
        right: 2%;
      }
      
      .icon-aging {
        top: 70%;
        right: 2%;
      }
    }