/**
 * Custom Banner Styles
 * Compatible PrestaShop 1.7.8.7 & 9.0.0
 * Fully Responsive
 */

.custom-banner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 20px auto;
  overflow: hidden;
  z-index: 0;
}

.custom-banner-inner {
  position: relative;
  width: 100%;
}

/* Image mode */
.custom-banner-image-link {
  display: block;
  width: 100%;
}

.custom-banner-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* Text mode */
.custom-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 30px 20px;
  text-align: center;
}

.custom-banner-text {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.4;
  max-width: 1200px;
  width: 100%;
}

/* Buttons */
.custom-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.custom-banner-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #dcb87e;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-banner-btn:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
  .custom-banner-content {
    min-height: 120px;
    padding: 25px 15px;
  }

  .custom-banner-text {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .custom-banner-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .custom-banner-content {
    min-height: 100px;
    padding: 20px 10px;
  }

  .custom-banner-text {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .custom-banner-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .custom-banner-buttons {
    gap: 8px;
  }
}
