/* ===== TAMROY STUDIO - Premium Luxury Boutique (Light Theme) ===== */
/* Modeled after Leila Amulets (leilaamulets.com) — Bright, Clean, Minimal, Luxurious */

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@200;300;400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F8F6;
  --bg-card: #FFFFFF;
  --bg-dark-accent: #111111;
  --gold: #B8860B;
  --gold-light: #D4AF37;
  --gold-bg: rgba(184, 134, 11, 0.08);
  --gold-border: rgba(184, 134, 11, 0.25);
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-light: #EBEBE6;
  --border-subtle: #F0F0EC;
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.09);
  --font: 'Prompt', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.35s var(--ease);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ===== Utility ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ===== SVG Icon Base ===== */
.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 0;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn-dark {
  background: #111111;
  color: #FFFFFF;
  border: 1px solid #111111;
}
.btn-dark:hover {
  background: #333333;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: #A37B34;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}

.btn-outline {
  background: transparent;
  color: #111111;
  border: 1px solid #111111;
}
.btn-outline:hover {
  background: #111111;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #111111;
  padding: 10px 0;
  font-size: 0.78rem;
  color: #CCCCCC;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left { display: flex; align-items: center; gap: 8px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar a { color: #CCCCCC; font-size: 0.78rem; }
.top-bar a:hover { color: #FFFFFF; }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-img { transform: scale(1.06); }

.nav-logo-text {
  font-size: 1.05rem;
  color: #111111;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-center a {
  color: #444444;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-center a:hover,
.nav-center a.active { color: #111111; font-weight: 500; }

.nav-center a:hover::after,
.nav-center a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  transition: var(--transition);
  border-radius: 50%;
}

.nav-icon-btn:hover { color: var(--gold); background: #F5F5F2; }

.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #111111;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  display: block;
  padding: 18px 0;
  color: #333333;
  font-size: 1.05rem;
  font-weight: 400;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.mobile-menu a:hover { color: var(--gold); padding-left: 12px; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #F4F4F0;
}

.hero-cover-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-cover.jpg') center/cover no-repeat;
  filter: brightness(0.95) contrast(1.05);
  transform: scale(1.01);
  transition: transform 12s ease;
}

.hero:hover .hero-cover-bg { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, rgba(244, 244, 240, 0.92) 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 40%, rgba(244, 244, 240, 0.98) 100%);
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 32px;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-brand-logo {
  width: 130px;
  height: 130px;
  margin: 0 auto 24px;
}

.hero-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
  animation: logoFloat 5s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 22px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
  color: #111111;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #555555;
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 300;
}

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

/* ===== PRODUCTS SECTION ===== */
.products { background: var(--bg-secondary); }

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.filter-tab {
  padding: 14px 28px;
  background: none;
  color: var(--text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.filter-tab:hover { color: #111111; }

.filter-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(184, 134, 11, 0.4);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  background: #111111;
  color: #FFFFFF;
  z-index: 5;
  letter-spacing: 0.5px;
}

.product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #FAFAFA;
  border-bottom: 1px solid var(--border-subtle);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.product-info { padding: 24px; }

.product-name {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111111;
  line-height: 1.4;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-rating { color: var(--gold); font-weight: 500; }

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

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

.product-price-contact {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
}

.product-buttons {
  display: flex;
  gap: 10px;
}

.product-buttons .btn {
  flex: 1;
  padding: 11px 16px;
  font-size: 0.82rem;
}

/* ===== HOROSCOPE SECTION ===== */
.horoscope { background: var(--bg-primary); }

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.zodiac-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 22px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.zodiac-card:hover,
.zodiac-card.active {
  border-color: var(--gold);
  background: var(--gold-bg);
  transform: translateY(-2px);
}

.zodiac-symbol {
  font-size: 1.6rem;
  margin-bottom: 6px;
  display: block;
  color: #444444;
  font-weight: 300;
}

.zodiac-card.active .zodiac-symbol,
.zodiac-card:hover .zodiac-symbol { color: var(--gold); }

.zodiac-name { font-weight: 600; font-size: 0.9rem; color: #111111; }
.zodiac-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; font-weight: 300; }

/* Horoscope Result */
.horoscope-result {
  display: none;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 40px;
  box-shadow: var(--shadow-hover);
  animation: fadeInUp 0.4s var(--ease);
}

.horoscope-result.active { display: block; }

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

.horoscope-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.horoscope-header h3 {
  font-size: 1.5rem;
  color: #111111;
  font-weight: 600;
  margin-bottom: 8px;
}

.horoscope-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.horoscope-category {
  background: #FAF9F6;
  border: 1px solid var(--border-light);
  padding: 24px;
}

.horoscope-category-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111111;
}

.horoscope-score { display: flex; gap: 3px; margin-bottom: 8px; }
.horoscope-score .star { color: var(--gold); font-size: 0.9rem; }
.horoscope-score .star.empty { color: #DDDDDD; }

.horoscope-category p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.horoscope-lucky {
  margin-top: 24px;
  padding: 20px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  text-align: center;
}

.horoscope-lucky span {
  display: inline-block;
  margin: 0 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.horoscope-lucky strong { color: var(--gold); font-weight: 600; }

.horoscope-product-rec {
  margin-top: 20px;
  padding: 24px;
  background: #FAF9F6;
  border: 1px solid var(--border-light);
  text-align: center;
}

.horoscope-product-rec p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 300;
}

/* ===== DREAM SECTION ===== */
.dreams { background: var(--bg-secondary); }

.dream-search-box {
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
}

.dream-search-input {
  width: 100%;
  padding: 18px 24px 18px 54px;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: #111111;
  font-size: 0.98rem;
  font-family: var(--font);
  font-weight: 300;
  transition: var(--transition);
  outline: none;
  box-shadow: var(--shadow-subtle);
}

.dream-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 6px 25px rgba(184, 134, 11, 0.12);
}

.dream-search-input::placeholder { color: var(--text-muted); font-weight: 300; }

.dream-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.dream-suggestions {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.dream-suggestion-tag {
  padding: 8px 20px;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 400;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.dream-suggestion-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.dream-result {
  display: none;
  max-width: 660px;
  margin: 0 auto;
  animation: fadeInUp 0.4s var(--ease);
}

.dream-result.active { display: block; }

.dream-result-card {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.dream-result-keyword {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 16px;
}

.dream-result-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 28px;
  font-weight: 300;
}

.dream-lucky-numbers {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.dream-lucky-number {
  width: 58px;
  height: 58px;
  background: var(--gold);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.25);
  animation: fadeInUp 0.5s var(--ease);
}

/* ===== LOTTERY SECTION ===== */
.lottery { background: var(--bg-primary); }

.lottery-latest {
  max-width: 760px;
  margin: 0 auto 48px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.lottery-latest::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.lottery-date {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 300;
}

.lottery-date strong { color: var(--gold); font-weight: 600; }

.lottery-first-prize { text-align: center; margin-bottom: 32px; }

.lottery-first-prize label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.lottery-first-prize .number {
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 12px;
  color: var(--gold);
}

.lottery-first-prize .amount {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 300;
}

.lottery-prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lottery-prize-item {
  background: #FAF9F6;
  border: 1px solid var(--border-light);
  padding: 20px;
  text-align: center;
}

.lottery-prize-item label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 400;
}

.lottery-prize-item .numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lottery-prize-item .num {
  padding: 6px 16px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
}

/* Lottery Checker */
.lottery-checker {
  max-width: 540px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
}

.lottery-checker h3 {
  text-align: center;
  font-size: 1.15rem;
  color: #111111;
  margin-bottom: 8px;
  font-weight: 600;
}

.lottery-input-group {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.lottery-digit {
  width: 52px;
  height: 64px;
  border: 1px solid var(--border-light);
  background: #FAFAFA;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
}

.lottery-digit:focus {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.15);
}

.lottery-check-btn { width: 100%; }

.lottery-result-box {
  display: none;
  margin-top: 24px;
  padding: 24px;
  text-align: center;
  animation: fadeInUp 0.4s var(--ease);
}

.lottery-result-box.active { display: block; }

.lottery-result-box.win {
  background: var(--gold-bg);
  border: 1px solid var(--gold);
}

.lottery-result-box.lose {
  background: #FAF9F6;
  border: 1px solid var(--border-light);
}

.lottery-result-box h4 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.lottery-result-box.win h4 { color: var(--gold); }
.lottery-result-box.lose h4 { color: var(--text-secondary); }

.lottery-next-draw {
  max-width: 540px;
  margin: 24px auto 0;
  text-align: center;
  padding: 16px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 300;
}

.lottery-next-draw strong { color: var(--gold); font-weight: 600; }

/* ===== SOCIAL SECTION ===== */
.social { background: var(--bg-secondary); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.social-icon.shopee { background: #EE4D2D; color: white; }
.social-icon.lazada { background: #0F146D; color: white; }
.social-icon.youtube { background: #FF0000; color: white; }
.social-icon.facebook { background: #1877F2; color: white; }
.social-icon.tiktok { background: #111; color: white; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-icon.line { background: #06C755; color: white; }

.social-name { color: #111111; font-weight: 500; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
  background: #111111;
  color: #EEEEEE;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-brand p {
  color: #AAAAAA;
  font-size: 0.85rem;
  line-height: 1.9;
  font-weight: 300;
}

.footer-contact h4,
.footer-links h4 {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-contact p {
  color: #AAAAAA;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}

.footer-links a {
  display: block;
  color: #AAAAAA;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: var(--transition);
  font-weight: 300;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: #888888;
  font-size: 0.78rem;
  font-weight: 300;
}

/* ===== CONFETTI ===== */
.confetti-container { position: fixed; inset: 0; pointer-events: none; z-index: 9999; }
.confetti-piece {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gold);
  animation: confettiFall 3s ease-in forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 100;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { border-color: var(--gold); color: var(--gold); }

/* ===== LOADING ===== */
.loading { display: flex; align-items: center; justify-content: center; padding: 60px; }
.spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .zodiac-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-center { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .section-padding { padding: 72px 0; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 40px 20px; }
  .hero-brand-logo { width: 100px; height: 100px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }

  .products-grid { grid-template-columns: 1fr; }
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
  .horoscope-categories { grid-template-columns: 1fr; }
  .lottery-prizes-grid { grid-template-columns: 1fr; }
  .lottery-digit { width: 44px; height: 54px; font-size: 1.4rem; }
  .social-grid { grid-template-columns: 1fr; }
  .filter-tabs { overflow-x: auto; justify-content: flex-start; }
  .filter-tab { white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .zodiac-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lottery-input-group { gap: 6px; }
  .lottery-digit { width: 40px; height: 48px; font-size: 1.2rem; }
  .dream-lucky-number { width: 48px; height: 48px; font-size: 1rem; }
}
