/* ============================================
   👑 KINGS & QUEENS — Premium Component Styles
   Mobile-First, Dark Theme, Luxurious Animations
   ============================================ */

:root {
  --sf-card-radius: 16px;
  --sf-card-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   PREMIUM ANIMATIONS — Keyframes
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(212, 175, 55, 0.3);
  }
  50% {
    border-color: rgba(212, 175, 55, 0.8);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

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

/* ============================================
   ANIMATION CLASSES — Apply to Elements
   ============================================ */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out both;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-slide-up {
  animation: fadeInUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.animate-slide-up-delay {
  animation: fadeInUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
}

.animate-slide-down {
  animation: fadeInDown 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.animate-slide-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.animate-slide-right {
  animation: fadeInRight 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.animate-scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-on-scroll.animate-in,
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for children */
.animate-on-scroll[data-delay="0"] {
  transition-delay: 0ms;
}
.animate-on-scroll[data-delay="100"] {
  transition-delay: 100ms;
}
.animate-on-scroll[data-delay="200"] {
  transition-delay: 200ms;
}
.animate-on-scroll[data-delay="300"] {
  transition-delay: 300ms;
}
.animate-on-scroll[data-delay="400"] {
  transition-delay: 400ms;
}
.animate-on-scroll[data-delay="500"] {
  transition-delay: 500ms;
}

/* ============================================
   HERO — Immersive Full-Screen Experience
   ============================================ */
.hero {
  min-height: 100vh;
}

.hero-inner {
  max-width: var(--max-width, 1400px);
  margin: 0 auto;
  text-align: center;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1.05;
  }

  .hero-sub {
    font-size: 1.05rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-ctas .btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    padding: 0 1rem;
  }
}

/* ============================================
   GRIDS — Premium Layouts
   ============================================ */
.card-grid {
  justify-content: center;
  justify-items: center;
}

.category-grid {
  justify-content: center;
  justify-items: center;
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   PRODUCT CARD — Luxury Dark Theme (VIBRANT)
   ============================================ */
.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-card-radius);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}

/* Vibrant shimmer effect on hover */
.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 201, 66, 0.12),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.product-card:hover::after {
  left: 100%;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 201, 66, 0.5);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 201, 66, 0.2);
}

