@font-face {
      font-family: 'Tequlia';
      src: url('../../fonts/Tequlia.woff') format('woff');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

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

    body {
      font-family: 'Playfair Display', serif;
      line-height: 1.6;
      color: #1d1d1f;
      background: #fefefe;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: 100vw;
      position: relative;
    }
    
    html {
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }
    
    #header-placeholder {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    /* Product Title */
    .product-title {
      font-family: 'Tequlia', 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 3.8rem);
      font-weight: bold;
      color: #000;
      margin-top: 2rem;
      margin-bottom: 1.5rem;
      letter-spacing: 1px;
      line-height: 1.2;
    }

    /* Product Section */
    .product-section {
      padding: 3rem 2rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .product-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    /* Product Image */
    .product-image-container {
      position: relative;
      background: transparent;
      padding: 2rem;
      transition: transform 0.3s ease;
      height: 700px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 4rem;
    }

    .product-image {
      width: auto;
      height: 600px;
      max-width: 100%;
      object-fit: contain;
      object-position: center;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
      transition: all 0.3s ease;
      animation: floatBottle 5s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes floatBottle {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }

    /* Product Specs (Apple Style) */
    .product-specs {
      position: absolute;
      bottom: -10%;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 4rem;
      z-index: 4;
    }
    
    .spec-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 12px;
      padding: 1rem;
      min-width: 90px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      animation: floatSpec 4s ease-in-out infinite;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .spec-item:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .spec-value {
      font-size: 1.5rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.2rem;
      font-family: 'Playfair Display', serif;
    }
    
    .spec-label {
      text-transform: uppercase;
      font-size: 0.8rem;
      font-weight: 500;
      color: #777;
      letter-spacing: 1px;
      font-family: 'Playfair Display', serif;
    }
    
    .abv {
      animation-delay: 0.5s;
    }
    
    .volume {
      animation-delay: 1s;
    }
    
    @keyframes floatSpec {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    /* Tasting Experience Section - Redesigned */
    .tasting-experience {
      padding: 6rem 2rem;
      background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
      position: relative;
    }

    .tasting-experience::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #c6a57c, transparent);
    }

    .tasting-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .tasting-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .tasting-title {
      font-family: 'Tequlia', 'Playfair Display', serif;
      font-size: clamp(3.5rem, 6vw, 5rem);
      color: #1d1d1f;
      margin-bottom: 1rem;
      letter-spacing: 1px;
      font-weight: 400;
    }

    .tasting-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: #666;
      font-style: italic;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .tasting-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(320px, 1fr));
      gap: 2rem;
      margin: 3rem auto 0;
      justify-content: center;
      max-width: 1400px;
    }

    .tasting-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(198, 165, 124, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .tasting-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #c6a57c, #8b7355);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .tasting-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .tasting-card:hover::before {
      opacity: 1;
    }

    .tasting-card-visual {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .tasting-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .tasting-card:hover .tasting-icon {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .tasting-icon img {
      width: 28px;
      height: 28px;
      opacity: 0.8;
    }

    .tasting-step {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #c6a57c;
      background: rgba(198, 165, 124, 0.1);
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    .tasting-content h3.tasting-aspect {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: #1d1d1f;
      margin-bottom: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .tasting-description {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
      font-weight: 400;
      letter-spacing: 0.2px;
    }

    /* Product Info */
    .product-info {
      padding: 2rem 0;
      font-family: 'Playfair Display', serif;
    }

    .product-status-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .premium-tag {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: #555;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
    }
    
    .availability {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
      color: #333;
    }
    
    .status-dot {
      width: 12px;
      height: 12px;
      background-color: #4CAF50;
      border-radius: 50%;
      display: inline-block;
      animation: pulse 2s ease-in-out infinite;
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    @keyframes pulse {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
      }
      50% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
      }
      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
      }
    }

    /* Best Selling Banner */
    .best-selling-banner {
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: white;
      padding: 1rem 2rem;
      border-radius: 12px;
      margin-bottom: 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
    }

    .best-selling-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% {
        left: -100%;
      }
      100% {
        left: 100%;
      }
    }

    .banner-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      position: relative;
      z-index: 2;
    }

    .usa-flag {
      width: 48px;
      height: 32px;
      background: linear-gradient(to bottom, #b22234 0%, #b22234 7.7%, #ffffff 7.7%, #ffffff 15.4%, #b22234 15.4%, #b22234 23.1%, #ffffff 23.1%, #ffffff 30.8%, #b22234 30.8%, #b22234 38.5%, #ffffff 38.5%, #ffffff 46.2%, #b22234 46.2%, #b22234 53.9%, #ffffff 53.9%, #ffffff 61.6%, #b22234 61.6%, #b22234 69.3%, #ffffff 69.3%, #ffffff 77%, #b22234 77%, #b22234 84.7%, #ffffff 84.7%, #ffffff 92.4%, #b22234 92.4%, #b22234 100%);
      border-radius: 4px;
      position: relative;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
      animation: wave 2s ease-in-out infinite;
    }

    .usa-flag::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 40%;
      height: 53.85%;
      background: #3c3b6e;
      border-radius: 2px 0 0 0;
    }

    @keyframes wave {
      0%, 100% {
        transform: rotate(0deg);
      }
      25% {
        transform: rotate(2deg);
      }
      75% {
        transform: rotate(-2deg);
      }
    }

    .banner-text {
      font-size: 1.1rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .banner-subtitle {
      font-size: 0.9rem;
      opacity: 0.9;
      margin-top: 0.3rem;
      font-weight: 500;
    }

    /* Heritage Section */
    .heritage-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 4rem 2rem;
      margin: 2rem 0;
      position: relative;
      overflow: hidden;
    }

    .heritage-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
      pointer-events: none;
    }

    .heritage-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .heritage-content {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 3rem;
      align-items: center;
    }

    .heritage-badge {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      min-width: 320px;
    }

    .heritage-badge:hover {
      transform: translateY(-5px);
      box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }



    .best-seller-flag {
      width: 70px;
      height: 52px;
      background: linear-gradient(to bottom, 
        #006847 0%, #006847 33.33%, 
        #ffffff 33.33%, #ffffff 66.66%, 
        #ce1126 66.66%, #ce1126 100%);
      border-radius: 12px;
      position: relative;
      box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.4);
      animation: gentleWave 4s ease-in-out infinite;
      overflow: hidden;
    }

    .heritage-flag {
      width: 70px;
      height: 52px;
      background: linear-gradient(to bottom, 
        #006847 0%, #006847 33.33%, 
        #ffffff 33.33%, #ffffff 66.66%, 
        #ce1126 66.66%, #ce1126 100%);
      border-radius: 12px;
      position: relative;
      box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.4);
      animation: gentleWave 4s ease-in-out infinite;
      overflow: hidden;
    }

    .heritage-flag::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.1) 50%, transparent 51%);
      animation: flagShimmer 3s ease-in-out infinite;
    }

    @keyframes flagShimmer {
      0%, 100% { opacity: 0; }
      50% { opacity: 1; }
    }

    .flag-emblem {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.4rem;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
      animation: emblemFloat 3s ease-in-out infinite;
    }

    @keyframes emblemFloat {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      50% { transform: translate(-50%, -50%) scale(1.05); }
    }

    @keyframes gentleWave {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(1deg); }
      75% { transform: rotate(-1deg); }
    }

    .heritage-text {
      flex: 1;
    }

    .heritage-title {
      font-family: 'Tequlia', 'Playfair Display', serif;
      font-size: 2rem;
      color: #1a1a1a;
      margin: 0 0 0.5rem 0;
      font-weight: 700;
      letter-spacing: 0.5px;
      background: linear-gradient(135deg, #1a1a1a, #4a5568);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .heritage-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: #6b7280;
      margin: 0;
      font-style: italic;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .heritage-description {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
      padding: 1.5rem 2rem;
      border-radius: 16px;
      box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      min-height: fit-content;
      display: flex;
      align-items: center;
    }

    .heritage-description p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #374151;
      margin: 0;
      font-weight: 500;
    }

    .heritage-description strong {
      color: #1a1a1a;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .heritage-description em {
      color: #6b7280;
      font-style: italic;
      font-weight: 600;
    }

    .heritage-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    .stat-item {
      text-align: center;
      padding: 1.5rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
      border-radius: 16px;
      box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.4);
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-3px);
      box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .stat-number {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #C6A57C;
      margin-bottom: 0.5rem;
      text-shadow: 0 2px 4px rgba(198, 165, 124, 0.3);
    }

    .stat-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: bold;
      color: #1d1d1f;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .product-price {
      font-size: 2.8rem;
      font-weight: bold;
      color: #333;
      margin: 1.5rem 0 2rem;
      font-family: 'Playfair Display', serif;
      letter-spacing: 0.5px;
    }

    .quantity-section {
      margin-bottom: 2rem;
      text-align: center;
    }

    .control-label {
      font-size: 1rem;
      font-weight: 500;
      color: #333;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
      letter-spacing: 1px;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .quantity-btn {
      width: 45px;
      height: 45px;
      border: 1px solid #ddd;
      background: white;
      color: #555;
      border-radius: 8px;
      font-size: 1.2rem;
      font-weight: normal;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .quantity-btn:hover {
      background: #f5f5f5;
      color: #333;
    }

    .quantity-input {
      width: 80px;
      height: 45px;
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: normal;
      background: white;
      color: #333;
      font-family: 'Playfair Display', serif;
    }

    .quantity-input:focus {
      outline: none;
      border-color: #888;
    }

    .total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-top: 0.5rem;
      border-top: 1px solid rgba(0,0,0,0.05);
    }

    .total-label {
      font-size: 1.1rem;
      color: #555;
      font-weight: 500;
    }

    .total-value {
      font-size: 1.3rem;
      font-weight: bold;
      color: #333;
    }
    
    /* Add to Cart Button */
    .add-to-cart-btn {
      width: 100%;
      padding: 1.2rem 2rem;
      background: #333;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: 600;
      font-family: 'Playfair Display', serif;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 2rem;
    }

    .add-to-cart-btn:hover {
      background: #222;
      transform: translateY(-2px);
    }

    .cart-icon {
      font-size: 1.1rem;
    }
    
    /* Trust Features - Ultra Minimal */
    .trust-features {
      display: flex;
      justify-content: space-between;
      margin-top: 1.5rem;
      gap: 0.5rem;
    }
    
    .trust-feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.4rem;
      flex: 1;
    }
    
    .trust-feature i {
      font-size: 1.1rem;
      color: #888;
    }
    
    .trust-feature span {
      font-size: 0.75rem;
      color: #666;
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
    }
    
    .payment-logos {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-left: auto;
      padding: 1rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .payment-logos i {
      font-size: 2.2rem;
      transition: all 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    
    /* Individual payment method colors */
    .payment-logos .fa-cc-visa {
      color: #1A1F71;
    }
    
    .payment-logos .fa-cc-mastercard {
      color: #EB001B;
    }
    
    .payment-logos .fa-cc-amex {
      color: #006FCF;
    }
    
    .payment-logos .fa-paypal {
      color: #003087;
    }
    
    .payment-logos i:hover {
      transform: scale(1.15) translateY(-2px);
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }
    
    /* Specific hover effects for each payment method */
    .payment-logos .fa-cc-visa:hover {
      color: #1A1F71;
      text-shadow: 0 0 8px rgba(26, 31, 113, 0.3);
    }
    
    .payment-logos .fa-cc-mastercard:hover {
      color: #EB001B;
      text-shadow: 0 0 8px rgba(235, 0, 27, 0.3);
    }
    
    .payment-logos .fa-cc-amex:hover {
      color: #006FCF;
      text-shadow: 0 0 8px rgba(0, 111, 207, 0.3);
    }
    
    .payment-logos .fa-paypal:hover {
      color: #009CDE;
      text-shadow: 0 0 8px rgba(0, 156, 222, 0.3);
    }
    
    /* Success Animation */
    .success-animation {
      background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%) !important;
      box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.6), 0 8px 20px rgba(16, 185, 129, 0.3) !important;
    }
    
    /* Product Features Section */
    .product-features-section {
      background: #f8f8f8;
      padding: 60px 0;
      text-align: center;
    }
    
    .features-section-title {
      font-family: 'Tequlia', serif;
      font-size: 2.5rem;
      color: #1a1a1a;
      margin-bottom: 50px;
      text-align: center;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #4a5568, #2d3748, #4a5568);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .feature-card:hover::before {
      opacity: 1;
    }
    
    .feature-card-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, #4a5568, #2d3748);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
      transition: all 0.3s ease;
    }
    
    .feature-card:hover .feature-card-icon {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(74, 85, 104, 0.4);
    }
    
    .feature-card-icon img {
      width: 40px;
      height: 40px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }
    
    .feature-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: #1a1a1a;
      margin: 0 0 15px 0;
      font-weight: 700;
    }
    
    .feature-card-description {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: #666;
      line-height: 1.6;
      margin: 0;
    }
    
    @media (max-width: 768px) {
      .purchase-features {
        grid-template-columns: 1fr;
      }
    }

    /* Features List */
    .product-features {
      margin-bottom: 3rem;
    }

    .features-list {
      list-style: none;
      display: grid;
      gap: 0.8rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.8rem;
      background: rgba(198, 165, 124, 0.05);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .feature-item:hover {
      background: rgba(198, 165, 124, 0.1);
      transform: translateX(5px);
    }

    .feature-icon {
      color: #C6A57C;
      font-size: 1.2rem;
      min-width: 20px;
    }

    /* Purchase Controls with Availability */
    .purchase-controls {
      background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
    }

    .purchase-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .purchase-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: #1d1d1f;
      font-weight: 600;
      margin: 0;
    }

    .availability-badge {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.1) 100%);
      padding: 0.8rem 1.5rem;
      border-radius: 30px;
      border: 2px solid rgba(76, 175, 80, 0.3);
      box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
      animation: stockPulse 2s ease-in-out infinite;
    }

    @keyframes stockPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
      }
      50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
      }
    }

    .availability-badge .status-dot {
      width: 10px;
      height: 10px;
      margin: 0;
      background: linear-gradient(135deg, #4CAF50, #66BB6A);
      box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.8);
      animation: stockDotPulse 1.5s ease-in-out infinite;
    }

    @keyframes stockDotPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.8);
      }
      50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
      }
    }

    .availability-text {
      font-size: 1rem;
      color: #2e7d32;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .quantity-section {
      margin-bottom: 2rem;
    }

    .quantity-label {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1d1d1f;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .quantity-btn {
      width: 50px;
      height: 50px;
      border: 2px solid #C6A57C;
      background: white;
      color: #C6A57C;
      border-radius: 12px;
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .quantity-btn:hover {
      background: #C6A57C;
      color: white;
      transform: scale(1.05);
    }

    .quantity-btn:active {
      transform: scale(0.95);
    }

    .quantity-input {
      width: 80px;
      height: 50px;
      text-align: center;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 1.6rem;
      font-weight: bold;
      background: white;
      color: #1d1d1f;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .quantity-input:focus {
      outline: none;
      border-color: #C6A57C;
    }
    
    /* Fix for number input appearance and centering */
    input[type="number"].quantity-input {
      -moz-appearance: textfield;
      appearance: textfield;
      line-height: 50px;
    }
    
    input[type="number"].quantity-input::-webkit-inner-spin-button, 
    input[type="number"].quantity-input::-webkit-outer-spin-button { 
      -webkit-appearance: none;
      margin: 0;
    }

    .total-price {
      font-size: 1.3rem;
      font-weight: bold;
      color: #C6A57C;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    /* Add to Cart Button - Shop Style */
    .add-to-cart-btn {
      width: 100%;
      padding: 1.2rem 2rem;
      background: linear-gradient(135deg, #C6A57C 0%, #B8956A 50%, #A6845B 100%);
      color: #1a1a1a;
      border: none;
      border-radius: 0;
      font-size: 1.1rem;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 
        0 0 0 1px rgba(198, 165, 124, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      background-clip: padding-box;
    }

    .add-to-cart-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.6s ease;
      z-index: 1;
    }

    .add-to-cart-btn:hover::before {
      left: 100%;
    }

    .add-to-cart-btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 
        0 0 0 1px rgba(198, 165, 124, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      background: linear-gradient(135deg, #D4B385 0%, #C6A57C 50%, #B8956A 100%);
      color: #0a0a0a;
      letter-spacing: 1.2px;
    }

    .add-to-cart-btn:active {
      transform: translateY(-1px);
    }

    .cart-icon {
      width: 11px;
      height: 11px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      position: relative;
      z-index: 2;
    }

    .add-to-cart-btn:hover .cart-icon {
      transform: scale(1.1);
    }

    /* Success Animation */
    .success-animation {
      background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%) !important;
      transform: scale(1.05) !important;
      box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.6), 0 8px 20px rgba(16, 185, 129, 0.3) !important;
    }

    .success-animation .cart-icon {
      transform: rotate(360deg) !important;
    }

    /* Responsive Design - Enhanced for Mobile */
    @media (max-width: 1024px) and (min-width: 769px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      * {
        max-width: 100%;
        box-sizing: border-box;
      }
      
      body {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100vw;
        position: relative;
      }
      
      .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }
      
      .product-title {
        font-size: 2.2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
      }
      
      .product-section {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }
      
      .product-image-container {
        padding: 1.5rem;
        height: 450px;
        width: 100%;
        max-width: 100%;
      }
      
      .product-image {
        height: 350px;
        max-width: 100%;
      }
      
      .product-name {
        font-size: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
      }
      
      .purchase-controls {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }
      
      .quantity-controls {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
      }
      
      .payment-logos {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0.8rem;
        gap: 1rem;
      }
      
      .payment-logos i {
        font-size: 1.8rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .feature-card {
        padding: 2rem;
        margin: 0 1rem;
      }

      .features-section-title {
        font-size: 2.8rem;
      }

      .product-features-section {
        padding: 3rem 1rem;
      }

      .best-selling-banner {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .banner-content {
        flex-direction: column;
        gap: 0.8rem;
      }

      .banner-text {
        font-size: 1rem;
      }

      .heritage-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .heritage-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
      }

      .heritage-flag {
        width: 60px;
        height: 45px;
        align-self: center;
      }

      .heritage-title {
        font-size: 1.5rem;
      }

      .heritage-description {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
      }

      .heritage-floating {
        display: none;
      }

      .heritage-section {
        padding: 2rem 1rem;
      }

      .heritage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .heritage-badge {
        justify-content: center;
        min-width: auto;
        padding: 1.5rem;
      }

      .heritage-flag {
        width: 60px;
        height: 45px;
      }

      .heritage-title {
        font-size: 1.5rem;
      }

      .heritage-description {
        padding: 2rem;
      }

      .heritage-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .purchase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .availability-badge {
        align-self: flex-end;
        padding: 0.6rem 1.2rem;
      }

      .availability-text {
        font-size: 0.9rem;
      }
    }

    /* Smooth Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .product-info > * {
      animation: fadeInUp 0.6s ease-out;
    }

    .product-info > *:nth-child(1) { animation-delay: 0.1s; }
    .product-info > *:nth-child(2) { animation-delay: 0.2s; }
    .product-info > *:nth-child(3) { animation-delay: 0.3s; }
    .product-info > *:nth-child(4) { animation-delay: 0.4s; }
    .product-info > *:nth-child(5) { animation-delay: 0.5s; }
    .product-info > *:nth-child(6) { animation-delay: 0.6s; }

     /* Bestseller Badge */
    .bestseller-badge {
      position: absolute;
      top: 60px;
      left: 20px;
      background: rgba(255, 255, 255, 0.95);
      color: #333;
      padding: 10px 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      border: 1px solid rgba(0,0,0,0.1);
      z-index: 5;
      transform: rotate(-5deg);
      backdrop-filter: blur(10px);
    }
    
    .badge-flag {
      display: flex;
      align-items: center;
    }
    
    .best-seller-flag {
      width: 30px;
      height: 22px;
      background: linear-gradient(to bottom, 
        #B22234 0%, #B22234 7.69%, 
        #ffffff 7.69%, #ffffff 15.38%, 
        #B22234 15.38%, #B22234 23.07%,
        #ffffff 23.07%, #ffffff 30.76%,
        #B22234 30.76%, #B22234 38.45%,
        #ffffff 38.45%, #ffffff 46.14%,
        #B22234 46.14%, #B22234 53.83%,
        #ffffff 53.83%, #ffffff 61.52%,
        #B22234 61.52%, #B22234 69.21%,
        #ffffff 69.21%, #ffffff 76.90%,
        #B22234 76.90%, #B22234 84.59%,
        #ffffff 84.59%, #ffffff 92.28%,
        #B22234 92.28%, #B22234 100%);
      border-radius: 4px;
      position: relative;
      box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      border: 1px solid rgba(0, 0, 0, 0.2);
      overflow: hidden;
      flex-shrink: 0;
    }
    
    .best-seller-flag::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 40%;
      height: 46.14%;
      background: #3C3B6E;
      z-index: 1;
    }
    
    @keyframes gentleWave {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-2px) rotate(1deg); }
    }
    
    .flag-icon {
      width: 20px;
      height: auto;
    }
    
    .badge-text {
      text-shadow: 0 1px 2px rgba(0,0,0,0.1);
      color: #333;
    }
    
    /* Mobile responsive design for bestseller badge */
    @media (max-width: 768px) {
      .bestseller-badge {
        top: 80px; /* Push down below header on mobile */
        left: 10px;
        padding: 6px 10px;
        font-size: 0.8rem;
        transform: rotate(-3deg);
      }
      
      .flag-icon {
        width: 18px;
      }
    }
    
    /* Make sure image container has position relative for badge positioning */
    .product-image-container {
      position: relative;
    }
    
    /* Size Selector Styling */
    .size-selector-inline {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 1rem;
      font-family: 'Montserrat', sans-serif;
      width: 100%;
    }
    
    .size-dropdown {
      padding: 0.8rem 1.2rem;
      border: 2px solid #e5e5e5;
      border-radius: 8px;
      background: white;
      font-size: 0.9rem;
      font-weight: 500;
      color: #333;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 250px;
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      margin: 0 auto;
      height: 45px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 1rem;
      padding-right: 3rem;
    }
    
    .size-dropdown:hover {
      border-color: #C6A57C;
      background-color: #fafafa;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .size-dropdown:focus {
      outline: none;
      border-color: #C6A57C;
      box-shadow: 0 0 0 3px rgba(198, 165, 124, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    @media (max-width: 768px) {
      .size-dropdown {
        appearance: auto;
        -webkit-appearance: menulist;
        -moz-appearance: menulist;
        background-image: none;
        padding-right: 1.2rem;
        border: 2px solid #ddd;
        border-radius: 12px;
        min-width: 220px;
        font-size: 1rem;
        height: 48px;
        background-color: #f8f9fa;
        color: #333;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }
      
      .size-dropdown:hover {
        border-color: #C6A57C;
        background-color: white;
      }
      
      .size-dropdown:focus {
        border-color: #C6A57C;
        box-shadow: 0 0 0 3px rgba(198, 165, 124, 0.3);
        background-color: white;
      }
      
      .size-selector-inline {
        justify-content: center;
        margin-bottom: 1rem;
      }
      
      .size-dropdown option {
        padding: 0.8rem;
        font-size: 1rem;
        background-color: white;
        color: #333;
      }

      /* Tasting Experience Mobile Styles */
      .tasting-experience {
        padding: 4rem 1.5rem;
      }

      .tasting-header {
        margin-bottom: 3rem;
      }

      .tasting-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
      }

      .tasting-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
      }

      .tasting-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .tasting-card {
        padding: 1.5rem;
      }

      .tasting-card-visual {
        margin-bottom: 1.2rem;
      }

      .tasting-icon {
        width: 45px;
        height: 45px;
      }

      .tasting-icon img {
        width: 24px;
        height: 24px;
      }

      .tasting-step {
        font-size: 0.8rem;
        padding: 0.25rem 0.7rem;
      }

      .tasting-content h3.tasting-aspect {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
      }

      .tasting-description {
        font-size: 0.9rem;
        line-height: 1.5;
      }
    }