* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.product-name {
  margin-top: 3rem;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
}

.product-type {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.product-section {
  width: 100%;
  min-height: calc(100vh + 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  padding: 0 5vw; 
  position: relative;
  padding-left: 10rem;
}

.left-column,
.right-column {
  flex: 0 0 30%;
  padding: 20px;
}
.right-column
{
  text-align: center;
}
.bottle-stage {
  flex: 0 0 auto;
  width: 20%;
  min-width: 200px;
  display: flex;
  justify-content: center;
  position: relative;
}

.mid-section {
  background-color: #EFEDE9;
}

.bottle {
  max-height: 80vh;
  width: auto;
  transform: translateY(200px);
  opacity: 0;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .left-column, .right-column {
    width: 100%;
    max-width: none;
    padding: 10px 0;
  }
  .bottle-stage {
    width: 70%;
    margin: 20px 0;
  }
}

.container-fluid {
    padding: 40px 20px;
}

.timeline-wrapper {
    position: relative;
    height: 30vh;
    min-height: 400px;
    min-width: 250px;
    padding: 0 15px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    width: 2px;
    background: #333;
    transform-origin: bottom;
    animation: growLine 1.5s ease-out forwards;
}

.milestone {
    position: absolute;
    left: 50%;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.dot {
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: dotPop 0.3s ease-out forwards;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: #cd6300;
}

.label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 45%;
}

.year-label { 
    font-weight: 700;
    font-size: 1.1rem;
}
.liters-label { 
  color: #f2ad67;
}

@keyframes growLine {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes dotPop {
    to { transform: translate(-50%, -50%) scale(1); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.visible { opacity: 1; }

@media (max-width: 768px) {
    .label {
        font-size: 18px;
        max-width: 40%;
    }
    .timeline-wrapper {
        height: 90vh;
        width: 300px;

    }
    h5 {
      padding-top: 30px;
      padding-bottom: 30px;
    }
}

.menu-container {
    padding: 5rem 0;
  }
  
  .menu-btn {
    display: block;
    padding: 1rem 1.5rem;
    background: #fff;
    color: #474747;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid #00000011;
    white-space: nowrap;
  }
  
  .menu-btn:hover {
    color: #474747;
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(150, 150, 150, 0.3);
  }
  
  .menu-btn i {
    font-size: 1.2rem;
  }
  
  @media (max-width: 768px) {
    .menu-container {
      padding: 1rem 0;
      margin-top: 60px !important;
    }
    
    .menu-btn {
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .menu-btn {
      white-space: normal;
      line-height: 1.3;
    }
    
    .menu-btn i {
      display: block;
      margin: 0 auto 0.25rem;
      font-size: 1.4rem;
    }
  }

  .main-content {
display: flex;
flex-direction: column;
}

.menu-container {
background: #fff;
z-index: 10;
}

/* Three Columns Section */
.container-fluid.flex-grow-1 {
flex: 1;
min-height: 400px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.main-content {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
}

.row.h-100 {
  height: auto !important;
}

.col-md-3, .col-md-6 {
  height: 100px;
}
}

@media (max-width: 576px) {
.display-4 {
  font-size: 2rem;
}

.col-md-3, .col-md-6 {
  height: 100px;
}
}
