/* Typography Import */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap');

/* RAKA Theme Yellow V2 - Light Theme Tokens */
:root {
  --aion-black: #FAF9F6; /* Main Background */
  --aion-slate: #F4F1EA; /* Secondary Background */
  --aion-panel: #FFFFFF; /* Cards/Panels */
  --aion-surface: #EFECE6; /* Accent Surface */
  --aion-border: #E0DCD3; /* Borders */
  --aion-gold: #8B7D6B; /* Primary Accent / Links */
  --aion-tan: #9E3E3E; /* Secondary Accent */
  --aion-text: #1E1D1A; /* Primary Text */
  --aion-muted: #62605C; /* Muted Text */
  --aion-green: #3D5948; /* Success */
  --aion-red: #9E3E3E; /* Error */
}

/* Local Font Placeholder for Nippo */
@font-face {
  font-family: 'Nippo';
  src: url('../fonts/Nippo-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Nippo';
  src: url('../fonts/Nippo-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Nippo';
  src: url('../fonts/Nippo-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Nippo';
  src: url('../fonts/Nippo-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Nippo';
  src: url('../fonts/Nippo-Extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--aion-black);
  color: var(--aion-text);
  font-family: 'General Sans', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .nippo-font {
  font-family: 'Nippo', sans-serif !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 span, h2 span, h3 span, h4 span, .nippo-font span, .hero-title span, .blog-title span {
  font-family: inherit !important;
}

a {
  color: var(--aion-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--aion-tan);
}

.text-gold { color: var(--aion-gold); }
.text-tan { color: var(--aion-tan); }
.text-muted { color: var(--aion-muted); }

/* Layout & Containers */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-spacing {
  padding: 120px 0;
}

/* UI Elements */
.btn-gold {
  display: inline-block;
  background-color: var(--aion-gold);
  color: #FFFFFF;
  padding: 16px 32px;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  border: 1px solid var(--aion-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--aion-gold);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--aion-text);
  padding: 16px 32px;
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  border: 1px solid var(--aion-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--aion-gold);
  color: var(--aion-gold);
}

.card {
  background-color: var(--aion-panel);
  border: 1px solid var(--aion-border);
  border-radius: 2px;
  padding: 40px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--aion-gold);
}

.pill {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--aion-surface);
  color: var(--aion-gold);
  border: 1px solid var(--aion-border);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

/* Animations Setup */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Grid Utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-spacing { padding: 80px 0; }
}

/* Placeholder specific */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: var(--aion-slate);
  border: 1px dashed var(--aion-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aion-muted);
  font-family: 'General Sans', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 2px;
}

/* ==========================================================================
   Spotlight Interactive Component Styling
   ========================================================================== */
.spotlight-card {
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}

.spotlight-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10 !important;
  height: auto !important; /* Forces responsive height across all screen resolutions! */
  overflow: hidden;
  border-radius: 12px; /* Perfect rounded corners! */
  border: 1px solid var(--aion-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  background-color: var(--aion-slate);
}

.spotlight-zoom-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
}

.spotlight-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glowing dot / spotlight */
.spotlight-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--aion-tan);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 15px var(--aion-tan);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.spotlight-dot.active {
  transform: translate(-50%, -50%) scale(calc(1 / var(--zoom-scale, 1)));
  opacity: 1;
  animation: spotlight-pulse 1.8s infinite ease-in-out;
}

@keyframes spotlight-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(158, 62, 62, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(158, 62, 62, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(158, 62, 62, 0);
  }
}

/* Info Bar overlay */
.spotlight-info {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(224, 220, 211, 0.6);
  border-radius: 10px;
  padding: 12px 18px;
  z-index: 15;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.spotlight-badge {
  display: inline-block;
  background-color: var(--aion-gold);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: 'Nippo', sans-serif;
}

.spotlight-title {
  font-family: 'Nippo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--aion-text);
  margin-bottom: 3px;
}

.spotlight-desc {
  font-family: 'General Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--aion-muted);
  line-height: 1.4;
}

/* Spotlight controls */
.spotlight-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 15;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 4px 8px;
  border: 1px solid rgba(224, 220, 211, 0.5);
}

.spotlight-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--aion-border);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.spotlight-btn:hover {
  transform: scale(1.2);
}

