/* ====================================
   Flavor Vortex Hero Section
   ==================================== */
   .vortex-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #121225 0%, #1c1c3e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
  }
  
  .vortex-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .vortex-hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .vortex-hero__ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(124, 35, 255, 0.15) 0%, rgba(77, 22, 199, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
  }
  
  .vortex-hero__particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .vortex-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top : 86px ;
  }
  
  /* Text Section */
  .vortex-hero__text-container {
    max-width: 600px;
    color: #fff;
  }
  
  /* .vortex-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #c2a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 30px rgba(124, 35, 255, 0.3);
  }
   */
   .header__content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 3.5rem;
    animation: fadeInUp 1s ease-in-out forwards, float 3s ease-in-out infinite;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-right: 30px;
  }
  
  .h1__span-1 {
    font-size: 2.5rem;
    color: var(--primary-color);
  }
  
  .h1__span-2 {
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .vortex-hero__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
  }
  
  .vortex-hero__cta-container {
    display: flex;
    gap: 1rem;
  }
  
  .vortex-hero__cta-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7c23ff 0%, #5d17de 100%);
    color: #fff;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .vortex-hero__cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .vortex-hero__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(124, 35, 255, 0.5);
  }
  
  .vortex-hero__cta-button:hover::before {
    opacity: 1;
  }
  
  .vortex-hero__cta-icon {
    fill: currentColor;
    transition: transform 0.3s ease;
  }
  
  .vortex-hero__cta-button:hover .vortex-hero__cta-icon {
    transform: translateX(4px);
  }
  
  /* Vortex Product Showcase */
  .vortex-hero__showcase {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .vortex-hero__vortex-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
  }
  
  .vortex-hero__spiral-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .vortex-hero__product-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s ease;
  }
  
  /* Product Items */
  .vortex-hero__product {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 350px;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
  }
  
  .vortex-hero__product--natural {
    transform: translate(-50%, -50%) translateZ(0) rotateY(0deg);
    opacity: 1;
    visibility: visible;
  }
  
  .vortex-hero__product--strawberry {
    transform: translate(-50%, -50%) translateZ(-200px) rotateY(60deg);
    opacity: 0.5;
    visibility: visible;
  }
  
  .vortex-hero__product--watermelon {
    transform: translate(-50%, -50%) translateZ(-200px) rotateY(-60deg);
    opacity: 0.5;
    visibility: visible;
  }
  
  .vortex-hero__product-platform {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(5px);
    z-index: 1;
  }
  
  .vortex-hero__product-spotlight {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1));
    clip-path: polygon(0 0, 100% 0, 200% 100%, -100% 100%);
    opacity: 0.3;
    z-index: 1;
  }
  
  .vortex-hero__product-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transform: translateY(-20px);
    transition: transform 0.5s ease;
  }
  
  .vortex-hero__product:hover .vortex-hero__product-container {
    transform: translateY(-30px);
  }
  
  .vortex-hero__product-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
  }
  
  .vortex-hero__product:hover .vortex-hero__product-visual {
    transform: scale(1.05) rotateY(5deg);
  }
  
  .vortex-hero__image-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(20px);
    transform: translateZ(-10px);
    z-index: 1;
  }
  
  .vortex-hero__product-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    z-index: 2;
    transition: all 0.5s ease;
    transform: translateZ(30px);
  }
  
  .vortex-hero__product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-20px);
    width: 140%;
    height: 140%;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    opacity: 0.2;
    transition: opacity 0.5s ease;
  }
  
  .vortex-hero__product:hover .vortex-hero__product-glow {
    opacity: 0.4;
  }
  
  .vortex-hero__product--natural .vortex-hero__product-glow {
    background: radial-gradient(circle, rgba(0, 160, 255, 0.4) 0%, rgba(0, 160, 255, 0) 70%);
  }
  
  .vortex-hero__product--strawberry .vortex-hero__product-glow {
    background: radial-gradient(circle, rgba(255, 94, 148, 0.4) 0%, rgba(255, 94, 148, 0) 70%);
  }
  
  .vortex-hero__product--watermelon .vortex-hero__product-glow {
    background: radial-gradient(circle, rgba(64, 201, 142, 0.4) 0%, rgba(64, 201, 142, 0) 70%);
  }
  
  .vortex-hero__product-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #ff9900 0%, #ff7730 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
    z-index: 3;
  }
  
  .vortex-hero__product-info {
    position:static;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 3;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
    top: 172px;
  }
  
  .vortex-hero__product--natural .vortex-hero__product-info {
    transform: translateY(0);
    opacity: 1;
  }
  
  .vortex-hero__product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .vortex-hero__product-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
  }
  
  .vortex-hero__product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  
  .vortex-hero__rating-stars {
    color: #ffcb45;
    letter-spacing: 2px;
  }
  
  .vortex-hero__rating-count {
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* Navigation Controls */
  .vortex-hero__controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 10;
  }
  
  .vortex-hero__control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .vortex-hero__control:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .vortex-hero__control svg {
    fill: currentColor;
  }
  
  .vortex-hero__indicators {
    display: flex;
    gap: 0.5rem;
  }
  
  .vortex-hero__indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .vortex-hero__indicator[aria-selected="true"] {
    background: #7c23ff;
  }
  
  .vortex-hero__indicator:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .vortex-hero__indicator[aria-selected="true"]:hover {
    background: #9455ff;
  }
  
  /* Screen reader only class */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  /* Responsive styles */
  @media (min-width: 992px) {
    .vortex-hero__content {
      flex-direction: row;
      align-items: center;
      gap: 2rem;
    }
    
    .vortex-hero__text-container {
      flex: 1;
    }
    
    .vortex-hero__showcase {
      flex: 1.2;
    }
  }
  
  @media (max-width: 991px) {
    .vortex-hero__title {
      font-size: 2.8rem;
    }
    
    .vortex-hero__description {
      font-size: 1rem;
    }
    
    .vortex-hero__vortex-container {
      height: 450px;
    }
    
    .vortex-hero__product {
      width: 260px;
      height: 310px;
    }
  }
  
  @media (max-width: 767px) {
    .vortex-hero {
      padding: 3rem 0;
    }
    
    .vortex-hero__title {
      font-size: 2.3rem;
    }
    
    .vortex-hero__vortex-container {
      height: 400px;
    }
    
    .vortex-hero__product {
      width: 220px;
      height: 270px;
    }
    
    .vortex-hero__product-visual {
      width: 160px;
      height: 160px;
    }
  }
  
  @media (max-width: 576px) {
    .vortex-hero {
      min-height: 100vh;
      padding: 2rem 0;
    }
    
    .vortex-hero__title {
      font-size: 2rem;
    }
    
    .vortex-hero__vortex-container {
      height: 350px;
    }
    
    .vortex-hero__product {
      width: 200px;
      height: 250px;
    }
    
    .vortex-hero__product-visual {
      width: 140px;
      height: 140px;
    }
    
    .vortex-hero__product-name {
      font-size: 1.2rem;
    }
  }