/* ==================== PROMOTIONAL BANNERS STYLING ==================== */
/* Compact, non-intrusive banner styling for better shopping experience */

/* Base banner container */
#promotional-banner-ad,
#promotional-banner-top,
#promotional-banner-sidebar,
#promotional-banner-bottom {
  max-width: 100%;
  margin: 1rem auto;
}

/* Compact banner styling - let images display at natural size */
.promotional-banner-compact {
  max-height: none; /* Remove height restriction */
  overflow: hidden;
}

.promotional-banner-compact .banner-image {
  max-height: none; /* Allow natural image height */
  width: 100%;
  height: auto;
  object-fit: contain; /* Show full image without cropping */
  object-position: center;
}

/* Desktop: Control max width but allow natural height */
@media (min-width: 1024px) {
  #promotional-banner-ad {
    max-width: 90%;
    margin: 0.75rem auto;
  }

  .promotional-banner-compact {
    max-height: 250px; /* Reasonable max height for desktop */
    border-radius: 0.75rem;
  }

  .promotional-banner-compact .banner-image {
    max-height: 250px;
    object-fit: cover; /* Cover on desktop for better look */
  }

  .promotional-banner-compact .banner-content {
    padding: 0.5rem 1rem !important;
  }

  .promotional-banner-compact h3 {
    font-size: 0.875rem !important;
    line-height: 1.2;
  }

  .promotional-banner-compact p {
    font-size: 0.75rem !important;
  }
}

/* Large desktop: Allow more space for banners */
@media (min-width: 1440px) {
  #promotional-banner-ad {
    max-width: 85%;
  }

  .promotional-banner-compact {
    max-height: 280px; /* Larger on big screens */
  }

  .promotional-banner-compact .banner-image {
    max-height: 280px;
  }
}

/* Tablet: Moderate size */
@media (min-width: 768px) and (max-width: 1023px) {
  .promotional-banner-compact {
    max-height: 200px;
  }

  .promotional-banner-compact .banner-image {
    max-height: 200px;
  }
}

/* Mobile: Allow natural image size */
@media (max-width: 767px) {
  #promotional-banner-ad {
    margin: 0.5rem;
  }

  .promotional-banner-compact {
    max-height: 220px; /* Reasonable mobile height */
    border-radius: 0.5rem;
  }

  .promotional-banner-compact .banner-image {
    max-height: 220px;
    object-fit: cover;
  }

  .promotional-banner-compact .banner-content {
    padding: 0.5rem !important;
  }
}

/* Line clamp utility for descriptions */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Smooth transitions */
.promotional-banner-compact {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotional-banner-compact:hover {
  transform: translateY(-2px);
}

/* Ensure banner doesn't push content too much */
#promotional-banner-ad:empty,
#promotional-banner-top:empty,
#promotional-banner-sidebar:empty,
#promotional-banner-bottom:empty {
  display: none;
  margin: 0;
  padding: 0;
}
