/* ==========================================================================
   Booze Door - Responsive Styles Cleaned
   The core responsive logic has been moved to index.css using CSS variables.
   This file now only contains specific component adjustments that need overrides.
   ========================================================================== */

@media only screen and (max-width: 767px) {
  .ptb-70 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pt-70 {
    padding-top: 40px;
  }

  .pb-70 {
    padding-bottom: 40px;
  }

  /* Carousel responsiveness */
  .home-slides.owl-theme .owl-nav {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
  }

  .carousel-item {
    height: auto !important;
    min-height: 500px;
  }

  .carousel-caption {
    left: 5% !important;
    right: 5% !important;
    text-align: center !important;
  }

  .carousel-caption h2 {
    font-size: var(--fs-2xl) !important;
  }

  /* Layout stacks */
  .col-12 {
    margin-bottom: var(--sp-sm);
  }

  .header-right {
    justify-content: center;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* 2-column grid for tablets */
  .row-cols-tablet-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  /* Desktop specific adjustments if any */
}

/* Fix for overlapping elements on small screens */
.table-responsive {
  margin-bottom: var(--sp-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}