@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,700,800,900|Inter:300,400,500,600,700|Outfit:400,500,600,700,800,900');

:root {
  --bg-primary: #090708;
  --bg-secondary: #120e10;
  --accent-pink: #ff2a5f;
  --accent-pink-hover: #e0184b;
  --accent-gold: #ffd700;
  --accent-gold-hover: #e6c200;
  --glass-bg: rgba(18, 14, 16, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #b3a7ad;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 110px; /* Header spacing */
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.7), 0 0 10px rgba(124, 58, 237, 0.4);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

@keyframes pulseGold {
  0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 215, 0, 0.8); }
}

@keyframes heartFloat {
  0% { opacity: 0; transform: translateY(50px) scale(0.5); }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2) rotate(20deg); }
}

/* Header Styling */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.top-bar-ticker {
  background: linear-gradient(90deg, #7c3aed, var(--accent-pink));
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: slideMarquee 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
}

.ticker-item i {
  color: var(--accent-gold);
  margin-right: 6px;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff, #b3a7ad 50%, var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 8px rgba(255, 42, 95, 0.5));
}

.brand-logo span {
  color: var(--accent-pink);
  -webkit-text-fill-color: var(--accent-pink);
}

.logo-badge-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
  -webkit-text-fill-color: var(--bg-primary);
  color: var(--bg-primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 0 12px rgba(255, 42, 95, 0.4);
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.search-form-wrapper {
  flex-grow: 1;
  max-width: 480px;
  position: relative;
}

.search-input {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 0 20px 0 45px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--accent-pink);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(255, 42, 95, 0.25);
}

.search-icon-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  pointer-events: none;
  font-size: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-item {
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

.nav-item:hover {
  color: var(--accent-pink);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-pink);
  transition: width 0.3s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.dropdown-container {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  width: 200px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1001;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 42, 95, 0.1);
  color: var(--accent-pink);
  padding-left: 25px;
}

.btn-header-call {
  background: linear-gradient(135deg, var(--accent-pink), #7c3aed);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 42, 95, 0.3);
  transition: all 0.3s ease;
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 42, 95, 0.5);
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-panel {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  height: calc(100vh - 110px);
  background: var(--bg-primary);
  z-index: 999;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.mobile-nav-panel.active {
  transform: translateX(0);
}

.mobile-nav-item {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

/* Hero Section (Default for Subpages with hot model background image) */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(9, 7, 8, 0.92) 30%, rgba(255, 42, 95, 0.18) 100%),
              url('../images/gallery/8.jpg') no-repeat center 20% / cover;
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* Landing Page Hero Slider Layout */
.hero-section.landing-hero-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  min-height: 550px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content-overlay {
  position: relative;
  z-index: 10;
  padding: 60px 50px;
  max-width: 750px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
  text-align: left;
}

.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
  background: var(--accent-pink);
  transform: scale(1.25);
  box-shadow: 0 0 10px var(--accent-pink);
}

.hero-subtitle {
  color: var(--accent-pink);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 35px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), #b91c1c);
  color: white;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(255, 42, 95, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 42, 95, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Locations Marquee */
.locations-marquee-container {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
  overflow: hidden;
  width: 100%;
}

.locations-track {
  display: flex;
  white-space: nowrap;
  gap: 20px;
  animation: slideMarquee 35s linear infinite;
}

.location-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-badge:hover {
  background: rgba(255, 42, 95, 0.08);
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  transform: translateY(-2px);
}

.location-badge i {
  color: var(--accent-pink);
}

/* New Launches Swiper section */
.new-launches-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}

.section-title-wrap {
  text-align: left;
}

.section-subtitle {
  color: var(--accent-pink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
}

.newlaunch-swiper-controls {
  display: flex;
  gap: 10px;
}

.swiper-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

.swiper-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Model Slider items styling */
.swiper-new-launches {
  width: 100%;
  padding-bottom: 20px;
}

.newlaunch-card-wrapper {
  position: relative;
  display: block;
  margin-left: 20px; /* offset for number */
}

.newlaunch-number {
  position: absolute;
  left: -20px;
  bottom: 0px;
  font-size: 60px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-pink);
  z-index: 10;
  font-family: var(--font-heading);
  line-height: 1;
}

.newlaunch-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.newlaunch-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-pink);
  box-shadow: 0 10px 25px rgba(255, 42, 95, 0.2);
}

