  .slider-container2 {
    position: relative;
    width: 600px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #4a90e2;
  }
  
  .color-overlay {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e94b4b;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
  }
  
  .color-overlay.slide-down {
    transform: translateY(100%);
  }
  
  .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    z-index: 5;
  }
  
  .product-name {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin: 20px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    position: relative;
    margin-top: -2px;
    gap: 70px;
  }
  
  .word-part {
    transition: transform 0.8s ease-out;
    display: inline-block;
  }
  
  .milkshake-image {
    width: 200px;
    height: 150px;
    margin-top: -75px;
    object-fit: contain;
    transition: opacity 1.5s ease;
    position: relative;
    z-index: 5;
    position: absolute;
  }
  
  .nutrition-panel {
    background: white;
    border-radius: 15px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 19px;
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 15;
    min-width: 95%;
  }
  
  .nutrition-item {
    text-align: center;
    flex: 1;
  }
  
  .nutrition-value {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    transition: all 0.4s ease;
  }
  
  .nutrition-label {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.2;
  }
  
  .controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
  }
  
  .control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .control-dot.active {
    background: white;
    transform: scale(1.2);
  }
  

  /* Original styles stay the same above this line */

/* Responsive styles for devices with max width 768px (tablets and smaller) */
@media (max-width: 768px) {
    .slider-container2 {
      width: 90%;
      height: auto;
      padding: 20px 0;
    }
  
    .product-name {
      font-size: 32px;
      flex-direction: column;
      gap: 20px;
    }
  
    .milkshake-image {
      width: 150px;
      height: 120px;
      position: static;
      margin: 0 auto;
      display: block;
    }
  
    .nutrition-panel {
      flex-direction: column;
      gap: 10px;
      padding: 15px;
      width: 90%;
      margin: 20px auto 0;
    }
  
    .nutrition-item {
      flex: none;
      width: 100%;
    }
  
    .nutrition-value {
      font-size: 14px;
    }
  
    .nutrition-label {
      font-size: 11px;
    }
  
    .controls {
      position: static;
      margin-top: 15px;
      justify-content: center;
      transform: none;
    }
  }
  