/* PRODUCT PAGE SPECIFIC STYLES */

/* Product Hero Section */
.product-hero-section {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
  }
  
  .product-hero-content {
    z-index: 10;
  }
  
  .product-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 500;
    animation: badgeGlow 3s ease-in-out infinite;
  }
  
  .product-title {
    font-family: "Graduate", serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 25px;
    background: linear-gradient(
      45deg,
      var(--text-primary) 0%,
      var(--gold) 25%,
      var(--text-primary) 50%,
      var(--gold) 75%,
      var(--text-primary) 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .product-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-style: italic;
    animation: subtitleFloat 4s ease-in-out infinite;
  }
  
  /* Product Details Section */
  .product-details-section {
    padding: 80px 0;
    position: relative;
  }
  
  .product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  /* Product Images Slider */
  .product-images {
    position: relative;
  }
  
  .product-slider {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  }
  
  .slider-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
  }
  
  .product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .product-slide.active {
    opacity: 1;
  }
  
  .product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
  }
  
  .product-image:hover {
    transform: scale(1.05);
  }
  
  /* Slider Navigation */
  .slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .slider-btn {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slider-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
  }
  
  /* Slider Dots */
  .slider-dots {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    gap: 10px;
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dot.active,
  .slider-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }
  
  /* Product Information */
  .product-info {
    position: relative;
  }
  
  .info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
  }
  
  .info-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    animation: formShimmer 8s linear infinite;
    z-index: -1;
  }
  
  .info-section {
    margin-bottom: 40px;
  }
  
  .info-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .info-title i {
    color: var(--gold);
    font-size: 1.4rem;
  }
  
  .info-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 20px;
    animation: dividerGlow 3s ease-in-out infinite;
  }
  
  .info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
  }
  
  .info-text.ingredients {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-accent);
  }
  
  /* Specifications Grid */
  .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .purchase-card {
    grid-column: 1 / -1;
  }
  
  .spec-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .spec-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .spec-card:hover::before {
    left: 100%;
  }
  
  .spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
  }
  
  .spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.5rem;
    color: var(--dark-bg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  }
  
  .spec-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  
  .spec-value {
    font-family: "Graduate", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  
  .spec-values {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .spec-values .spec-value {
    font-size: 1.4rem;
  }
  
  /* Purchase Buttons */
  .purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  
  .purchase-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-bg);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .purchase-btn::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.5s ease;
  }
  
  .purchase-btn:hover::before {
    left: 100%;
  }
  
  .purchase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c547 0%, var(--gold) 100%);
  }
  
  .purchase-btn:active {
    transform: translateY(-1px);
  }
  
  .btn-text {
    position: relative;
    z-index: 2;
  }
  
  .purchase-btn i {
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
  }
  
  /* Cocktail Suggestions Section */
  .cocktail-section {
    padding: 100px 0;
    position: relative;
  }
  
  .cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .cocktail-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .cocktail-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    animation: formShimmer 10s linear infinite;
    z-index: -1;
  }
  
  .cocktail-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  }
  
  .cocktail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    color: var(--dark-bg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
  }
  
  .cocktail-card:hover .cocktail-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .cocktail-name {
    font-family: "Graduate", serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  
  .cocktail-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
  }
  
  /* RESPONSIVE DESIGN FOR PRODUCT PAGE */
  @media (max-width: 1200px) {
    .product-container {
      gap: 40px;
    }
  
    .specs-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 968px) {
    .product-container {
      grid-template-columns: 1fr;
      gap: 60px;
    }
  
    .product-hero-section {
      height: 60vh;
    }
  
    .slider-wrapper {
      height: 500px;
    }
  
    .cocktail-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .product-hero-section {
      height: 50vh;
      padding: 0 20px;
    }
  
    .product-badge {
      font-size: 0.7rem;
      padding: 5px 15px;
    }
  
    .product-subtitle {
      font-size: 1.2rem;
    }
  
    .product-details-section {
      padding: 60px 0;
    }
  
    .product-container {
      margin: 0 20px;
      gap: 40px;
    }
  
    .slider-wrapper {
      height: 400px;
    }
  
    .slider-btn {
      width: 40px;
      height: 40px;
      font-size: 14px;
    }
  
    .info-card {
      padding: 30px 25px;
    }
  
    .info-title {
      font-size: 1.5rem;
    }
  
    .info-text {
      font-size: 1rem;
    }
  
    .spec-card {
      padding: 20px;
    }
  
    .spec-icon {
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
    }
  
    .spec-value {
      font-size: 1.6rem;
    }
  
    .purchase-btn {
      padding: 12px 20px;
      font-size: 0.9rem;
    }
  
    .cocktail-section {
      padding: 60px 0;
    }
  
    .cocktail-card {
      padding: 30px 25px;
    }
  
    .cocktail-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .product-title {
      letter-spacing: 2px;
    }
  
    .slider-wrapper {
      height: 350px;
    }
  
    .product-slide {
      padding: 20px;
    }
  
    .slider-nav {
      padding: 0 10px;
    }
  
    .slider-btn {
      width: 35px;
      height: 35px;
      font-size: 12px;
    }
  
    .info-card {
      padding: 25px 20px;
    }
  
    .info-title {
      font-size: 1.3rem;
      flex-direction: column;
      gap: 8px;
    }
  
    .spec-card {
      padding: 15px;
    }
  
    .purchase-buttons {
      gap: 10px;
    }
  
    .purchase-btn {
      padding: 10px 15px;
      font-size: 0.8rem;
    }
  
    .cocktail-name {
      font-size: 1.3rem;
    }
  
    .cocktail-description {
      font-size: 0.9rem;
    }
  }
  