/* =============================================================
   Siam Outlet – Custom overrides
   Load AFTER style.css and responsive.css
   ============================================================= */

/* ----------------------------------------------------------
   Cookie consent banner
   ---------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 24px;
  display: none;
}
.cookie-consent-banner.is-visible {
  display: block;
}
.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-consent-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: #717580;
}
.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}
.btn-cookie-settings {
  border-color: #aaa;
  color: #232323;
  font-size: 14px;
}
.btn-cookie-accept {
  font-size: 14px;
}
.cookie-consent-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #717580;
  padding: 0 4px;
  line-height: 1;
}
@media (max-width: 767px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-consent-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ----------------------------------------------------------
   Logo grayscale hover effect (Trusted brands / Partnership)
   ---------------------------------------------------------- */
.logo-grayscale {
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  transition: filter 0.4s ease, -webkit-filter 0.4s ease;
}
.logo-grayscale:hover {
  filter: grayscale(0%) !important;
  -webkit-filter: grayscale(0%) !important;
}

/* ----------------------------------------------------------
   Pain-point slider – constrain image size
   ---------------------------------------------------------- */
.pain-point-slider .swiper-slide img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