.product-card:focus-within {
  border-color: rgba(255, 201, 66, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 201, 66, 0.3);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.product-badge.bestseller {
  background: linear-gradient(135deg, var(--kq-gold, #ffc942), #ff9800);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(255, 201, 66, 0.6);
}

.product-badge.popular {
  background: linear-gradient(
    135deg,
    var(--kq-gold-dark, #e6a800),
    var(--kq-gold-accent, #ffb300)
  );
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(230, 168, 0, 0.55);
}

.product-badge.new {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.product-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--kq-gold, #ffc942);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--kq-gold, #ffc942);
  font-size: 0.875rem;
}

.product-rating small {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-left: 0.25rem;
}

.product-price {
  font-family: var(--font-display, "Playfair Display", serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--kq-gold, #d4af37);
}

.product-tags {
  font-size: 0.85rem;
  color: var(--kq-gold, #d4af37);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.product-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Mobile responsive for product cards */
@media (max-width: 640px) {
  .product-image {
    height: 180px;
  }

  .product-body {
    padding: 1.25rem;
  }

  .product-title {
    font-size: 1.15rem;
  }

  .product-price {
    font-size: 1.1rem;
  }

  .product-desc {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 0.9rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-actions .btn {
    width: 100%;
  }
}

/* ============================================
   BUTTONS — Premium Dark Theme
   ============================================ */
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--kq-gold, #d4af37);
}

/* ============================================
   MODAL — Premium Dark Glass
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.open {
  display: flex;
  opacity: 1;
}

.modal-panel {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.98),
    rgba(13, 13, 13, 0.99)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(212, 175, 55, 0.1);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal.open .modal-panel {
  transform: scale(1) translateY(0);
}

/* ============================================
   FILTERS — Premium Pills
   ============================================ */
.category-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.category-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.category-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--kq-gold, #d4af37);
  transform: translateY(-2px);
}

.category-pill.active {
  background: linear-gradient(135deg, var(--kq-gold, #d4af37), #b8960c);
  color: #0d0d0d;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================
   PAGE HEROES — Elegant MOBILE-FIRST Sections
   ============================================ */
.menu-hero,
.page-hero,
.catering-hero,
.about-hero,
.contact-hero,
.events-hero,
.gallery-hero,
.reservations-hero {
  text-align: center;
  padding: 4rem 1rem 3rem;
  background: linear-gradient(
    180deg,
    var(--sf-bg-light, #141414) 0%,
    var(--sf-bg, #0a0a0a) 100%
  );
  position: relative;
}

@media (min-width: 640px) {
  .menu-hero,
  .page-hero,
  .catering-hero,
  .about-hero,
  .contact-hero,
  .events-hero,
  .gallery-hero,
  .reservations-hero {
    padding: 5rem 1.5rem 4rem;
  }
}

.menu-hero::before,
.page-hero::before,
.catering-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 201, 66, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.menu-hero h1,
.page-hero h1,
.catering-hero h1,
.about-hero h1,
.contact-hero h1,
.events-hero h1,
.gallery-hero h1,
.reservations-hero h1 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.menu-hero p,
.page-hero p,
.catering-hero p,
.about-hero p,
.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   FORMS — Premium Dark Theme MOBILE-FIRST
   ============================================ */
.catering-form,
.reservation-form,
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .catering-form,
  .reservation-form,
  .contact-form {
    padding: 3rem 0;
  }
}

.form-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-intro h2 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.form-intro p {
  color: rgba(255, 255, 255, 0.7);
}

/* Form Groups - MOBILE-FIRST, HIGH CONTRAST */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 52px; /* Touch-friendly */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--kq-gold, #ffc942);
  background: rgba(255, 201, 66, 0.08);
  box-shadow: 0 0 25px rgba(255, 201, 66, 0.2);
}

/* Progress Bar */
.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 0;
}

.progress-step {
  flex: 1;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.progress-step::before {
  content: "";
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: all 0.3s ease;
}

.progress-step.active {
  color: var(--kq-gold, #d4af37);
}

.progress-step.active::before {
  background: linear-gradient(135deg, var(--kq-gold, #d4af37), #b8960c);
  border-color: var(--kq-gold, #d4af37);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.progress-step.completed::before {
  border-color: var(--sf-red);
  color: var(--sf-red);
  font-weight: 700;
}

.progress-step .step-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.form-step {
  display: none;
  padding: 2rem;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  margin-bottom: 2rem;
  text-align: center;
}

.step-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.step-header p {
  color: var(--muted);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sf-red);
  outline: none;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(20, 20, 20, 0.98)
  );
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 2rem;
}

.form-success h3 {
  color: var(--success, #00e676);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.85);
}

/* Catering: menu selection cards and improved spacing */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.menu-item {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 66, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.menu-item.selected {
  border-color: var(--kq-gold, #ffc942);
  box-shadow: 0 12px 30px rgba(255, 201, 66, 0.2);
}

.menu-item img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.menu-item h4 {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: #ffffff;
}

.menu-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.error-msg {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 0.4rem;
  display: none;
}

/* make the entire form-step clickable-friendly on mobile */
@media (max-width: 480px) {
  .form-step {
    padding: 1rem;
  }

  .menu-item img {
    height: 70px;
  }
}

/* About — Enhanced Dark Design */
.about-hero {
  padding: var(--sf-space-3xl, 4rem) 0 var(--sf-space-xl, 2rem);
  background: var(--sf-bg, #0a0a0a);
}

.about-hero .section-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
}

/* Values Section */
.values-section {
  padding: var(--sf-space-xl, 2rem) 0 var(--sf-space-3xl, 4rem);
  background: var(--sf-bg, #0a0a0a);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sf-space-lg, 1.5rem);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: var(--sf-space-lg, 1.5rem);
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(18, 18, 18, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sf-radius-xl, 24px);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 201, 66, 0.3);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 201, 66, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
}

.value-card h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   PHILOSOPHY SECTION - Premium About Page
   ============================================ */
.philosophy-section {
  padding: var(--sf-space-3xl, 4rem) 0;
  background: var(--sf-bg, #0a0a0a);
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-2xl, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.philosophy-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: var(--sf-space-md, 1rem) 0;
  color: #ffffff;
}

.philosophy-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--sf-space-md, 1rem);
  font-size: 1.05rem;
}

.philosophy-content strong {
  color: var(--kq-gold, #ffc942);
}

.philosophy-image {
  position: relative;
  border-radius: var(--sf-radius-xl, 24px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 201, 66, 0.2);
}

.philosophy-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 201, 66, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 1;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.philosophy-image:hover img {
  transform: scale(1.05);
}

/* ============================================
   TEAM SECTION - Enhanced Styling
   ============================================ */
.team-section {
  padding: var(--sf-space-3xl, 4rem) 0;
  background: linear-gradient(
    180deg,
    var(--sf-bg, #0a0a0a) 0%,
    rgba(15, 15, 15, 1) 100%
  );
}

.team-role {
  color: var(--kq-gold, #ffc942) !important;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-image {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.team-image::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .team-image::after {
  opacity: 1;
}

/* ============================================
   AWARDS SECTION - Premium Recognition
   ============================================ */
.awards-section {
  padding: var(--sf-space-3xl, 4rem) 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 1) 0%,
    var(--sf-bg, #0a0a0a) 100%
  );
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sf-space-lg, 1.5rem);
}

@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.award-item {
  text-align: center;
  padding: var(--sf-space-xl, 2rem) var(--sf-space-lg, 1.5rem);
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(18, 18, 18, 0.95)
  );
  border: 1px solid rgba(255, 201, 66, 0.15);
  border-radius: var(--sf-radius-xl, 24px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--kq-gold, #ffc942),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.award-item:hover::before {
  opacity: 1;
}

.award-icon {
  font-size: 3rem;
  margin-bottom: var(--sf-space-md, 1rem);
  filter: drop-shadow(0 4px 15px rgba(255, 201, 66, 0.3));
}

.award-item h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.award-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   ABOUT CTA - Premium Call to Action
   ============================================ */
.about-cta {
  padding: var(--sf-space-4xl, 5rem) 0;
  background: linear-gradient(
    135deg,
    rgba(255, 201, 66, 0.1) 0%,
    rgba(255, 107, 53, 0.08) 100%
  );
  border-top: 1px solid rgba(255, 201, 66, 0.2);
  border-bottom: 1px solid rgba(255, 201, 66, 0.2);
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--sf-space-xl, 2rem);
}

.about-cta .btn {
  margin: 0.5rem;
}

/* Story Section - DARK PREMIUM THEME */
.story-section {
  padding: var(--sf-space-3xl, 4rem) 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 1) 0%,
    var(--sf-bg, #0a0a0a) 100%
  );
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 201, 66, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-2xl, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: var(--sf-space-sm, 0.5rem) 0 var(--sf-space-md, 1rem);
  color: #ffffff;
}

.story-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--sf-space-md, 1rem);
  font-size: 1.05rem;
}

.story-stats {
  display: flex;
  gap: var(--sf-space-xl, 2rem);
  margin-top: var(--sf-space-xl, 2rem);
  flex-wrap: wrap;
}

.story-stat {
  text-align: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 0.95)
  );
  border: 1px solid rgba(255, 201, 66, 0.2);
  border-radius: 16px;
  min-width: 100px;
}

.stat-number,
.story-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 0.25rem;
}

.story-image {
  position: relative;
  border-radius: var(--sf-radius-xl, 24px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 201, 66, 0.2);
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.team {
  margin: 3rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: var(--sf-space-2xl, 3rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sf-space-xl, 2rem);
}

.team-member {
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-xl, 2rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.team-member img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: var(--sf-space-md, 1rem);
  border: 4px solid rgba(255, 201, 66, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
  border-color: var(--kq-gold, #ffc942);
}

.team-member h3 {
  margin: 0.5rem 0 0.25rem;
  font-family: var(--font-display, sans-serif);
  color: #ffffff;
  font-size: 1.25rem;
}

.team-role {
  color: var(--sf-red, #e34a3b);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.team-member p:not(.team-role) {
  color: var(--muted, #737373);
  font-size: 0.9rem;
  line-height: 1.5;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--sf-space-md, 1rem);
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--kq-gold, #ffc942);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  border-color: transparent;
  color: var(--sf-bg, #0a0a0a);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 201, 66, 0.3);
}

/* ========================================
   CONTACT PAGE - MOBILE FIRST COMPONENTS
   ======================================== */

/* Contact Section */
.contact-section {
  padding: 3rem 0;
  background: var(--sf-bg, #0a0a0a);
}

@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 0;
  }
}

/* Contact Grid - MOBILE FIRST */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Contact Info Panel */
.contact-info h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Contact Cards Container */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Individual Contact Card - PREMIUM DARK */
.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(20, 20, 20, 0.98)
  );
  border: 1px solid rgba(255, 201, 66, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(255, 201, 66, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 201, 66, 0.2),
    rgba(255, 107, 53, 0.15)
  );
  border-radius: 12px;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--kq-gold, #ffc942);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.25rem 0;
  line-height: 1.5;
}

.contact-card a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--kq-gold, #ffc942);
}

.contact-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--kq-gold, #ffc942) !important;
  font-size: 0.9rem;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Hours List within Contact Card */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:last-child {
  color: var(--kq-gold, #ffc942);
  font-weight: 600;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(20, 20, 20, 0.98)
  );
  border: 1px solid rgba(255, 201, 66, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

.contact-form-wrapper .contact-form {
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

/* Map Section */
.map-section {
  padding: 2rem 0 4rem;
  background: var(--sf-bg, #0a0a0a);
}

@media (min-width: 768px) {
  .map-section {
    padding: 3rem 0 5rem;
  }
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 66, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 350px;
}

@media (min-width: 768px) {
  .map-wrapper iframe {
    height: 450px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(
    180deg,
    var(--sf-bg, #0a0a0a) 0%,
    rgba(20, 20, 20, 1) 100%
  );
}

@media (min-width: 768px) {
  .faq-section {
    padding: 5rem 0;
  }
}

/* Contact Hero - MOBILE FIRST DARK THEME */
.contact-hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* Contact Info - MOBILE FIRST */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
    padding: 0 2rem;
  }
}

.contact-details {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 0.95)
  );
  border: 1px solid rgba(255, 201, 66, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.contact-details h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--kq-gold, #ffc942);
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-details li {
  margin: 0.75rem 0;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details li i,
.contact-details li svg {
  color: var(--kq-gold, #ffc942);
  margin-right: 0.75rem;
  width: 20px;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Secondary Button - VIBRANT */
.btn-secondary {
  background: linear-gradient(
    135deg,
    var(--sf-red, #ff3d5a),
    var(--sf-orange, #ff6b35)
  );
  color: #fff;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  min-height: 48px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 61, 90, 0.4);
}

/* Map Section */
.map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 66, 0.2);
}

.map iframe {
  height: 300px;
  width: 100%;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .map iframe {
    height: 400px;
  }
}

/* Contact Form - DARK THEME */
.contact-form {
  margin: 2rem 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(20, 20, 20, 0.98)
  );
  border: 1px solid rgba(255, 201, 66, 0.2);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .contact-form {
    margin: 4rem 0;
    padding: 3rem 2rem;
  }
}

.contact-form h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-form > p {
  text-align: center;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Form Row - MOBILE FIRST */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--kq-gold, #ffc942);
  box-shadow: 0 0 0 3px rgba(255, 201, 66, 0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc942' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* FAQ Section - DARK THEME */
.faq {
  margin: 2rem 0;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .faq {
    margin: 4rem 0;
    padding: 3rem 2rem;
  }
}

.faq h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 201, 66, 0.3);
  transform: translateY(-4px);
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* Blog */
.blog-hero {
  text-align: center;
  padding: 3rem 0;
}

.blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.blog-hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.posts {
  margin: 3rem 0;
}

.post {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.post-content h2 {
  margin: 0.5rem 0;
}

.post-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

/* ============================================
   ROYAL EXPERIENCE SECTION — Premium Cards
   ============================================ */
.royal-experience {
  padding: var(--sf-space-4xl, 5rem) 0;
  background: linear-gradient(
    180deg,
    var(--sf-bg, #0a0a0a) 0%,
    rgba(15, 15, 15, 1) 100%
  );
  position: relative;
}

.royal-experience::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 201, 66, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-lg, 1.5rem);
}

@media (min-width: 640px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.experience-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-xl, 2rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sf-space-md, 1rem);
  background: linear-gradient(
    135deg,
    rgba(255, 201, 66, 0.15),
    rgba(255, 107, 53, 0.1)
  );
  border: 1px solid rgba(255, 201, 66, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.experience-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--kq-gold, #ffc942);
  fill: none;
  stroke-width: 1.5;
}

.experience-card:hover .experience-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(255, 201, 66, 0.4);
}

.experience-card:hover .experience-icon svg {
  stroke: #0a0a0a;
}

.experience-card h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.experience-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Categories */
.categories {
  margin: 4rem 0;
  padding: var(--sf-space-4xl, 5rem) 0;
  background: var(--sf-bg, #0a0a0a);
}

.categories h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #ffffff;
}

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

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-item {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 201, 66, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.category-item:hover::before {
  opacity: 1;
}

.category-image-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
}

.category-item img,
.category-image-wrapper img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 201, 66, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.category-item:hover img,
.category-item:hover .category-image-wrapper img {
  border-color: var(--kq-gold, #ffc942);
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(255, 201, 66, 0.3);
}

.category-content {
  color: #fff;
}

.category-item h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
}

.category-item p,
.category-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Why Choose Us — Premium DARK Card Design */
.why-choose-us {
  margin: 0;
  padding: var(--sf-space-3xl, 4rem) 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 1) 0%,
    var(--sf-bg, #0a0a0a) 100%
  );
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 201, 66, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sf-space-2xl, 3rem);
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(
    --sf-gradient-warm,
    linear-gradient(135deg, #e34a3b 0%, #ff8c3a 100%)
  );
  color: var(--sf-white, #fff);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--sf-radius-full, 9999px);
  margin-bottom: var(--sf-space-md, 1rem);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.section-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sf-space-lg, 1.5rem);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sf-space-xl, 2rem);
  }
}

.benefit-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-xl, 2rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 201, 66, 0.1);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sf-space-md, 1rem);
  background: linear-gradient(
    135deg,
    rgba(255, 201, 66, 0.15),
    rgba(255, 107, 53, 0.1)
  );
  border-radius: var(--sf-radius-lg, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  box-shadow: 0 8px 24px rgba(255, 201, 66, 0.3);
}

.benefit-card h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Mobile tweaks for benefit cards */
@media (max-width: 480px) {
  .benefit-card {
    padding: var(--sf-space-lg, 1.5rem) var(--sf-space-md, 1rem);
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }
}

/* ============================================
   TESTIMONIALS — Premium Dark Theme
   ============================================ */
.testimonials {
  margin: 0;
  padding: 6rem 0;
  background: linear-gradient(
    180deg,
    var(--sf-bg, #0d0d0d) 0%,
    var(--sf-bg-light, #1a1a1a) 100%
  );
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display, "Playfair Display", serif);
  color: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}

.testimonial {
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.9),
    rgba(13, 13, 13, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 5rem;
  font-family: var(--font-display, "Playfair Display", serif);
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

.testimonial:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(212, 175, 55, 0.1);
}

.testimonial p {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--kq-gold, #d4af37);
  font-weight: 600;
  font-style: normal;
}

.testimonial cite::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--kq-gold, #d4af37);
}

.testimonial .rating {
  color: var(--kq-gold, #d4af37);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(212, 175, 55, 0.5);
}

.carousel-dot.active {
  background: var(--kq-gold, #d4af37);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ============================================
   STATS — Premium Counter Section
   ============================================ */
.stats {
  margin: 0;
  padding: 6rem 0;
  background:
    linear-gradient(
      135deg,
      rgba(13, 13, 13, 0.98) 0%,
      rgba(26, 26, 26, 0.98) 100%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 60%
    );
  position: relative;
  overflow: hidden;
}

.stats::before,
.stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
}

.stats::before {
  top: 0;
}
.stats::after {
  bottom: 0;
}

.stats h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display, "Playfair Display", serif);
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.stat:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat h3,
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  font-weight: 700;
  font-family: var(--font-display, "Playfair Display", serif);
  background: linear-gradient(
    135deg,
    var(--kq-gold-light, #f0d77c),
    var(--kq-gold, #d4af37)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat p {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ============================================
   CTA — Premium Call-to-Action
   ============================================ */
.cta {
  margin: 0;
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.9) 0%,
    rgba(232, 93, 4, 0.9) 50%,
    rgba(212, 175, 55, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-display, "Playfair Display", serif);
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta .btn-primary {
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  color: #0a0a0a;
  font-weight: 700;
}

.cta .btn-primary:hover {
  box-shadow: 0 10px 40px rgba(255, 201, 66, 0.4);
  transform: translateY(-2px);
}

/* ============================================
   NEWSLETTER — Premium Subscription
   ============================================ */
.newsletter {
  margin: 0;
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--sf-bg-light, #1a1a1a) 0%,
    var(--sf-bg, #0d0d0d) 100%
  );
}

/* ============================================
   RESERVATION CTA — Premium Booking Section
   ============================================ */
.reservation-cta {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.reservation-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(15, 15, 15, 0.9) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.reservation-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.reservation-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-display, "Playfair Display", serif);
  color: #ffffff;
  margin-bottom: 1rem;
}

.reservation-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.reservation-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.reservation-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.reservation-note a {
  color: var(--kq-gold, #ffc942);
}

/* ============================================
   GALLERY PREVIEW — Home Page Gallery
   ============================================ */
.gallery-preview {
  padding: var(--sf-space-4xl, 5rem) 0;
  background: linear-gradient(
    180deg,
    var(--sf-bg, #0a0a0a) 0%,
    rgba(15, 15, 15, 1) 100%
  );
}

/* Uniform 2-col mobile → 4-col desktop */
.gallery-preview .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sf-space-md, 1rem);
}

@media (min-width: 768px) {
  .gallery-preview .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-preview .gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

/* no special large item — all uniform */
.gallery-preview .gallery-item-large {
  aspect-ratio: 3/4;
}

.gallery-preview .gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 66, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(255, 201, 66, 0.12);
}

.gallery-preview .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-preview .gallery-item:hover img {
  transform: scale(1.07);
}

/* Overlay — always visible at bottom */
.gallery-preview .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

/* Gallery label */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1rem 1rem;
  z-index: 2;
}

.gallery-overlay span {
  display: inline-block;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ============================================
   LOCATION & HOURS — Premium Section
   ============================================ */
.location-hours {
  padding: var(--sf-space-4xl, 5rem) 0;
  background: var(--sf-bg, #0a0a0a);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-2xl, 3rem);
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-info h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.location-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  border: 1px solid rgba(255, 201, 66, 0.2);
}

.newsletter h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-display, "Playfair Display", serif);
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.newsletter p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--kq-gold, #d4af37);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.newsletter-form button {
  padding: 1rem 2rem;
}

#newsletterForm {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

#newsletterForm input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

#newsletterForm button {
  padding: 0.75rem 1.5rem;
}

/* Checkout */
.checkout-hero {
  text-align: center;
  padding: 3rem 0;
}

.checkout-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.checkout-hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.order-summary {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.order-summary h2 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.order-item:last-child {
  border-bottom: none;
}

.order-total {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid var(--kq-gold, #ffc942);
  color: #ffffff;
}

.payment-options {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.payment-options h2 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.payment-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-tab {
  background: var(--sf-bg);
  border: 1px solid #ddd;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.payment-tab.active {
  background: var(--sf-red);
  color: var(--sf-white);
  border-color: var(--sf-red);
}

.payment-method {
  display: none;
}

.payment-method.active {
  display: block;
}

.bank-details {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 0.95)
  );
  border: 1px solid rgba(255, 201, 66, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.bank-details p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.85);
}

.bank-details strong {
  color: var(--kq-gold, #ffc942);
}

#cardForm {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: var(--sf-bg);
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.2rem;
}

.qty-btn:hover {
  background: var(--sf-orange);
  color: var(--sf-white);
}

.qty-display {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

/* Footer - PREMIUM DARK THEME */
.site-footer {
  background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(255, 201, 66, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--sf-white);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--sf-white);
  transition: transform 0.2s;
}

.social-links a:hover {
  transform: scale(1.1);
}

/* Responsive enhancements for index.html */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }

  .categories {
    margin: 2rem 0;
    padding: 0 1rem;
  }

  .categories h2 {
    font-size: 1.8rem;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .category-item {
    padding: 0.75rem;
  }

  .category-item img {
    width: 60px;
    height: 60px;
  }

  .category-item h3 {
    font-size: 1rem;
  }

  .category-item p {
    font-size: 0.8rem;
  }

  .featured {
    margin: 2rem 0;
    padding: 0 1rem;
  }

  .featured h2 {
    font-size: 1.8rem;
  }

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

  .product-card {
    flex-direction: row;
    padding: 0.75rem;
  }

  .product-image {
    width: 80px;
    height: 80px;
  }

  .product-body {
    flex: 1;
  }

  .product-title {
    font-size: 1rem;
  }

  .product-tags {
    font-size: 0.8rem;
  }

  .product-desc {
    display: none;
  }

  /* Hide on mobile for compactness */

  .why-choose-us {
    margin: 2rem 0;
    padding: 2rem 1rem;
  }

  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit {
    text-align: left;
  }

  .benefit img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
  }

  .testimonials {
    margin: 2rem 0;
    padding: 0 1rem;
  }

  .testimonials h2 {
    font-size: 1.8rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1rem;
  }

  .stats {
    margin: 2rem 0;
    padding: 2rem 1rem;
  }

  .stats h2 {
    font-size: 1.8rem;
  }

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

  .stat h3 {
    font-size: 2rem;
  }

  .cta {
    margin: 2rem 0;
    padding: 2rem 1rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter {
    margin: 2rem 0;
    padding: 2rem 1rem;
  }

  .newsletter h2 {
    font-size: 1.8rem;
  }

  .newsletter p {
    font-size: 1rem;
  }

  #newsletterForm {
    flex-direction: column;
    gap: 0.5rem;
  }

  #newsletterForm input {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-image {
    height: 320px;
  }

  .categories {
    margin: 3rem 0;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured {
    margin: 3rem 0;
  }

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

  .why-choose-us {
    margin: 3rem 0;
    padding: 3rem 0;
  }

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

  .testimonials {
    margin: 3rem 0;
  }

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

  .stats {
    margin: 3rem 0;
    padding: 3rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta {
    margin: 3rem 0;
    padding: 3rem 0;
  }

  .newsletter {
    margin: 3rem 0;
    padding: 3rem 0;
  }

  #newsletterForm {
    max-width: 500px;
  }
}

@media (min-width: 1025px) {
  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .hero-image {
    height: 420px;
  }

  .categories {
    margin: 4rem 0;
  }

  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .featured {
    margin: 4rem 0;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose-us {
    margin: 4rem 0;
    padding: 4rem 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials {
    margin: 4rem 0;
  }

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

  .stats {
    margin: 4rem 0;
    padding: 4rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta {
    margin: 4rem 0;
    padding: 4rem 0;
  }

  .newsletter {
    margin: 4rem 0;
    padding: 4rem 0;
  }

  #newsletterForm {
    max-width: 600px;
  }
}

/* Final mobile polish: app-like spacing, 2-column cards, sticky mobile CTA */
@media (max-width: 768px) {
  /* reduce vertical spacing for a tighter, app-like feel */
  .categories,
  .featured,
  .why-choose-us,
  .testimonials,
  .stats,
  .cta,
  .newsletter {
    margin: 1.5rem 0;
    padding: 0;
  }

  .hero-inner {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  /* 2-column grids on phones for denser product listing */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .card-grid .product-card,
  .category-item {
    width: 100%;
  }

  /* larger tap targets */
  .btn,
  .btn-small,
  .btn-primary,
  .btn-ghost {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  /* tighten benefit cards */
  .benefit img {
    width: 80px;
    height: 80px;
  }

  .benefit h3 {
    font-size: 1.1rem;
  }

  .benefit p {
    font-size: 0.95rem;
  }

  /* testimonials stacked */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* footer spacing */
  .footer-content {
    gap: 1rem;
  }

  /* sticky mobile CTA */
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 12px;
    justify-content: center;
    z-index: 60;
    padding: 0 1rem;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .mobile-cta-inner {
    position: relative;
    width: 100%;
    max-width: 520px;
  }

  .mobile-cta .mobile-cta-btn {
    display: block;
    width: 100%;
    border-radius: 40px;
    padding: 14px 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    font-weight: 800;
  }

  .mobile-cta-dismiss {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    font-weight: 700;
  }

  .mobile-cta-dismiss:focus {
    outline: 2px solid var(--sf-orange);
    outline-offset: 2px;
  }

  .mobile-cta.hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
  }

  /* Checkout: modern order summary */
  .checkout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
  }

  .order-summary {
    background: linear-gradient(180deg, #fff, #fff);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }

  .order-summary h2 {
    margin-bottom: 1rem;
  }

  .items-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .order-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid #f3f3f3;
  }

  .order-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
  }

  .order-item h4 {
    margin: 0;
    font-size: 1rem;
  }

  .order-item .meta {
    font-size: 0.9rem;
    color: var(--muted);
  }

  .item-subtotal {
    font-weight: 700;
  }

  .summary-box {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, #fafafa, #fff);
    border-radius: 10px;
    border: 1px solid #eee;
  }

  .summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
  }

  .summary-total {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 800;
  }

  .promo-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .promo-input input {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
  }

  .checkout-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  @media (min-width: 900px) {
    .checkout {
      grid-template-columns: 1fr 360px;
    }

    .order-summary {
      grid-column: 1;
    }

    .payment-options {
      grid-column: 2;
    }
  }

  /* Toasts */
  #sf-toast-container {
    position: fixed;
    right: 16px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 120;
  }

  .sf-toast {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    min-width: 180px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.28s ease;
    font-weight: 700;
  }

  .sf-toast.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .sf-toast-success {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
  }

  .sf-toast-info {
    background: linear-gradient(90deg, #3498db, #2980b9);
  }

  .sf-toast-error {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
  }

  /* quantity bump animation */
  .qty-display.bump {
    animation: bump 0.36s ease;
  }

  @keyframes bump {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.18);
    }

    100% {
      transform: scale(1);
    }
  }

  /* Make summary sticky on larger screens */
  @media (min-width: 900px) {
    .summary-box {
      position: sticky;
      top: 20px;
    }
  }
}

/* Auth Pages — Enhanced Dark Design */
.auth-hero-section {
  padding: var(--sf-space-3xl, 4rem) 0 var(--sf-space-xl, 2rem);
  background: var(--sf-bg, #0a0a0a);
}

.auth-section {
  padding: 0 0 var(--sf-space-3xl, 4rem);
}

.auth-card {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--sf-space-xl, 2rem);
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.auth-card-header {
  text-align: center;
  margin-bottom: var(--sf-space-lg, 1.5rem);
}

.auth-card-header h2 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.auth-card-header p {
  color: var(--muted, #737373);
  font-size: 0.9rem;
}

.auth-card .form-group {
  margin-bottom: var(--sf-space-md, 1rem);
}

.auth-card .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.auth-card .form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--sf-gray-300, #d4d4d4);
  border-radius: var(--sf-radius-md, 12px);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.auth-card .form-group input:focus {
  border-color: var(--sf-red, #e34a3b);
  box-shadow: 0 0 0 3px rgba(227, 74, 59, 0.1);
}

.form-row-2col,
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sf-space-md, 1rem);
}

@media (max-width: 480px) {
  .form-row-2col,
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sf-space-md, 1rem);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sf-red, #e34a3b);
}

.forgot-link {
  font-size: 0.85rem;
  color: var(--sf-red, #e34a3b);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: var(--sf-space-md, 1rem);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: var(--sf-space-lg, 1.5rem) 0;
  color: var(--muted, #737373);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sf-gray-200, #e5e5e5);
}

.auth-helpers {
  text-align: center;
}

.auth-helpers p {
  margin-bottom: var(--sf-space-sm, 0.5rem);
  color: var(--muted, #737373);
  font-size: 0.9rem;
}

.auth-helpers a {
  color: var(--sf-red, #e34a3b);
  font-weight: 500;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted, #737373);
}

.back-link:hover {
  color: var(--sf-red, #e34a3b);
}

/* Legacy auth-form support - DARK THEME */
.auth-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(20, 20, 20, 0.98)
  );
  border: 1px solid rgba(255, 201, 66, 0.2);
  color: #fff;
  border-radius: 12px;
}

.auth-form {
  max-width: 420px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(20, 20, 20, 0.98)
  );
  border: 1px solid rgba(255, 201, 66, 0.2);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.auth-form h2 {
  color: #fff;
}

.auth-form label {
  color: rgba(255, 255, 255, 0.9);
}

.auth-form input {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.auth-form input:focus {
  border-color: var(--kq-gold, #ffc942);
}

.auth-form h2 {
  margin-bottom: 1rem;
}

.auth-form .form-group input {
  padding: 0.85rem;
  border-radius: 8px;
}

/* ========================================
   AUTH PAGE - Full Page Login/Register Layout
   ======================================== */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  display: flex;
  flex-direction: column;
}

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 201, 66, 0.15);
  border-radius: 24px;
  padding: 3rem;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(255, 201, 66, 0.05);
}

/* Auth Brand Side */
.auth-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(
    145deg,
    rgba(255, 201, 66, 0.08),
    rgba(255, 107, 53, 0.05)
  );
  border-radius: 16px;
  border: 1px solid rgba(255, 201, 66, 0.1);
}

.auth-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.auth-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 201, 66, 0.3));
}

.auth-brand h1 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, #ffc942 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-tagline {
  font-size: 1.1rem;
  color: var(--kq-gold, #ffc942);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.auth-feature svg {
  color: var(--kq-gold, #ffc942);
  flex-shrink: 0;
}

/* Auth Form Side */
.auth-form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-form-header h2 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.auth-form-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.auth-form .form-group {
  margin-bottom: 1.25rem;
}

.auth-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.auth-form .form-group input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.auth-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.auth-form .form-group input:focus {
  border-color: var(--kq-gold, #ffc942);
  box-shadow: 0 0 0 3px rgba(255, 201, 66, 0.15);
  outline: none;
}

.password-input-wrapper {
  position: relative;
}

.password-input-wrapper input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--kq-gold, #ffc942);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-options .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.form-options .checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--kq-gold, #ffc942);
}

.form-options .forgot-link {
  font-size: 0.9rem;
  color: var(--kq-gold, #ffc942);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.form-options .forgot-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Social Auth Buttons */
.social-auth {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-social:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.auth-switch a {
  color: var(--kq-gold, #ffc942);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-switch a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-home:hover {
  color: var(--kq-gold, #ffc942);
}

/* Auth Page Responsive */
@media (max-width: 900px) {
  .auth-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 2rem;
  }

  .auth-brand {
    text-align: center;
    padding: 1.5rem;
  }

  .auth-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .auth-features {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .auth-main {
    padding: 1rem;
  }

  .auth-container {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .auth-brand h1 {
    font-size: 2rem;
  }

  .social-auth {
    flex-direction: column;
  }

  .form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* accessibility */
:focus {
  outline: 2px dashed var(--sf-orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* 404 Error Page */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sf-space-3xl, 4rem) var(--sf-space-lg, 1.5rem);
}

.error-content {
  text-align: center;
  max-width: 480px;
}

.error-icon {
  font-size: 5rem;
  margin-bottom: var(--sf-space-lg, 1.5rem);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.error-content h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  background: var(
    --sf-gradient-warm,
    linear-gradient(135deg, #e34a3b 0%, #ff8c3a 100%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-content h2 {
  font-size: 1.5rem;
  margin-bottom: var(--sf-space-md, 1rem);
}

.error-content p {
  color: var(--muted, #737373);
  margin-bottom: var(--sf-space-xl, 2rem);
}

.error-actions {
  display: flex;
  gap: var(--sf-space-md, 1rem);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   KINGS & QUEENS — Mobile-First Enhancements
   ============================================ */

/* Royal Brand Colors */
:root {
  --kq-gold: #d4af37;
  --kq-gold-light: #e8c857;
  --kq-gold-dark: #b8941f;
  --kq-charcoal: #1a1a1a;
  --kq-dark-bg: #0d0d0d;
}

/* Gold Text Accent */
.text-gold {
  color: var(--kq-gold);
}

/* ============================================
   PAGE HERO — Universal Mobile-First DARK
   ============================================ */
.page-hero {
  padding: var(--sf-space-2xl, 3rem) var(--sf-space-md, 1rem);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 1) 0%,
    var(--sf-bg, #0a0a0a) 100%
  );
}

.page-hero h1 {
  font-size: clamp(1.75rem, 6vw, 3rem);
  margin-bottom: var(--sf-space-sm, 0.5rem);
  color: #ffffff;
}

.page-hero .section-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto;
}

/* Section Header Component */
.section-header {
  text-align: center;
  margin-bottom: var(--sf-space-xl, 2rem);
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--sf-gradient-subtle);
  color: var(--sf-red, #e34a3b);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--sf-radius-full, 9999px);
  margin-bottom: var(--sf-space-md, 1rem);
}

/* ============================================
   RESERVATIONS PAGE — Mobile-First, Dark Theme
   ============================================ */
.reservation-form {
  padding: var(--sf-space-xl, 2rem) 0;
}

.reservation-form form {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-lg, 1.5rem);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-md, 1rem);
  margin-bottom: var(--sf-space-md, 1rem);
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Enhanced Form Inputs for Touch */
.form-group input,
.form-group select,
.form-group textarea {
  min-height: 52px;
  padding: var(--sf-space-md, 1rem);
  font-size: 16px; /* Prevents zoom on iOS */
  border: 2px solid var(--sf-gray-200, #e5e5e5);
  border-radius: var(--sf-radius-md, 12px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sf-red, #e34a3b);
  box-shadow: 0 0 0 4px rgba(227, 74, 59, 0.1);
  outline: none;
}

/* Hours Info Grid */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-lg, 1.5rem);
  padding: var(--sf-space-xl, 2rem) 0;
}

@media (min-width: 640px) {
  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hours-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--sf-space-lg, 1.5rem);
  border-radius: var(--sf-radius-lg, 16px);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hours-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sf-space-sm, 0.5rem);
  font-size: 1.1rem;
  margin-bottom: var(--sf-space-md, 1rem);
  color: #ffffff;
}

.hours-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0.25rem 0;
}

/* ============================================
   GALLERY PAGE — Mobile-First, Dark Theme
   ============================================ */
.gallery-filters {
  display: flex;
  gap: var(--sf-space-sm, 0.5rem);
  flex-wrap: wrap;
  justify-content: center;
  padding: var(--sf-space-lg, 1.5rem) 0;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--sf-radius-full, 9999px);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.filter-btn:hover {
  border-color: var(--kq-gold, #ffc942);
  color: var(--kq-gold, #ffc942);
  background: rgba(255, 201, 66, 0.1);
}

.filter-btn.active {
  background: linear-gradient(
    135deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35)
  );
  border-color: transparent;
  color: var(--sf-bg, #0a0a0a);
  box-shadow: 0 4px 20px rgba(255, 201, 66, 0.4);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sf-space-sm, 0.5rem);
  padding: var(--sf-space-lg, 1.5rem) 0;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sf-space-md, 1rem);
  }
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--sf-radius-md, 12px);
  cursor: pointer;
  outline: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--sf-space-md, 1rem);
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(255, 201, 66, 0.8);
  outline-offset: 3px;
}

.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--sf-white, #fff);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--sf-radius-md, 12px);
}

.lightbox-close {
  position: absolute;
  top: var(--sf-space-md, 1rem);
  right: var(--sf-space-md, 1rem);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--sf-radius-full, 9999px);
  color: var(--sf-white, #fff);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--sf-radius-full, 9999px);
  color: var(--sf-white, #fff);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-prev {
  left: var(--sf-space-md, 1rem);
}

.lightbox-next {
  right: var(--sf-space-md, 1rem);
}

/* ============================================
   EVENTS PAGE — Mobile-First
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-lg, 1.5rem);
  padding: var(--sf-space-xl, 2rem) 0;
}

@media (min-width: 640px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.event-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-xl, 2rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--kq-gold, #ffc942),
    var(--sf-orange, #ff6b35),
    var(--sf-red, #ff3d5a)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.event-card:hover::before {
  opacity: 1;
}

.event-icon {
  font-size: 3rem;
  margin-bottom: var(--sf-space-md, 1rem);
  filter: drop-shadow(0 4px 8px rgba(255, 201, 66, 0.3));
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
  color: #ffffff;
}

.event-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Venues Grid */
.venues-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-lg, 1.5rem);
  padding: var(--sf-space-xl, 2rem) 0;
}

@media (min-width: 768px) {
  .venues-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.venue-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.venue-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.venue-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.venue-info {
  padding: var(--sf-space-lg, 1.5rem);
  color: #ffffff;
}

.venue-info h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
}

.venue-info p {
  color: var(--muted, #737373);
  font-size: 0.9rem;
  margin-bottom: var(--sf-space-md, 1rem);
}

.venue-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.venue-features li {
  display: flex;
  align-items: center;
  gap: var(--sf-space-sm, 0.5rem);
  padding: 0.375rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary, #525252);
}

/* Pricing Packages */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-lg, 1.5rem);
  padding: var(--sf-space-xl, 2rem) 0;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-xl, 2rem);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.package-card.featured {
  border-color: var(--kq-gold, #ffc942);
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 201, 66, 0.25);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--sf-gradient-warm);
  color: var(--sf-white, #fff);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--sf-radius-full, 9999px);
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
}

.package-price {
  font-size: 0.9rem;
  color: var(--muted, #737373);
  margin-bottom: var(--sf-space-lg, 1.5rem);
}

.package-price strong {
  display: block;
  font-size: 2rem;
  color: var(--sf-red, #e34a3b);
  font-weight: 800;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sf-space-xl, 2rem);
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: var(--sf-space-sm, 0.5rem);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary, #525252);
  border-bottom: 1px solid var(--sf-gray-100, #f5f5f5);
}

.package-features li:last-child {
  border-bottom: none;
}

/* ============================================
   BLOG PAGE — Mobile-First
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-lg, 1.5rem);
  padding: var(--sf-space-xl, 2rem) 0;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.blog-card {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 201, 66, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 201, 66, 0.15);
}

.blog-card.featured {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card.featured .blog-image {
  height: 100%;
  min-height: 300px;
}

.blog-body {
  padding: var(--sf-space-lg, 1.5rem);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--sf-space-md, 1rem);
  margin-bottom: var(--sf-space-sm, 0.5rem);
  flex-wrap: wrap;
}

.blog-category {
  padding: 0.25rem 0.75rem;
  background: var(--sf-gradient-subtle);
  color: var(--sf-red, #e34a3b);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--sf-radius-full, 9999px);
}

.blog-date {
  font-size: 0.8rem;
  color: var(--muted, #737373);
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-secondary, #525252);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--sf-space-md, 1rem);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sf-space-xs, 0.25rem);
  color: var(--kq-gold, #ffc942);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: var(--sf-space-3xl, 4rem) 0;
  background: linear-gradient(
    135deg,
    rgba(255, 201, 66, 0.08),
    rgba(255, 107, 53, 0.05)
  );
}

.newsletter-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sf-space-xl, 2rem);
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 201, 66, 0.3);
  border-radius: var(--sf-radius-xl, 24px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.newsletter-box h2 {
  font-size: 1.5rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
  color: #ffffff;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sf-space-lg, 1.5rem);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-sm, 0.5rem);
}

@media (min-width: 480px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  min-height: 52px;
  padding: 0 var(--sf-space-md, 1rem);
  border: 2px solid var(--sf-gray-200, #e5e5e5);
  border-radius: var(--sf-radius-full, 9999px);
  font-size: 16px;
}

.newsletter-form input:focus {
  border-color: var(--sf-red, #e34a3b);
  outline: none;
}

/* ============================================
   CART PAGE — Mobile-First
   ============================================ */
.cart-section {
  padding: var(--sf-space-xl, 2rem) 0;
}

.cart-layout,
.cart-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-xl, 2rem);
}

@media (min-width: 900px) {
  .cart-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.cart-items {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-lg, 1.5rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sf-space-md, 1rem);
  padding: var(--sf-space-md, 1rem) 0;
  border-bottom: 1px solid rgba(255, 201, 66, 0.1);
  align-items: center;
}

@media (min-width: 640px) {
  .cart-item {
    grid-template-columns: 100px 1fr auto auto;
  }
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--sf-radius-md, 12px);
}

@media (min-width: 640px) {
  .cart-item-image {
    width: 100px;
    height: 100px;
  }
}

.cart-item-details h3,
.cart-item-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cart-item-details p {
  font-size: 0.85rem;
  color: var(--muted, #737373);
  margin: 0;
}

.cart-item-price {
  font-weight: 700;
  color: var(--kq-gold, #ffc942);
  font-size: 1rem;
}

/* Quantity Controls — dark-theme */
.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--sf-radius-full, 9999px);
  overflow: hidden;
}

.quantity-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.2s ease,
    color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quantity-btn[data-action="increase"]:hover {
  background: rgba(255, 201, 66, 0.18);
  color: var(--kq-gold, #ffc942);
}

.quantity-btn[data-action="decrease"]:hover {
  background: rgba(255, 61, 90, 0.14);
  color: var(--sf-red, #ff3d5a);
}

.quantity-controls span,
.qty-value {
  min-width: 38px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cart-item-remove {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 61, 90, 0.35);
  background: rgba(255, 61, 90, 0.08);
  color: rgba(255, 61, 90, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  border-color: var(--sf-red, #ff3d5a);
  color: var(--sf-red, #ff3d5a);
  background: rgba(255, 61, 90, 0.18);
  transform: scale(1.08);
}

/* ============================================
   ORDER SUCCESS SCREEN
   ============================================ */
.order-success-screen {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 4rem 1.5rem;
  text-align: center;
}

.order-success-inner {
  max-width: 500px;
  margin: 0 auto;
}

.order-success-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 201, 66, 0.1);
  border: 2.5px solid var(--kq-gold, #ffc942);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kq-gold, #ffc942);
  animation: successPop 0.55s cubic-bezier(0.17, 0.89, 0.32, 1.28) both;
}

@keyframes successPop {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.order-success-badge {
  display: inline-block;
  background: rgba(255, 201, 66, 0.12);
  color: var(--kq-gold, #ffc942);
  border: 1px solid rgba(255, 201, 66, 0.35);
  border-radius: 99px;
  padding: 0.35rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.order-success-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.order-success-message {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.order-ref {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.order-ref strong {
  color: var(--kq-gold, #ffc942);
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.order-success-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cart Summary */
.cart-summary {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95),
    rgba(18, 18, 18, 0.98)
  );
  color: #fff;
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-lg, 1.5rem);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: calc(var(--header-height, 72px) + var(--sf-space-md, 1rem));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-summary h2,
.cart-summary h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sf-space-lg, 1.5rem);
  padding-bottom: var(--sf-space-md, 1rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--sf-space-sm, 0.5rem) 0;
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: var(--sf-space-md, 1rem);
  margin-top: var(--sf-space-md, 1rem);
  border-top: 2px solid rgba(255, 201, 66, 0.4);
}

.summary-row.total span:last-child {
  color: var(--sf-red, #e34a3b);
}

/* Promo Code */
.promo-code {
  margin: var(--sf-space-lg, 1.5rem) 0;
}

.promo-input-wrapper {
  display: flex;
  gap: var(--sf-space-sm, 0.5rem);
  flex-wrap: wrap;
}

.promo-code input {
  flex: 1;
  min-height: 48px;
  padding: 0 var(--sf-space-md, 1rem);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--sf-radius-md, 12px);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.promo-code input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cart-note {
  display: flex;
  gap: var(--sf-space-sm, 0.5rem);
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: var(--sf-space-md, 1rem);
}

.cart-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--sf-space-xl, 2rem);
}

/* ============================================
   CHECKOUT PAGE — Clean & Usable
   ============================================ */

/* Progress Indicator */
.checkout-progress {
  padding: 2rem 0 1rem;
}

.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.checkout-step {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.checkout-step.active {
  color: var(--kq-gold, #ffc942);
  background: rgba(255, 201, 66, 0.12);
  border: 1px solid rgba(255, 201, 66, 0.3);
}

.checkout-step.completed {
  color: var(--success, #00e676);
  background: rgba(0, 230, 118, 0.1);
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.progress-fill {
  height: 100%;
  background: var(--kq-gold, #ffc942);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-text {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

/* Layout */
.checkout-section {
  padding: 1rem 0 4rem;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .checkout-wrapper {
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
}

/* Checkout Cards */
.checkout-card {
  background: var(--sf-bg-card, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-card h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Form Elements */
.checkout-form .form-row {
  display: grid;
  gap: 1rem;
}

.checkout-form .form-row-2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .checkout-form .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.checkout-form .form-group {
  margin-bottom: 1rem;
}

.checkout-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}

.checkout-form .form-group .required {
  color: var(--sf-red, #ff3d5a);
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.checkout-form .form-group input::placeholder,
.checkout-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
  outline: none;
  border-color: var(--kq-gold, #ffc942);
  box-shadow: 0 0 0 3px rgba(255, 201, 66, 0.15);
}

.checkout-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.checkout-form .form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.checkout-form .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Pickup Location */
.pickup-location {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 201, 66, 0.06);
  border: 1px solid rgba(255, 201, 66, 0.15);
  border-radius: 8px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.pickup-location svg {
  flex-shrink: 0;
  color: var(--kq-gold, #ffc942);
  margin-top: 2px;
}

.pickup-location strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pickup-location p {
  margin: 0;
  line-height: 1.5;
}

/* Payment Options */
.checkout-card .payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-option {
  display: block;
  cursor: pointer;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
  border-color: var(--kq-gold, #ffc942);
  background: rgba(255, 201, 66, 0.08);
}

.payment-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--kq-gold, #ffc942);
}

.payment-option-content strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.payment-option-content p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Bank Details */
.checkout-card .bank-details {
  margin-top: 1rem;
  padding: 1.25rem;
  background: rgba(255, 201, 66, 0.06);
  border: 1px solid rgba(255, 201, 66, 0.15);
  border-radius: 10px;
}

.bank-details h3 {
  font-size: 0.95rem;
  color: var(--kq-gold, #ffc942);
  margin-bottom: 0.75rem;
}

.bank-info p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.bank-info strong {
  color: rgba(255, 255, 255, 0.6);
}

.bank-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Submit Button */
.checkout-form .btn-full {
  width: 100%;
  margin-top: 0.5rem;
}

/* Order Summary Sidebar */
.checkout-summary {
  background: var(--sf-bg-card, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.checkout-summary h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Summary Items */
.summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.summary-item img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.summary-item-details {
  flex: 1;
  min-width: 0;
}

.summary-item-details h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   EVENTS PAGE — Missing / Fixed Styles
   ============================================ */

/* event-grid is used in events.html (the event-types section) */
.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Make the card p have some space before the feature list */
.event-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* Event feature list inside each event card */
.event-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.event-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.event-features li:last-child {
  border-bottom: none;
}

.event-features li::before {
  content: "✓";
  color: var(--kq-gold, #ffc942);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* SVG icon styling inside event-icon div */
.event-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(255, 201, 66, 0.1);
  border-radius: 16px;
  color: var(--kq-gold, #ffc942);
}

/* Venues section */
.venues-section {
  background: linear-gradient(180deg, #0f0e0d 0%, #141210 100%);
  padding: 4rem 0;
}

/* venue-content = venue-info (HTML uses venue-content) */
.venue-content {
  padding: 1.5rem;
  color: #fff;
}

.venue-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.venue-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Venue image container */
.venue-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Capacity badge over venue image */
.venue-capacity {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--kq-gold, #ffc942);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 66, 0.3);
  backdrop-filter: blur(4px);
}

/* Venue amenity tags row */
.venue-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.venue-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-amenities span svg {
  color: var(--kq-gold, #ffc942);
  flex-shrink: 0;
}

/* Packages section */
.packages-section {
  padding: 4rem 0;
}

/* Fix package feature list text (was too dark on dark bg) */
.package-features li {
  color: rgba(255, 255, 255, 0.7) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.package-features li.muted {
  color: rgba(255, 255, 255, 0.3) !important;
}

.package-features li svg {
  flex-shrink: 0;
  color: var(--kq-gold, #ffc942);
}

.package-features li.muted svg {
  color: rgba(255, 255, 255, 0.2);
}

/* Fix package price text */
.package-price {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--kq-gold, #ffc942) !important;
  margin-bottom: 1.5rem !important;
}

.package-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

/* ============================================
   RESERVATIONS PAGE — Complete Layout Styles
   ============================================ */

.reservation-section {
  padding: 3rem 0 5rem;
  background: var(--sf-bg, #0a0a0a);
}

/* Two-column wrapper: info left, form right */
.reservation-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .reservation-wrapper {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

/* Left info column */
.reservation-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.reservation-info h2 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #fff;
  margin: 0;
}

.reservation-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--kq-gold, #ffc942);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.reservation-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Hours grid inside reservation-info */
.reservation-info .hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-item .day {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.hours-item .time {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kq-gold, #ffc942);
}

/* Phone CTA button in reservation-info */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
}

/* Reservation note block */
.reservation-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(255, 201, 66, 0.06);
  border: 1px solid rgba(255, 201, 66, 0.15);
  border-radius: 12px;
}

.reservation-note svg {
  flex-shrink: 0;
  color: var(--kq-gold, #ffc942);
  margin-top: 2px;
}

.reservation-note p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Right form column */
.reservation-form {
  background: #1a1a18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.reservation-form h2 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.form-row-2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 560px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* Private dining section */
.private-dining {
  padding: 4rem 0;
}

.private-rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .private-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.private-room-card {
  background: linear-gradient(
    145deg,
    rgba(28, 26, 24, 0.97),
    rgba(18, 17, 15, 0.99)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.private-room-card:hover {
  border-color: rgba(255, 201, 66, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.room-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.private-room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.room-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.room-capacity {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--kq-gold, #ffc942);
  margin-bottom: 0.65rem;
}

.room-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ============================================
   PRODUCT DETAIL PAGE — Styles
   ============================================ */

.product-detail-section {
  padding: 2.5rem 0 5rem;
  background: var(--sf-bg, #0a0a0a);
}

.product-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.product-detail-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.product-detail-breadcrumb a:hover {
  color: var(--kq-gold, #ffc942);
}

.product-detail-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.product-detail-breadcrumb .current {
  color: #fff;
}

/* Main content layout */
.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Image panel */
.product-detail-image-panel {
  position: relative;
}

.product-detail-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: #1a1a1a;
}

.product-detail-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Info panel */
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-detail-category {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--kq-gold, #ffc942);
}

.product-detail-name {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.product-detail-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.product-detail-rating .stars {
  color: var(--kq-gold, #ffc942);
  letter-spacing: 0.05em;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--kq-gold, #ffc942);
}

.product-detail-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0;
}

.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .product-detail-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.product-detail-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.qty-control button {
  width: 40px;
  height: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-control button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-control input {
  width: 48px;
  height: 44px;
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  outline: none;
}

/* Related products strip */
.related-products {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.related-products .section-header {
  margin-bottom: 2rem;
}

.summary-item-details p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.summary-item-price {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Totals */
.summary-totals {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.summary-row.total {
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.summary-row.total span:last-child {
  color: var(--kq-gold, #ffc942);
}

/* Edit Cart Link */
.edit-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--kq-gold, #ffc942);
  text-decoration: none;
  transition: opacity 0.2s;
}

.edit-cart:hover {
  opacity: 0.7;
}

.checkout-step.active {
  background: var(--sf-gradient-warm);
  color: var(--sf-white, #fff);
}

.checkout-step.completed {
  background: var(--success, #22c55e);
  color: var(--sf-white, #fff);
}

.checkout-step span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--sf-radius-full, 9999px);
  font-weight: 700;
  font-size: 0.8rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-xl, 2rem);
}

@media (min-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

.checkout-form {
  background: var(--sf-white, #fff);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-lg, 1.5rem);
  box-shadow: var(--sf-shadow-sm);
}

.checkout-form h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sf-space-lg, 1.5rem);
  padding-bottom: var(--sf-space-md, 1rem);
  border-bottom: 1px solid var(--sf-gray-100, #f5f5f5);
}

/* Time Slots Grid */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sf-space-sm, 0.5rem);
}

@media (min-width: 480px) {
  .time-slots {
    grid-template-columns: repeat(4, 1fr);
  }
}

.time-slot {
  padding: var(--sf-space-sm, 0.5rem);
  background: var(--sf-gray-100, #f5f5f5);
  border: 2px solid transparent;
  border-radius: var(--sf-radius-md, 12px);
  text-align: center;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.time-slot:hover {
  border-color: var(--sf-red, #e34a3b);
}

.time-slot.selected {
  background: var(--sf-gradient-subtle);
  border-color: var(--sf-red, #e34a3b);
  color: var(--sf-red, #e34a3b);
  font-weight: 600;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-md, 1rem);
}

@media (min-width: 480px) {
  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

.payment-method {
  padding: var(--sf-space-md, 1rem);
  background: var(--sf-gray-50, #fafafa);
  border: 2px solid var(--sf-gray-200, #e5e5e5);
  border-radius: var(--sf-radius-lg, 16px);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method:hover {
  border-color: var(--sf-red, #e34a3b);
}

.payment-method.selected {
  border-color: var(--sf-red, #e34a3b);
  background: var(--sf-gradient-subtle);
}

.payment-method span:first-child {
  display: block;
  font-size: 1.5rem;
  margin-bottom: var(--sf-space-xs, 0.25rem);
}

.payment-method span:last-child {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   ORDER SUCCESS PAGE — Mobile-First
   ============================================ */
.success-section {
  padding: var(--sf-space-3xl, 4rem) 0;
  text-align: center;
}

.checkout-progress {
  padding-top: var(--sf-space-lg, 1.5rem);
  padding-bottom: 0;
}

.success-content {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--sf-space-xl, 2rem);
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.96),
    rgba(18, 18, 18, 0.99)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-2xl, 32px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.success-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--sf-white, #fff);
  border-radius: var(--sf-radius-2xl, 32px);
  padding: var(--sf-space-2xl, 3rem) var(--sf-space-lg, 1.5rem);
  box-shadow: var(--sf-shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sf-space-lg, 1.5rem);
  background: var(--success, #22c55e);
  border-radius: var(--sf-radius-full, 9999px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--sf-white, #fff);
  animation: scaleIn 0.5s var(--sf-ease-bounce);
}

.success-card h1 {
  font-size: 1.75rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
}

.success-card p {
  color: var(--muted, #737373);
  margin-bottom: var(--sf-space-lg, 1.5rem);
}

.order-number {
  display: inline-block;
  padding: var(--sf-space-md, 1rem) var(--sf-space-lg, 1.5rem);
  background: var(--sf-gradient-subtle);
  border-radius: var(--sf-radius-md, 12px);
  margin-bottom: var(--sf-space-xl, 2rem);
}

.order-number span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted, #737373);
  margin-bottom: 0.25rem;
}

.order-number strong {
  font-size: 1.25rem;
  color: var(--sf-red, #e34a3b);
}

.order-details {
  text-align: left;
  padding: var(--sf-space-lg, 1.5rem);
  background: var(--sf-gray-50, #fafafa);
  border-radius: var(--sf-radius-lg, 16px);
  margin-bottom: var(--sf-space-xl, 2rem);
}

.order-details h3 {
  font-size: 1rem;
  margin-bottom: var(--sf-space-md, 1rem);
  padding-bottom: var(--sf-space-sm, 0.5rem);
  border-bottom: 1px solid var(--sf-gray-200, #e5e5e5);
}

.order-details-row {
  display: flex;
  justify-content: space-between;
  padding: var(--sf-space-xs, 0.25rem) 0;
  font-size: 0.9rem;
}

.order-details-row span:first-child {
  color: var(--muted, #737373);
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-md, 1rem);
}

.success-message {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sf-space-lg, 1.5rem);
}

.order-card {
  margin: var(--sf-space-xl, 2rem) 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sf-radius-xl, 24px);
  padding: var(--sf-space-lg, 1.5rem);
  text-align: left;
}

.order-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sf-space-md, 1rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--sf-space-md, 1rem);
  margin-bottom: var(--sf-space-md, 1rem);
}

.order-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.order-number {
  font-size: 1.25rem;
  color: var(--kq-gold, #ffc942);
}

.order-status {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.2);
  color: #98f7b7;
  font-weight: 600;
}

.order-info-grid {
  display: grid;
  gap: var(--sf-space-md, 1rem);
  grid-template-columns: 1fr;
  margin-bottom: var(--sf-space-lg, 1.5rem);
}

@media (min-width: 640px) {
  .order-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.order-info-item {
  display: flex;
  gap: var(--sf-space-md, 1rem);
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--sf-space-md, 1rem);
  border-radius: var(--sf-radius-lg, 16px);
}

.order-info-item svg {
  flex-shrink: 0;
  color: var(--kq-gold, #ffc942);
}

.info-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.order-items {
  margin-top: var(--sf-space-md, 1rem);
}

.order-items h3 {
  margin-bottom: var(--sf-space-md, 1rem);
}

.order-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sf-space-md, 1rem);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-item:last-child {
  border-bottom: none;
}

.item-qty {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.item-price {
  color: var(--kq-gold, #ffc942);
  font-weight: 600;
}

.order-total {
  margin-top: var(--sf-space-md, 1rem);
  padding-top: var(--sf-space-md, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
}

.email-notice {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sf-space-sm, 0.5rem);
  align-items: center;
  justify-content: center;
  margin-top: var(--sf-space-lg, 1.5rem);
  padding: var(--sf-space-md, 1rem);
  border-radius: var(--sf-radius-lg, 16px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.pickup-help {
  margin-top: var(--sf-space-xl, 2rem);
  padding-top: var(--sf-space-lg, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-phone {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: var(--sf-space-sm, 0.5rem);
  color: var(--kq-gold, #ffc942);
  font-weight: 600;
}

@media (min-width: 480px) {
  .success-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================
   LEGAL PAGES (Terms, Privacy) — Mobile-First
   ============================================ */
.legal-hero {
  padding: var(--sf-space-2xl, 3rem) var(--sf-space-md, 1rem);
}

.legal-content {
  padding: var(--sf-space-xl, 2rem) 0 var(--sf-space-3xl, 4rem);
}

.legal-article {
  max-width: 800px;
  margin: 0 auto;
}

.legal-toc {
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 0.95)
  );
  border: 1px solid rgba(255, 201, 66, 0.15);
  padding: var(--sf-space-lg, 1.5rem);
  border-radius: var(--sf-radius-lg, 16px);
  margin-bottom: var(--sf-space-xl, 2rem);
}

.legal-toc h2 {
  font-size: 1.1rem;
  margin-bottom: var(--sf-space-md, 1rem);
  color: var(--kq-gold, #ffc942);
}

.legal-toc ol {
  padding-left: var(--sf-space-lg, 1.5rem);
  margin: 0;
}

.legal-toc li {
  padding: var(--sf-space-xs, 0.25rem) 0;
  color: rgba(255, 255, 255, 0.8);
}

.legal-toc a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.legal-toc a:hover {
  color: var(--kq-gold, #ffc942);
}

.legal-toc a {
  color: var(--sf-red, #e34a3b);
  font-size: 0.9rem;
}

.legal-article section {
  margin-bottom: var(--sf-space-2xl, 3rem);
  scroll-margin-top: calc(
    var(--header-height, 72px) + var(--sf-space-md, 1rem)
  );
}

.legal-article h2 {
  font-size: 1.375rem;
  margin-bottom: var(--sf-space-md, 1rem);
  padding-bottom: var(--sf-space-sm, 0.5rem);
  border-bottom: 2px solid var(--sf-gray-100, #f5f5f5);
}

.legal-article h3 {
  font-size: 1.1rem;
  margin: var(--sf-space-lg, 1.5rem) 0 var(--sf-space-sm, 0.5rem);
}

.legal-article p {
  line-height: 1.7;
  margin-bottom: var(--sf-space-md, 1rem);
}

.legal-article ul {
  padding-left: var(--sf-space-lg, 1.5rem);
  margin-bottom: var(--sf-space-md, 1rem);
}

.legal-article li {
  padding: var(--sf-space-xs, 0.25rem) 0;
  line-height: 1.6;
  color: var(--text-secondary, #525252);
}

.legal-contact {
  background: var(--sf-gradient-subtle);
  padding: var(--sf-space-lg, 1.5rem);
  border-radius: var(--sf-radius-md, 12px);
}

.legal-contact p {
  margin: var(--sf-space-xs, 0.25rem) 0;
}

/* ============================================
   VERIFY & LOGOUT PAGES — Mobile-First
   ============================================ */
.verify-section,
.logout-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sf-space-xl, 2rem);
}

.verify-card,
.logout-card {
  max-width: 450px;
  text-align: center;
  background: var(--sf-white, #fff);
  border-radius: var(--sf-radius-2xl, 32px);
  padding: var(--sf-space-2xl, 3rem) var(--sf-space-lg, 1.5rem);
  box-shadow: var(--sf-shadow-lg);
}

.verify-icon,
.logout-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sf-space-lg, 1.5rem);
  border-radius: var(--sf-radius-full, 9999px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.verify-icon {
  background: var(--sf-gradient-subtle);
  color: var(--sf-red, #e34a3b);
}

.logout-icon {
  background: var(--sf-gradient-subtle);
  color: var(--sf-red, #e34a3b);
}

.verify-card h1,
.logout-card h1 {
  font-size: 1.5rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
}

.verify-card p,
.logout-card p {
  color: var(--muted, #737373);
  margin-bottom: var(--sf-space-lg, 1.5rem);
}

.verify-actions,
.logout-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sf-space-md, 1rem);
}

@media (min-width: 400px) {
  .verify-actions,
  .logout-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.quick-links {
  margin-top: var(--sf-space-xl, 2rem);
  padding-top: var(--sf-space-lg, 1.5rem);
  border-top: 1px solid var(--sf-gray-100, #f5f5f5);
}

.quick-links p {
  font-size: 0.9rem;
  margin-bottom: var(--sf-space-sm, 0.5rem);
}

.quick-links a {
  display: inline-block;
  padding: var(--sf-space-xs, 0.25rem) var(--sf-space-sm, 0.5rem);
  color: var(--sf-red, #e34a3b);
  font-size: 0.875rem;
}

/* ============================================
   FOOTER — Enhanced Mobile-First
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  border-top: 1px solid rgba(255, 201, 66, 0.12);
  /* override the 8rem padding from styles.css */
  padding: 4.5rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sf-space-xl, 2rem);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    gap: var(--sf-space-2xl, 3rem) var(--sf-space-xl, 2rem);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: var(--sf-space-2xl, 3rem);
  }
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media (min-width: 640px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: var(--sf-radius-md, 12px);
  margin-bottom: 0.75rem;
  border: 2px solid rgba(255, 201, 66, 0.25);
}

.footer-brand h3 {
  font-size: 1.2rem;
  margin-bottom: 0.12rem;
  color: var(--sf-white, #fff);
  letter-spacing: 0.02em;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-tagline {
  color: var(--kq-gold, #ffc942) !important;
  font-weight: 600;
  font-size: 0.88rem !important;
  margin-top: 0.25rem !important;
  margin-bottom: 0 !important;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--kq-gold, #ffc942);
  border-color: var(--kq-gold, #ffc942);
  color: #0a0a0a;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

/* Link-group and contact headings */
.footer-links-group h4,
.footer-contact h4 {
  position: relative;
  color: var(--sf-white, #fff);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.65rem;
}

.footer-links-group h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--kq-gold, #ffc942);
  border-radius: 2px;
}

@media (max-width: 639px) {
  .footer-links-group h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-links-group li {
  padding: 0.3rem 0;
}

.footer-links-group a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  display: inline-block;
}

.footer-links-group a:hover {
  color: var(--kq-gold, #ffc942);
  padding-left: 4px;
}

/* Contact column */
.footer-contact p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 0.55rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--kq-gold, #ffc942);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 0;
  padding: var(--sf-space-md, 1rem) 0 var(--sf-space-lg, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom .crafted-by {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .crafted-by strong {
  color: var(--kq-gold, #ffc942);
  font-weight: 700;
}

/* ============================================
   MOBILE-FIRST TOUCH OPTIMIZATIONS
   ============================================ */

/* Minimum touch target size (44px) */
.btn,
.filter-btn,
.nav-toggle,
.bottom-nav-item,
.quantity-btn,
.lightbox-close,
.lightbox-nav {
  min-height: 44px;
  min-width: 44px;
}

/* Prevent text selection on interactive elements */
.btn,
.filter-btn,
.quantity-btn,
.nav-toggle,
.bottom-nav-item {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Active states for touch feedback */
.btn:active {
  transform: scale(0.98);
}

.bottom-nav-item:active {
  transform: scale(0.95);
}

/* Smooth scrolling for hash links */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   RESPONSIVE TYPOGRAPHY ENHANCEMENTS
   ============================================ */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================
   SAFE AREA INSETS FOR NOTCHED DEVICES
   ============================================ */
@supports (padding: env(safe-area-inset-bottom)) {
  .bottom-nav {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .site-footer {
    padding-bottom: calc(
      var(--sf-space-xl, 2rem) + env(safe-area-inset-bottom)
    );
  }
}
