/* ========= FOOTER STYLES ========= */
.footer {
  background: var(--header-bg);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  margin-top: 80px;
  margin-left: 260px;
  transition: margin-left 0.3s ease;
}

.footer.expanded {
  margin-left: 60px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-column h4 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

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

.footer-column a {
  color: var(--txt-muted);
  font-size: 13px;
  transition: color .15s ease;
  text-decoration: none;
}

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

.footer-payments {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.payment-method {
  width: 48px;
  height: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-muted);
  font-size: 10px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-muted);
  transition: all .15s ease;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

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

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 0, 0, 0.05);
  border-top: 2px solid rgba(255, 0, 0, 0.2);
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-secondary);
}

.age-icon {
  font-size: 24px;
  filter: grayscale(0.3);
}

.age-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: calc(100% - 40px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 200;
  box-shadow: var(--shadow);
}

.cookie-text {
  color: var(--txt-2);
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all .15s ease;
  cursor: pointer;
  border: none;
}

.cookie-btn.necessary {
  background: var(--panel-hover);
  color: var(--txt);
}

.cookie-btn.accept {
  background: var(--gold);
  color: #000;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}


/* ========= FAQ SECTION STYLES ========= */
.faq-section {
  padding: 80px 0;
  background: 
    radial-gradient(ellipse at top center, rgba(212,165,116,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0e13 0%, #141922 50%, #0a0e13 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4a574' stroke-width='0.1' opacity='0.1'%3E%3Cpath d='M30 10 L40 30 L30 50 L20 30 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(212,165,116,0.05));
  border: 1px solid rgba(212,165,116,0.3);
  border-radius: 30px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.faq-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.3), transparent);
  animation: faq-shimmer 3s ease-in-out infinite;
}

@keyframes faq-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.faq-title {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(180deg, #f0e6d2 0%, #c89b3c 45%, #c8aa6e 50%, #c89b3c 55%, #f0e6d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-subtitle {
  font-size: 18px;
  color: #a09b8c;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid rgba(212,165,116,0.2);
  border-radius: 25px;
  color: #a09b8c;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,165,116,0.1));
  transition: width 0.3s ease;
}

.faq-category-btn:hover {
  color: var(--gold);
  border-color: rgba(212,165,116,0.4);
  transform: translateY(-2px);
}

.faq-category-btn:hover::before {
  width: 100%;
}

.faq-category-btn.active {
  background: linear-gradient(135deg, rgba(212,165,116,0.15), rgba(212,165,116,0.1));
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(212,165,116,0.3);
}

/* FAQ Items */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(1,10,19,0.6) 0%, rgba(7,20,30,0.6) 100%);
  border: 1px solid rgba(212,165,116,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active::before {
  opacity: 1;
  animation: faq-glow 2s ease-in-out infinite;
}

@keyframes faq-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.faq-item:hover {
  border-color: rgba(212,165,116,0.3);
  transform: translateX(4px);
}

.faq-item.active {
  background: linear-gradient(180deg, rgba(212,165,116,0.05) 0%, rgba(1,10,19,0.8) 100%);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(212,165,116,0.2);
}

/* FAQ Question */
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.faq-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-number {
  transform: rotate(360deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  box-shadow: 0 0 20px rgba(212,165,116,0.5);
}

.faq-question-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #f0e6d2;
  line-height: 1.4;
}

.faq-item.active .faq-question-text {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: all 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px 72px;
}

.faq-answer-content {
  color: #a09b8c;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.faq-answer-content strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.faq-answer-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer-content li {
  margin: 8px 0;
  position: relative;
  list-style: none;
  padding-left: 20px;
}

.faq-answer-content li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Contact CTA */
.faq-contact {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(0,212,170,0.05));
  border: 2px solid rgba(212,165,116,0.2);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.faq-contact-content {
  position: relative;
  z-index: 1;
}

.faq-contact-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.faq-contact-text {
  color: #a09b8c;
  font-size: 16px;
  margin-bottom: 24px;
}

.faq-contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-contact-btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-contact-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 6px 20px rgba(212,165,116,0.4);
}

.faq-contact-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,165,116,0.5);
}

.faq-contact-btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.faq-contact-btn.secondary:hover {
  background: rgba(212,165,116,0.1);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 36px;
  }
  
  .faq-subtitle {
    font-size: 16px;
  }
  
  .faq-categories {
    gap: 8px;
  }
  
  .faq-category-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
  
  .faq-question {
    padding: 16px 20px;
  }
  
  .faq-question-text {
    font-size: 14px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .faq-answer-content {
    font-size: 14px;
  }
  
  .faq-contact {
    padding: 24px 20px;
  }
  
  .faq-contact-buttons {
    flex-direction: column;
  }
  
  .faq-contact-btn {
    width: 100%;
    justify-content: center;
  }
}

.astro-footer {
    background: linear-gradient(180deg, #0a0e13 0%, #1a0a20 100%);
    border-top: 2px solid var(--gold-dark);
    margin-top: 80px;
    margin-left: 260px;
    transition: margin-left 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .astro-footer.expanded {
    margin-left: 60px;
  }

  .astro-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: footer-glow 3s ease-in-out infinite;
  }

  @keyframes footer-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  .astro-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Footer Top */
  .astro-footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(212,165,116,0.1);
  }

  .astro-footer-top .astro-footer-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
  }

  /* Brand Section */
  .astro-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .astro-footer-logo {
    height: 48px;
    width: auto;
  }

  .astro-footer-tagline {
    color: var(--txt-muted);
    font-size: 14px;
    line-height: 1.6;
  }

  /* Social Links */
  .astro-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  .astro-social-link {
    width: 40px;
    height: 40px;
    background: rgba(212,165,116,0.1);
    border: 1px solid rgba(212,165,116,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
  }

  .astro-social-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,165,116,0.4);
  }

  /* Footer Grid */
  .astro-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .astro-footer-title {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

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

  .astro-footer-list {
    list-style: none;
    padding: 0;
  }

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

  .astro-footer-list a {
    color: var(--txt-muted);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
  }

  .astro-footer-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

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

  .astro-footer-list a:hover::before {
    width: 100%;
  }

  /* Payment Methods */
  .astro-footer-payments {
    background: rgba(212,165,116,0.05);
    padding: 30px 0;
    border-bottom: 1px solid rgba(212,165,116,0.1);
  }

  .astro-payments-title {
    text-align: center;
    color: var(--txt-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .astro-payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .astro-payment-logo {
    height: 30px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(1);
  }

  .astro-payment-logo:hover {
    opacity: 1;
    filter: grayscale(0);
  }

  /* Certifications */
  .astro-footer-certifications {
    padding: 30px 0;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212,165,116,0.1);
  }

  .astro-cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .astro-cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--txt-muted);
    font-size: 13px;
  }

  .astro-cert-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
  }

  /* Bottom Bar */
  .astro-footer-bottom {
    padding: 24px 0;
    background: rgba(0,0,0,0.5);
    text-align: center;
  }

  .astro-copyright {
    color: var(--txt-muted);
    font-size: 13px;
    margin-bottom: 8px;
  }

  .astro-disclaimer {
    color: var(--txt-muted);
    font-size: 12px;
  }

  .astro-disclaimer a {
    color: var(--gold);
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    .astro-footer-top .astro-footer-container {
      grid-template-columns: 1fr;
    }

    .astro-footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .astro-footer {
      margin-left: 0;
    }

    .astro-footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .astro-payment-logos,
    .astro-cert-grid {
      gap: 20px;
    }

    .astro-cert-item {
      font-size: 11px;
    }
  }