.spotlight-btn.active {
  background-color: var(--aion-tan);
  transform: scale(1.2);
}

/* ── STICKY TOP MENU NAVIGATION ── */
.aion-nav-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(250, 249, 246, 0.85); /* Matches --aion-black with opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--aion-border);
  z-index: 9999;
}

.aion-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.aion-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.aion-nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.aion-nav-logo-text {
  font-family: 'Nippo', sans-serif !important;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aion-text);
}

.aion-nav-links {
  display: flex;
  gap: 24px;
}

.aion-nav-link {
  font-family: 'General Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--aion-muted) !important;
  transition: all 0.3s ease;
}

.aion-nav-link:hover, .aion-nav-link.active {
  color: var(--aion-gold) !important;
}

.aion-nav-cta .btn-nav-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 40px;
  font-family: 'General Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid var(--aion-text);
  background-color: var(--aion-text);
  color: var(--aion-black);
}

.aion-nav-cta .btn-nav-enter:hover {
  background-color: var(--aion-gold);
  border-color: var(--aion-gold);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ==========================================================================
   Modular Site Footer - RAKA Theme Yellow V2 synced with CS-Cart
   ========================================================================== */
.site-footer {
  background-color: var(--aion-slate);
  border-top: 1px solid var(--aion-border);
  padding: 80px 0 40px;
  margin-top: 80px;
  color: var(--aion-text);
  font-family: 'General Sans', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--aion-border);
  padding-bottom: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-newsletter-block {
  flex: 1 1 350px;
}

.footer-block-title {
  font-family: 'Nippo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--aion-text);
  margin-bottom: 16px;
}

.footer-subscribe-form {
  max-width: 360px;
}

.footer-input-group {
  display: flex;
  background-color: var(--aion-black);
  border: 1px solid var(--aion-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.footer-input-group:focus-within {
  border-color: var(--aion-gold);
}

.footer-email-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: var(--aion-text);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.footer-submit-btn {
  background-color: var(--aion-gold);
  border: none;
  color: #FFFFFF;
  padding: 0 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-submit-btn:hover {
  background-color: var(--aion-tan);
}

.footer-social-block {
  flex: 0 0 auto;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  background-color: var(--aion-black);
  border: 1px solid var(--aion-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link .social-icon {
  font-family: 'Nippo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--aion-text);
}

.footer-social-link:hover {
  background-color: var(--aion-gold);
  border-color: var(--aion-gold);
}

.footer-social-link:hover .social-icon {
  color: #FFFFFF;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column-title {
  font-family: 'Nippo', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--aion-text);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-column-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--aion-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.accordion-chevron {
  display: none;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--aion-text);
  border-bottom: 2px solid var(--aion-text);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--aion-border);
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--aion-muted);
}

.footer-copyright a {
  color: var(--aion-gold);
}

.footer-payment-icons {
  display: flex;
  gap: 12px;
}

.payment-badge {
  display: inline-block;
  font-family: 'Nippo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--aion-black);
  border: 1px solid var(--aion-border);
  padding: 6px 14px;
  border-radius: 4px;
  color: var(--aion-muted);
}

/* ==========================================================================
   Footer Responsive Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-top-row {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .footer-newsletter-block {
    flex: 1 1 auto;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--aion-border);
  }

  .footer-column {
    border-top: 1px solid var(--aion-border);
    padding: 18px 0;
  }

  .footer-column-title {
    margin-bottom: 0;
    cursor: pointer;
  }

  .accordion-chevron {
    display: block;
  }

  .footer-column.active .accordion-chevron {
    transform: rotate(-135deg);
  }

  .footer-column-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 8px;
  }

  .footer-column.active .footer-column-links {
    margin-top: 12px;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

