/* O Reflexo Promotional Banner Styles */
/* TK-402: Dark + Gold theme following Best Week Banner pattern */

.reflexo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 100%);
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 14px;
  transform: translateY(-100%);
  animation: reflexo-slide-down 0.5s ease-out forwards;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

@keyframes reflexo-slide-down {
  to {
    transform: translateY(0);
  }
}

/* Push down the fixed header to make room for banner */
body:has(.reflexo-banner) .visitor-header {
  top: 48px !important;
  height: 80px !important;
  min-height: 80px !important;
  max-height: 80px !important;
}

/* Remove border from header when banner is present */
body:has(.reflexo-banner) header {
  border-bottom: none !important;
  padding: 0px !important;
}

/* Adjust container to account for banner + header */
body:has(.reflexo-banner) .container {
  height: calc(100vh - 128px) !important;
  margin-top: 48px !important;
  padding-top: 0 !important;
}

/* Ensure main content doesn't have extra padding */
body:has(.reflexo-banner) .main-content {
  padding-top: 0 !important;
}

.reflexo-banner .banner-content {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reflexo-banner .banner-icon {
  font-size: 18px;
  color: #d4af37;
}

.reflexo-banner .banner-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reflexo-banner .banner-main-text {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.reflexo-banner .banner-description {
  color: #b0a89c;
  font-weight: 300;
}

.reflexo-banner .banner-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 12px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-left: 8px;
}

.reflexo-banner .banner-link:hover {
  background: #d4af37;
  color: #0a0a0a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .reflexo-banner {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    padding: 0 8px 0 60px;
    font-size: 12px;
  }

  .reflexo-banner .banner-content {
    gap: 4px;
  }

  .reflexo-banner .banner-icon {
    font-size: 15px;
  }

  .reflexo-banner .banner-text {
    gap: 4px;
  }

  /* Hide description text on mobile */
  .reflexo-banner .banner-description {
    display: none;
  }

  .reflexo-banner .banner-main-text {
    font-size: 12px;
  }

  .reflexo-banner .banner-link {
    font-size: 11px;
    padding: 3px 8px;
    margin-left: 4px;
  }
}
