/* ==========================================================================
   TIME WORLD - MAIN LAYOUT & CORE SECTIONS (100% REAL BUSINESS VERSION)
   ========================================================================== */

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Announcement Top Ticker */
.announcement-bar {
  background: linear-gradient(90deg, #aa820a 0%, #d4af37 50%, #aa820a 100%);
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  overflow: hidden;
  position: relative;
  z-index: 100;
  text-align: center;
}

.ticker-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7, 8, 12, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 8, 12, 0.98);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  gap: var(--space-md);
}

/* Brand Vector Logo */
.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-input-group {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Search Dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 380px;
  overflow-y: auto;
  z-index: 120;
  display: none;
}

.search-results-dropdown.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background: rgba(212, 175, 55, 0.1);
}

.search-result-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.action-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  height: 42px;
  padding: 0 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.action-btn-icon {
  width: 42px;
  padding: 0;
  justify-content: center;
}

.action-badge {
  background: #e11d48;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.6);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Flash Sale Countdown */
.hero-countdown-box {
  background: rgba(18, 22, 32, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
}

.countdown-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}

.countdown-timer {
  display: flex;
  gap: 0.5rem;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  min-width: 44px;
  border: 1px solid var(--border-subtle);
}

.time-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: var(--font-heading);
}

.time-unit {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Hero Media Display */
.hero-media-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), var(--gold-glow);
  transition: transform var(--transition-smooth);
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-floating-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10, 12, 18, 0.9);
  backdrop-filter: var(--glass-blur);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   TRUST & COD BADGE STRIP
   ========================================================================== */
.trust-strip {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(14, 17, 24, 0.4);
  margin-bottom: var(--space-2xl);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CATEGORY & FILTER CONTROLS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.filter-controls-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  background: var(--bg-card);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.category-tab:hover,
.category-tab.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  font-weight: 700;
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sort-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.custom-select {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-md);
  outline: none;
  font-size: 0.82rem;
  cursor: pointer;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ==========================================================================
   TIME WORLD - ULTRA LUXURY VIP E-COMMERCE FOOTER
   ========================================================================== */
.site-footer {
  background: #030407;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
}

/* VIP Newsletter Banner */
.footer-vip-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(10, 13, 20, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), var(--gold-glow);
  flex-wrap: wrap;
}

.footer-vip-info h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-vip-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-vip-form {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  max-width: 480px;
}

.vip-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.vip-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* 4-Column Footer Grid */
.footer-grid-luxury {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1.2fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
}

.footer-social-strip {
  display: flex;
  gap: 0.6rem;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-circle-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.footer-col-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.86rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.footer-contact-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

/* Trust & Payments Strip */
.footer-trust-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-payment-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-pill {
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
}

.payment-pill.highlight {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

/* Footer Bottom */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==========================================================================
   MOBILE BOTTOM BAR (APP-LIKE EXPERIENCE)
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: rgba(8, 10, 15, 0.95);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--gold-border);
  z-index: 150;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding: 6px 12px;
}

.mobile-nav-btn.active, .mobile-nav-btn:hover {
  color: var(--gold-primary);
}

.mobile-nav-badge {
  position: absolute;
  top: 2px;
  right: 14px;
  background: #e11d48;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 10px;
}

/* Floating WhatsApp Button */
.floating-actions {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 100;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-bounce);
  text-decoration: none;
}

.float-btn-whatsapp {
  background: #25d366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.float-btn-whatsapp:hover {
  transform: scale(1.1);
}
