 /* Premium Line Accent */
    .premium-line {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      z-index: 1000;
      opacity: 0.7;
    }
    
    /* Core Styles for Find Us Page */
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--black);
      line-height: 1.6;
      overflow-x: hidden;
      opacity: 0;
      animation: fadeIn 0.8s forwards 0.2s;
      margin: 0;
      padding: 0;
      letter-spacing: 0.02em;
      position: relative;
    }
    
    /* Immediately show when returning from other tabs */
    .visible-on-return {
      opacity: 1 !important;
      animation: none !important;
    }
    
    @keyframes fadeIn {
      to { opacity: 1; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    @keyframes floatRotate {
      0% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
      100% { transform: translateY(0) rotate(0deg); }
    }
    
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
      background: rgba(0,0,0,0.05);
    }
      ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 2px;
    }
        /* Modernized Main Background */
    .page-wrapper {
      background: linear-gradient(135deg, rgba(251, 248, 243, 0.97), rgba(255, 255, 255, 0.97));
      position: relative;
      overflow: visible;
      padding: 80px 0 30px; /* Added top padding of 80px to create space below header */
    }
      /* Floating decorative elements - reduced effects */
    .floating-element {
      position: absolute;
      pointer-events: none;
      z-index: 1;
      opacity: 0.03;
      filter: blur(1px);
    }
    
    .floating-element.agave-tl {
      top: 10%;
      left: 5%;
      width: 100px;
      height: 100px;
      background: url('assets/images/agave.svg') no-repeat center/contain;
    }
    
    .floating-element.agave-br {
      bottom: 10%;
      right: 5%;
      width: 80px;
      height: 80px;
      background: url('assets/images/agave.svg') no-repeat center/contain;
      transform: rotate(45deg);
    }
    
    /* Section Header */
    .section-header {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }
    
    .section-title {
      font-family: 'CASTELAR', serif;
      font-size: clamp(2rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
      color: var(--black);
      text-align: center;
      position: relative;
      display: inline-block;
      padding: 0 15px;
    }
    
    .section-title::before,
    .section-title::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }
    
    .section-title::before {
      left: -40px;
    }
    
    .section-title::after {
      right: -40px;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
      font-weight: 300;
    }
    
    /* Modern Layout Container with Glass Effect */
    .find-us-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      position: relative;
      z-index: 2;
    }
      /* Two-Column Layout */
    .two-column-container {
      display: grid;
      grid-template-columns: 350px 1fr;
      gap: 40px;
      margin-bottom: 60px;
      position: relative;
    }
    
    /* Tequila Selection List - Left Column */
    .tequila-list {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 240, 0.9));
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      padding: 30px;
      height: fit-content;
      border: 1px solid rgba(198,165,124,0.2);
      position: sticky;
      top: 100px;
    }
    
    .tequila-list-title {
      font-family: 'CASTELAR', serif;
      font-size: 1.4rem;
      text-align: center;
      margin-bottom: 30px;
      color: var(--black);
      position: relative;
      padding-bottom: 15px;
    }
    
    .tequila-list-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: var(--gold);
    }
    
    .tequila-option {
      display: flex;
      align-items: center;
      padding: 15px;
      border-radius: 12px;
      margin-bottom: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid transparent;
    }
    
    .bottle-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
      z-index: -1;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .bottle-card:hover {
      transform: translateY(-15px) scale(1.03);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 
        0 0 30px rgba(198,165,124,0.3),
        inset 0 0 0 1.5px rgba(198,165,124,0.5);
      border-color: rgba(198,165,124,0.3);
      background: rgba(255, 255, 255, 0.8);
    }
    
    .bottle-card:hover::before {
      opacity: 1;
    }
    
    .bottle-image {
      height: 280px;
      width: auto;
      margin-bottom: 20px;
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    }
    
    .bottle-card:hover .bottle-image {
      transform: translateY(-10px) scale(1.05);
      filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
    }
    
    .bottle-name {
      font-family: 'Cormorant', serif;
      font-weight: 700;
      font-size: 1.8rem;
      margin-bottom: 0.4rem;
      color: #7a5c35;
      text-shadow: 0 1px 2px rgba(255,255,255,0.3);
      transition: all 0.4s ease;
    }
    
    .bottle-card:hover .bottle-name {
      color: var(--black);
      text-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 0 12px rgba(198, 165, 124, 0.7);
    }
    
    .bottle-type {
      font-size: 0.95rem;
      color: #b08d57;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      margin-bottom: 1.5rem;
      transition: all 0.4s ease;
    }
    
    .bottle-card:hover .bottle-type {
      color: var(--black);
      text-shadow: 0 0 8px rgba(198, 165, 124, 0.5);
    }
    
    .bottle-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(135deg, var(--gold) 0%, #d4b78e 50%, var(--gold) 100%);
      color: white;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.35rem 0.7rem;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transform: scale(0);
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                  opacity 0.5s ease;
      box-shadow: 0 2px 10px rgba(198,165,124,0.5);
    }
    
    .bottle-card:hover .bottle-badge {
      transform: scale(1);
      opacity: 1;
    }
    
    /* Glass highlight effect with enhanced realism */
    .glass-highlight {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      z-index: 1;
      pointer-events: none;
      border-radius: 20px;
      mix-blend-mode: overlay;
      transition: opacity 0.3s ease;
      overflow: hidden;
    }
    
    .bottle-card:hover .glass-highlight {
      opacity: 0.8;
    }
    
    /* Retailers Section with Premium Design */
    .retailers-section {
      margin-top: 60px;
    }
    
    .retailers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    
    .retailer-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
      position: relative;
      border: 1px solid rgba(0,0,0,0.05);
    }
    
    .retailer-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
      border-color: rgba(198,165,124,0.3);
    }
    
    .retailer-image-container {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(249, 249, 249, 0.8);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .retailer-image {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
      filter: grayscale(20%);
      opacity: 0.9;
      transition: all 0.3s ease;
    }
    
    .retailer-card:hover .retailer-image {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.05);
    }
    
    .retailer-content {
      padding: 25px;
      text-align: center;
    }
    
    .retailer-name {
      font-family: 'CASTELAR', serif;
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--black);
    }
    
    .retailer-description {
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    
    .retailer-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 25px;
      background: linear-gradient(135deg, var(--gold) 0%, #d4b78e 50%, var(--gold) 100%);
      color: var(--black);
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(198,165,124,0.3);
      position: relative;
      overflow: hidden;
      border: none;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }
    
    .retailer-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(198,165,124,0.4);
    }
    
    .retailer-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.7s ease;
    }
    
    .retailer-btn:hover::after {
      left: 100%;
    }
    
    .retailer-icon {
      margin-right: 8px;    }
    
    /* Section Divider with Agave */
    .section-divider {
      padding: 30px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 20px 0;
    }
    
    .agave-divider {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .agave-divider img {
      width: 40px;
      height: 40px;
      opacity: 0.5;
      transition: all 0.5s ease;
      filter: brightness(0);
    }
    
    .agave-divider img:hover {
      transform: rotate(45deg) scale(1.2);
      opacity: 0.8;
    }
      /* Three-Column Premium Layout */
    .premium-layout {
      display: grid;
      grid-template-columns: 1fr 3fr 1fr;
      gap: 30px;
      padding: 20px;
      max-width: 1600px;
      margin: 0 auto;
    }
      /* Column Titles */
    .column-title {
      font-family: 'CASTELAR', serif;
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: var(--black);
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }    .tequila-selection-column .column-title {
      font-size: 1.5rem; /* Reduced from 2rem */
      margin-bottom: 20px; /* Reduced from 30px */
      letter-spacing: 0.05em;
    }
      .buy-options-column .column-title {
      font-size: 1.5rem;
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }
    
    .column-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: var(--gold);
      box-shadow: 0 0 5px rgba(198, 165, 124, 0.5);
    }    /* Left Column: Tequila Selection */
    .tequila-selection-column {
      display: flex;
      flex-direction: column;
      gap: 15px;
      background: rgba(251, 248, 243, 0.8);
      border-radius: 15px;
      padding: 25px 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(198, 165, 124, 0.3);
      min-width: 280px;
      align-items: stretch;
    }    .tequila-select-box {
      display: flex !important;
      align-items: center;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
      border-radius: 12px;
      padding: 15px;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(198, 165, 124, 0.2);
      overflow: hidden;
      width: 100%;
      min-width: 0;
      min-height: 70px;
    }
    
    .tequila-select-box.active {
      border-color: var(--gold);
      box-shadow: 0 3px 12px rgba(198, 165, 124, 0.2);
      background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(249, 246, 240, 0.95));
      transform: translateX(3px);
    }
    
    .tequila-select-box:hover {
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
      border-color: rgba(198, 165, 124, 0.4);
      transform: translateX(2px);
    }
      .select-box-content {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
    }    .select-box-image {
      width: 40px;
      height: auto;
      flex-shrink: 0;
      transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .tequila-select-box:hover .select-box-image {
      transform: scale(1.05);
    }
    
    .tequila-select-box.active .select-box-image {
      transform: scale(1.08);
    }.select-box-info h4 {
      font-family: 'Cormorant', serif;
      font-weight: 700;
      font-size: 1.2rem;
      margin: 0;
      color: var(--black);
      line-height: 1.2;
    }
    
    .select-box-info p {
      font-size: 0.9rem;
      color: #7a5c35;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .vertical-agave-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
      gap: 10px;
    }
    
    .vertical-agave-divider img {
      width: 30px;
      opacity: 0.3;
      filter: grayscale(30%);
    }
    
    /* Middle Column: Featured Tequila */
    .featured-tequila-column {
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }    .featured-tequila-frame {
      position: relative;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(198, 165, 124, 0.3);
      border-radius: 20px;
      padding: 25px; /* Reduced from 40px */
      width: 100%;
      height: 100%;
      min-height: 400px; /* Reduced from 450px */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }
    
    .frame-corner {
      position: absolute;
      width: 40px;
      height: 40px;
      border-color: var(--gold);
      z-index: 1;
    }
    
    .top-left {
      top: 10px;
      left: 10px;
      border-top: 2px solid;
      border-left: 2px solid;
    }
    
    .top-right {
      top: 10px;
      right: 10px;
      border-top: 2px solid;
      border-right: 2px solid;
    }
    
    .bottom-left {
      bottom: 10px;
      left: 10px;
      border-bottom: 2px solid;
      border-left: 2px solid;
    }
    
    .bottom-right {
      bottom: 10px;
      right: 10px;
      border-bottom: 2px solid;
      border-right: 2px solid;
    }
      .featured-tequila {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      z-index: 2;
      transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }.featured-image-container {
      position: relative;
      margin-bottom: 20px; /* Reduced from 30px */
      height: 270px; /* Reduced from 320px */
      display: flex;
      align-items: center;
      justify-content: center;
    }    .featured-bottle-image {
      height: 250px; /* Reduced from 300px for better fit, eliminating scroll */
      width: auto;
      filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      object-fit: contain;
      opacity: 1;
    }
    
    .featured-bottle-image.changing {
      opacity: 0;
      transform: scale(0.95);
    }
      .featured-glow {
      position: absolute;
      width: 80%;
      height: 25px;
      bottom: -15px;
      left: 10%;
      background: radial-gradient(ellipse at center, rgba(198, 165, 124, 0.4) 0%, rgba(198, 165, 124, 0) 70%);
      border-radius: 50%;
      filter: blur(5px);
      z-index: -1;
    }
    
    .featured-details {
      width: 100%;
    }    .featured-name {
      font-family: 'CASTELAR', serif;
      font-size: 3rem; /* Reduced from 3.5rem */
      color: var(--black);
      margin-bottom: 5px; /* Reduced from 10px */
      letter-spacing: 0.1em;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 1;
    }
    
    .featured-name.changing {
      opacity: 0;
      transform: translateY(10px);
    }
      /* Right Column: Buy Options */
    .buy-options-column {
      background: rgba(251, 248, 243, 0.8);
      border-radius: 15px;
      padding: 25px 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(198, 165, 124, 0.3);
      align-self: start;
      display: flex !important;
      flex-direction: column;
      visibility: visible !important;
      opacity: 1 !important;
    }
      .buy-option-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .buy-option-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(198, 165, 124, 0.1);
      transition: all 0.2s ease;
      display: flex !important;
      flex-direction: column;
      visibility: visible !important;
      opacity: 1 !important;
    }
      .buy-option-header {
      padding: 15px;
      background: linear-gradient(135deg, rgba(249, 246, 240, 0.9), rgba(255, 255, 255, 0.9));
      border-bottom: 1px solid rgba(198, 165, 124, 0.1);
      display: flex;
      align-items: center;
      gap: 12px;
    }
      .retailer-logo {
      height: 32px;
      width: auto;
      object-fit: contain;
      filter: grayscale(10%);
      transition: all 0.2s ease;
    }
    
    .buy-option-card:hover .retailer-logo {
      filter: grayscale(0%);
      transform: scale(1.02);
    }
      .buy-option-header h4 {
      font-family: 'CASTELAR', serif;
      font-size: 1.1rem;
      margin: 0;
      color: var(--black);
      font-weight: 600;
    }
    
    .buy-option-content {
      padding: 15px;
      text-align: center;
    }
      /* Removed buy option description */
      .buy-option-price {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 15px 0 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(198, 165, 124, 0.2);
    }
    
    .price-label {
      font-size: 0.9rem;
      color: #777;
    }
    
    .price-value {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--black);
    }
    
    .venue-finder {
      display: flex;
      margin-bottom: 15px;
    }
    
    .venue-input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-right: none;
      border-radius: 8px 0 0 8px;
      font-size: 0.9rem;
      outline: none;
    }
    
    .venue-search-btn {
      background: var(--gold);
      color: white;
      border: none;
      padding: 0 15px;
      border-radius: 0 8px 8px 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .venue-search-btn:hover {
      background: #c6a57c;
    }
    
    .premium-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--gold) 0%, #d4b78e 50%, var(--gold) 100%);
      color: var(--black);
      font-weight: 600;
      text-decoration: none;
      padding: 12px 25px;
      border-radius: 8px;
      letter-spacing: 0.05em;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(198, 165, 124, 0.2);
    }
    
    .premium-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.7s ease;
    }
    
    .premium-btn:hover::before {
      left: 100%;
    }
    
    .premium-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(198, 165, 124, 0.3);
    }
    
    .premium-btn.secondary {
      background: linear-gradient(135deg, rgba(249, 246, 240, 0.9), white);
      border: 1px solid var(--gold);
      box-shadow: none;
    }
    
    .premium-btn.secondary:hover {
      background: linear-gradient(135deg, rgba(198, 165, 124, 0.1), rgba(255, 255, 255, 0.9));
      box-shadow: 0 3px 10px rgba(198, 165, 124, 0.2);
    }
    
    .btn-icon {
      margin-right: 8px;
    }
    
    /* Responsive Design for Premium Layout */
    @media (max-width: 1200px) {
      .premium-layout {
        grid-template-columns: 1fr 2fr;
        gap: 20px;
      }
      
      .buy-options-column {
        grid-column: span 2;
        margin-top: 30px;
      }
      
      .buy-option-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 992px) {
      .premium-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
      }
      
      .tequila-selection-column {
        order: 1;
        min-width: auto;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      
      .column-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        text-align: center;
      }
      
      .featured-tequila-column {
        order: 2;
        padding: 10px;
      }
      
      .featured-tequila-frame {
        min-height: 350px;
        padding: 20px;
      }
      
      .buy-options-column {
        order: 3;
        grid-column: span 1;
        margin-top: 0;
      }
      
      .buy-option-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      
      .featured-bottle-image {
        height: 220px;
      }
      
      .featured-name {
        font-size: 2.2rem;
      }
    }
    
    @media (max-width: 768px) {
      .page-wrapper {
        padding: 60px 0 20px;
      }
      
      .find-us-container {
        padding: 10px;
      }
      
      .premium-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        padding: 10px;
      }

      .tequila-selection-column {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        width: 100%;
      }

      .column-title {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
      }

      .tequila-select-box {
        flex: 0 1 calc(50% - 10px);
        min-width: 140px;
        max-width: 200px;
      }

      .featured-tequila-column {
        width: 100%;
        padding: 10px;
      }

      .featured-tequila-frame {
        min-height: auto;
        padding: 20px;
      }

      .buy-options-column {
        width: 100%;
        margin-top: 20px;
      }

      .buy-option-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      .tequila-select-box {
        flex: 0 1 calc(50% - 8px);
        min-width: 120px;
        padding: 8px;
      }

      .select-box-content {
        gap: 10px;
      }

      .select-box-image {
        width: 30px;
      }

      .featured-bottle-image {
        height: 200px;
        width: auto;
      }
    }
    
    /* Fix for very small screens */
    @media (max-width: 350px) {
      .tequila-selection-column {
        grid-template-columns: 1fr;
      }
      
      .column-title {
        grid-column: span 1;
        font-size: 1.1rem;
      }
      
      .featured-bottle-image {
        height: 160px;
      }
      
      .featured-name {
        font-size: 1.5rem;
      }
      
      .buy-option-header h4 {
        font-size: 0.8rem;
      }
      
      .retailer-logo {
        height: 20px;
      }
    }    /* Additional mobile fixes to ensure grid doesn't break */
    @media (max-width: 575px) {
      /* Overrides already included in the 576px breakpoint above */
    }