.newlaunch-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.newlaunch-card:hover img {
  transform: scale(1.06);
}

.newlaunch-info {
  padding: 15px;
}

.newlaunch-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.newlaunch-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.model-age-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: 12px;
}

.model-rating {
  color: var(--accent-gold);
  font-size: 12px;
}

.newlaunch-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-gold);
}

/* Category Filterable Grid */
.catalog-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-tabs-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 15px;
  margin-bottom: 35px;
  scrollbar-width: none;
}

.filter-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.filter-tab.active {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 42, 95, 0.35);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.catalog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-pink);
  box-shadow: 0 15px 35px rgba(255, 42, 95, 0.25);
}

.catalog-card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.catalog-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-card:hover .catalog-card-image-wrap img {
  transform: scale(1.08);
}

.verified-stamp {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(18, 14, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.model-tag-vip {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--accent-pink), #7c3aed);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 10;
}

.catalog-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(9, 7, 8, 0.95) 0%, rgba(9, 7, 8, 0.5) 70%, transparent 100%);
  padding: 20px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.catalog-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.catalog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}

.catalog-card-meta span {
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

.catalog-details-wrap {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.catalog-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.catalog-info-label {
  color: var(--text-secondary);
  font-size: 13px;
}

.catalog-info-val {
  font-weight: 700;
  font-size: 14px;
}

.catalog-info-val.price {
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 800;
}

.catalog-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-btn {
  height: 38px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-btn-call {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
}

.card-btn-call:hover {
  background: white;
  color: black;
}

.card-btn-whatsapp {
  background: #25d366;
  color: white;
}

.card-btn-whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Profile Page Main Image Style (Desktop Default) */
.profile-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Spin Wheel Section Styling */
.lucky-wheel-section {
  padding: 80px 20px;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 80%), var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.wheel-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 42, 95, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.lucky-wheel-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.wheel-graphic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel-outer-ring {
  width: 320px;
  height: 320px;
  position: relative;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
  box-shadow: 0 10px 40px rgba(255, 42, 95, 0.3), 0 0 40px rgba(124, 58, 237, 0.2);
  animation: float 4s ease-in-out infinite;
}

.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 36px solid var(--accent-gold);
  z-index: 100;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.main-spin-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--bg-primary);
  background: var(--bg-primary);
  transition: transform 4s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.wheel-sector {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 0% 100%;
  top: 0;
  left: 50%;
  transform: rotate(calc(var(--index) * 45deg)) skewY(-45deg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wheel-sector-text-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: skewY(45deg) rotate(22.5deg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  pointer-events: none;
}

.wheel-sector-text {
  font-size: 11px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.wheel-center-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: var(--bg-primary);
  border: 4px solid var(--accent-pink);
  border-radius: 50%;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  cursor: pointer;
}

.wheel-center-pin::after {
  content: '⚡';
  font-size: 24px;
  animation: float 2s ease-in-out infinite;
}

.wheel-text-desc {
  max-width: 450px;
  text-align: left;
}

.wheel-text-desc h3 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
}

.wheel-text-desc h3 span {
  color: var(--accent-pink);
}

.wheel-text-desc p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 30px;
}

.btn-spin-wheel {
  background: linear-gradient(135deg, var(--accent-pink), #7c3aed);
  border: none;
  color: white;
  font-weight: 800;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 42, 95, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-spin-wheel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 42, 95, 0.6);
}

/* Fullscreen overlays for wheel interactive flow */
.wheel-fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 7, 8, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wheel-fullscreen-overlay.active {
  display: flex;
  opacity: 1;
}

.fullscreen-wheel-frame {
  width: 380px;
  height: 380px;
  position: relative;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 50px rgba(255, 42, 95, 0.4), 0 0 100px rgba(255, 215, 0, 0.2);
}

.fullscreen-spin-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  text-align: center;
}

.fullscreen-spin-title span {
  color: var(--accent-gold);
}

/* Result Modal Layout */
.wheel-result-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 7, 8, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wheel-result-modal.active {
  display: flex;
}

.result-card-glow {
  background: linear-gradient(145deg, #181215, #0f0b0c);
  border: 2px solid var(--accent-pink);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 35px 25px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 40px rgba(255, 42, 95, 0.35);
  animation: pulseGlow 3s ease-in-out infinite;
}

.result-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.result-close-btn:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

.result-award-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: float 2.5s ease-in-out infinite;
}

.result-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
}

