/* ========================================
   TryBlackFriday - Premium Dark Theme
   ======================================== */

/* Reset & Variables */
:root {
  --bg-primary: #07070d;
  --bg-secondary: #0d0d16;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --accent-orange: #ff6b35;
  --accent-pink: #f72585;
  --accent-cyan: #00f5d4;
  --accent-purple: #7b2ff7;
  --gradient-main: linear-gradient(135deg, #ff6b35, #f72585);
  --gradient-cool: linear-gradient(135deg, #00f5d4, #7b2ff7);
  --gradient-warm: linear-gradient(135deg, #ff6b35, #ffb347);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.15);
  --container-max: 1200px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ======== Background Mesh ======== */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 10% 40%, rgba(255, 107, 53, 0.08), transparent),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(247, 37, 133, 0.08), transparent),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(123, 47, 247, 0.06), transparent);
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ======== Scroll Reveal ======== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ======== Gradient Text ======== */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ======== Announcement Ticker ======== */
.ticker-bar {
  background: var(--gradient-main);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker-content span {
  display: inline-block;
  padding: 0 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======== Scroll to Top ======== */
#scrollToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

#scrollToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTop:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* ======== Navigation ======== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 13, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(7, 7, 13, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
}

.logo-icon { font-size: 1.4rem; }
.logo-text { color: white; }
.logo-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  position: relative;
}

.nav-links a:hover,
.nav-links a.nav-link-active {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icons {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.social-icon-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.social-icon-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(7, 7, 13, 0.98);
    backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 1005;
  }
  .nav-links.active { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.3rem; padding: 1rem 2rem; }
  .nav-icons { display: none; }
  .hamburger { display: flex; }
}

/* ======== Hero Section ======== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: heroPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.hero-content {
  max-width: 820px;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 2rem;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(255, 107, 53, 0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.time-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  min-width: 85px;
  position: relative;
  overflow: hidden;
}

.time-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
}

.time-box span {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: white;
}

.time-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.3rem;
}

.time-separator {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.35s var(--ease);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(247, 37, 133, 0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border-accent);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Hero Trust */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--bg-primary);
  margin-right: -8px;
  color: white;
}

.hero-trust strong { color: white; }

/* ======== Brand Marquee ======== */
.brand-marquee {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 25s linear infinite;
}

.brand-item {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 0.5rem;
  transition: color 0.3s;
}

.brand-dot {
  color: var(--accent-orange);
  padding: 0 1rem;
  font-size: 0.6rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======== How It Works ======== */
.how-it-works {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ======== Deals Section ======== */
.deals-main {
  padding: 5rem 0 4rem;
}

/* Category Pills */
.categories-container {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 2.5rem;
  -ms-overflow-style: none;
}
.categories-container::-webkit-scrollbar { display: none; }

.categories {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0;
  width: max-content;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.category-pill:hover {
  border-color: rgba(255, 107, 53, 0.4);
  color: white;
  background: rgba(255, 107, 53, 0.08);
}

.category-pill.active {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(247, 37, 133, 0.25);
}

/* Deals Grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Deal Cards */
.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
  animation: cardFadeIn 0.5s var(--ease) both;
  overflow: hidden;
}

.deal-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  filter: blur(15px);
}

.deal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.deal-card:hover::before { opacity: 0.3; }

.deal-hot { border-color: rgba(255, 107, 53, 0.2); }

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Card Top */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-badge {
  background: var(--gradient-main);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.hot-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-orange);
  animation: hotPulse 1.5s ease-in-out infinite;
}

@keyframes hotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Card Brand */
.card-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.brand-icon { font-size: 1.2rem; }

.brand-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.category-tag {
  margin-left: auto;
  padding: 0.2rem 0.7rem;
  background: rgba(0, 245, 212, 0.08);
  color: var(--accent-cyan);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Card Title */
.card-title-link {
  display: block;
  margin-bottom: 0.5rem;
}

.card-title-link h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s;
}

.card-title-link:hover h3 { color: var(--accent-orange); }

/* Card Description */
.card-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

/* Card Footer */
.card-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sale-price {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deal-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.card-btn:hover,
.deal-card:hover .card-btn {
  background: var(--gradient-main);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
  transform: translateY(-1px);
}

/* ======== Stats Section ======== */
.stats-section {
  padding: 5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.stat-item h4 {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  letter-spacing: -1px;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item h4 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ======== Newsletter Section ======== */
.newsletter-section {
  padding: 5rem 0;
}

.newsletter-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
}

.newsletter-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 37, 133, 0.1), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.newsletter-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.newsletter-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.subscribe-form {
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.input-group {
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  padding: 0.3rem;
  transition: border-color 0.3s;
}

.input-group:focus-within {
  border-color: var(--accent-orange);
}

.subscribe-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 0.7rem 1.2rem;
  color: white;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
}

.subscribe-form input::placeholder { color: var(--text-muted); }

.subscribe-form button {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: 26px;
  background: var(--gradient-main);
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.subscribe-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(247, 37, 133, 0.4);
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ======== Footer ======== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.25s;
}

.footer-col a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ======== Responsive ======== */
@media (max-width: 992px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: 85vh; padding: 4rem 1rem 3rem; }
  .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
  .hero p { font-size: 1rem; }

  .countdown { flex-wrap: wrap; gap: 0.5rem; }
  .time-box { min-width: 72px; padding: 0.8rem; }
  .time-box span { font-size: 1.6rem; }
  .time-separator { font-size: 1.4rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .deals-grid { grid-template-columns: 1fr; }

  .subscribe-form { padding: 0; }
  .input-group { flex-direction: column; border-radius: var(--radius-md); }
  .subscribe-form button { width: 100%; justify-content: center; border-radius: 26px; }

  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .ticker-content span { font-size: 0.7rem; padding: 0 1.5rem; }
  .brand-item { font-size: 1rem; }
  .section-header h2 { font-size: 1.8rem; }
  .newsletter-inner { padding: 2.5rem 1.2rem; }
}

/* ======== FAQ Section ======== */
.faq-section {
  padding: 5rem 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: rgba(255, 107, 53, 0.25);
}

.faq-item[open] {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  padding: 1.3rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color 0.3s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-orange);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--accent-orange);
}

.faq-answer {
  padding: 0 1.5rem 1.3rem;
  animation: faqSlide 0.3s var(--ease);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-answer a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--accent-pink);
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