.result-reward-text {
  color: var(--accent-gold);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.result-gift-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
}

.result-profile-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.result-profile-preview img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--accent-pink);
}

.result-profile-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 3px;
}

.result-profile-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

.result-btn-claim {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  width: 100%;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.result-btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Floating Confetti Canvas */
.confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2002;
  display: block;
}

/* Sound effects floating button alert */
.sound-toggle-hint {
  position: absolute;
  bottom: 20px;
  color: var(--text-secondary);
  font-size: 12px;
}

/* Floating hearts for spin overlay background */
.spin-floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  color: var(--accent-pink);
  opacity: 0;
  font-size: 18px;
  animation: heartFloat 4s ease-in-out infinite;
}

/* QA section (Accordions) */
.faq-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  color: white;
  padding: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-trigger i {
  color: var(--accent-pink);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(255, 255, 255, 0.01);
  border-top: 0 solid transparent;
}

.faq-item.active .faq-content {
  max-height: 1000px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-content-inner {
  padding: 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* Footer layout */
.footer-layout {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 20px 100px; /* offset for bottom bar */
  color: var(--text-secondary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand h4 {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
}

.footer-brand h4 span {
  color: var(--accent-pink);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h5 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-pink);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-list i {
  color: var(--accent-pink);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Floating Bottom Action Bar (Fixed Footer) */
.fixed-contact-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.bottom-action-btn {
  flex-grow: 1;
  max-width: 320px;
  height: 48px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bottom-action-btn:hover {
  transform: translateY(-2px);
}

@keyframes pulseWhatsApp {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 15px rgba(37, 211, 102, 0.4);
  }
}

@keyframes pulseCall {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 42, 95, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 42, 95, 0.6), 0 0 15px rgba(124, 58, 237, 0.4);
  }
}

.bottom-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128c7e);
  animation: pulseWhatsApp 3s infinite ease-in-out;
}

.bottom-btn-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
  animation-play-state: paused;
}

.bottom-btn-call {
  background: linear-gradient(135deg, var(--accent-pink), #7c3aed);
  animation: pulseCall 3s infinite ease-in-out 1.5s;
}

.bottom-btn-call:hover {
  box-shadow: 0 8px 25px rgba(255, 42, 95, 0.7);
  animation-play-state: paused;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .search-form-wrapper {
    max-width: 250px;
  }
  .catalog-card-image-wrap {
    height: 260px;
  }
  .newlaunch-card img {
    height: 220px;
  }
  .profile-main-img {
    height: 420px;
  }
  .hero-section.landing-hero-slider {
    min-height: 480px;
  }
  .hero-content-overlay {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }
  .top-bar-ticker {
    font-size: 12px;
  }
  .nav-container {
    padding: 10px 15px;
  }
  .search-form-wrapper {
    display: none; /* Hide standard search in mobile layout */
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .lucky-wheel-layout {
    flex-direction: column;
    gap: 40px;
  }
  .wheel-text-desc {
    text-align: center;
  }
  .fullscreen-wheel-frame {
    width: 300px;
    height: 300px;
  }
  .catalog-card-image-wrap {
    height: 200px;
  }
  .newlaunch-card img {
    height: 180px;
  }
  .profile-main-img {
    height: 340px;
  }
  .hero-section.landing-hero-slider {
    min-height: 440px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .hero-content-overlay {
    padding: 40px 20px;
    text-align: center;
    width: 100%;
  }
  .hero-slider-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons a {
    justify-content: center;
  }
  .bottom-action-btn span {
    display: none; /* Hide label on tiny screens, show icons only */
  }
  .bottom-action-btn {
    width: 60px;
    flex-grow: 0;
    border-radius: 50%;
  }
  .fixed-contact-footer {
    justify-content: center;
    gap: 30px;
  }
}
