/* ==========================================================================
   Kohinoor Mall CSS Styling
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Variables */
:root {
  /* Logo Swirl Colors */
  --red: #e81e25;
  --orange: #f25f22;
  --gold: #ffc72c;
  --teal: #00a699;
  --green: #6ba539;
  --purple: #7a2f8b;
  
  /* Mixed Swirl Gradients */
  --gradient-mix: linear-gradient(135deg, var(--teal) 0%, var(--purple) 30%, var(--red) 65%, var(--orange) 100%);
  --gradient-primary: linear-gradient(135deg, var(--teal), var(--purple));
  --gradient-accent: linear-gradient(135deg, var(--orange), var(--red));
  
  /* Brand Typography & Grays */
  --dark: #1f1f1f;
  --gray-text: #5a5a5a;
  --gray-light: #f5f6f8;
  --gray-border: #e6e8eb;
  --white: #ffffff;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --shadow-color: rgba(0, 0, 0, 0.05);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Helper Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
}

.text-gradient {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Background Gradients */
.bg-subtle-gradient {
  background: linear-gradient(135deg, rgba(0, 166, 153, 0.03) 0%, rgba(122, 47, 139, 0.02) 35%, rgba(232, 30, 37, 0.02) 70%, rgba(242, 95, 34, 0.03) 100%);
}

/* Base Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Sticky Header & Navbar
   ========================================================================== */
.header-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--gradient-mix);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-wrapper.scrolled::after {
  opacity: 1;
}

.header-wrapper.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-text);
  font-weight: 500;
}

/* Navigation Links (Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.nav-link:hover, 
.nav-item.active .nav-link {
  background-color: var(--gray-light);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.nav-item:hover > .nav-link svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   Dropdown Menus
   ========================================================================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  pointer-events: none;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px) scale(1);
  pointer-events: auto;
}

.dropdown-item {
  position: relative;
  list-style: none;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: linear-gradient(90deg, rgba(0, 166, 153, 0.06) 0%, rgba(122, 47, 139, 0.04) 50%, rgba(232, 30, 37, 0.04) 100%);
  color: var(--teal);
  padding-left: 20px;
}

.dropdown-link svg {
  width: 14px;
  height: 14px;
}

/* Nested Dropdowns (Explore -> Fashion) */
.nested-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 6px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
  pointer-events: none;
}

.dropdown-item:hover > .nested-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* Active Highlight Color Accents */
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient-mix);
  animation: barExpand 0.3s ease forwards;
}

@keyframes barExpand {
  from { width: 0; }
  to { width: 12px; }
}

/* ==========================================================================
   Mobile Nav Trigger & Menu
   ========================================================================== */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

.mobile-drawer-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 12px;
}

/* Accordion Buttons */
.mobile-menu-item {
  width: 100%;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: var(--gray-light);
}

.mobile-menu-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.mobile-menu-btn.open svg {
  transform: rotate(180deg);
}

.mobile-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 16px;
}

.mobile-accordion-list {
  list-style: none;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-accordion-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-accordion-link:hover {
  background-color: var(--gray-light);
  color: var(--teal);
}

/* Overlay blur behind mobile drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Page Transitions & Layout
   ========================================================================== */
.page-view {
  display: block;
  animation: pageFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  min-height: 80vh;
  padding-bottom: 80px;
}

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

/* Breadcrumbs Section */
.breadcrumbs-bar {
  background-color: var(--gray-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-text);
}

.breadcrumb-item a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--purple);
}

.breadcrumb-separator {
  color: #abb2be;
}

/* ==========================================================================
   Home Hero Section & Slideshow
   ========================================================================== */
.hero-slider {
  position: relative;
  height: 660px;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

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

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.68) 55%, rgba(15, 23, 42, 0.25) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 720px;
  padding-left: 80px;
  padding-right: 40px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}

.welcome-badge {
  background: rgba(217, 119, 6, 0.25);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fef08a;
}

.welcome-badge svg {
  width: 14px;
  height: 14px;
  color: #fbbf24;
}

.slide.active .slide-badge {
  transform: translateY(0);
  opacity: 1;
}

.slide-title {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.4s;
}

.welcome-heading {
  font-size: 52px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.slide-tagline {
  font-size: 19px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 16px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.5s;
}

.slide.active .slide-tagline {
  transform: translateY(0);
  opacity: 1;
}

.slide.active .slide-title {
  transform: translateY(0);
  opacity: 1;
}

.slide-desc {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.6s;
}

.slide.active .slide-desc {
  transform: translateY(0);
  opacity: 0.92;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease 0.7s;
}

.slide.active .hero-stats-row {
  transform: translateY(0);
  opacity: 1;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-stat-pill svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.hero-stat-pill strong {
  color: #ffffff;
  font-weight: 700;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.8s;
}

.slide.active .slide-actions {
  transform: translateY(0);
  opacity: 1;
}

.hero-btn-main {
  background: linear-gradient(135deg, #d97706, #b45309) !important;
  border-color: #d97706 !important;
  box-shadow: 0 4px 18px rgba(217, 119, 6, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-secondary:hover {
  background: #ffffff !important;
  color: #0f172a !important;
}

.hero-btn-outline {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-outline:hover {
  border-color: #fbbf24 !important;
  color: #fbbf24 !important;
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-control:hover {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.slider-control.prev {
  left: 24px;
}

.slider-control.next {
  right: 24px;
}

.slider-control svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 32px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--white);
  width: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-mix);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 166, 153, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(122, 47, 139, 0.35);
  background: linear-gradient(135deg, var(--purple) 0%, var(--red) 50%, var(--orange) 100%);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ==========================================================================
   Home Content Sections
   ========================================================================== */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-header .badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
}

.section-header p {
  color: var(--gray-text);
  font-size: 15px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-mix);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.04);
}

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

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg, rgba(0, 166, 153, 0.08));
  color: var(--accent, var(--teal));
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
}

.feature-desc {
  color: var(--gray-text);
  font-size: 14px;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent, var(--teal));
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.feature-link:hover {
  gap: 10px;
}

.feature-link svg {
  width: 16px;
  height: 16px;
}

/* Brands Swiper / Grid */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 24px;
}

.brand-logo-card {
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.3s ease;
  background: var(--white);
  padding: 12px;
}

.brand-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-logo-card:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: var(--gray-text);
  transform: scale(1.05);
}

/* ==========================================================================
   Page Templates & Component Grids
   ========================================================================== */
.hero-header {
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
}

.hero-header h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero-header p {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts for Directory / Category Pages */
.category-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.category-intro-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  outline: 1px solid var(--gray-border);
}

.category-intro-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-intro-content h2 {
  font-size: 32px;
  font-weight: 800;
}

.intro-stats {
  display: flex;
  gap: 24px;
}

.intro-stat-card {
  flex: 1;
  background-color: var(--gray-light);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.intro-stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
}

.intro-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
}

/* Store Listing Directory Grids */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.store-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-mix);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

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

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.store-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.store-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent, var(--teal));
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.store-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.store-logo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-logo-small {
  height: 28px;
  max-width: 80px;
  object-fit: contain;
}

.store-floor {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-name {
  font-size: 20px;
  font-weight: 800;
}

.store-desc {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: auto;
}

.store-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-border);
  padding-top: 14px;
  font-size: 12px;
  font-weight: 500;
}

.store-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-text);
}

.store-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  text-decoration: none;
}

/* ==========================================================================
   Multiplex & Kids Zone Layouts
   ========================================================================== */
.movies-today {
  margin-top: 40px;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.movie-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.movie-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.movie-poster-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.movie-info {
  padding: 16px;
}

.movie-genre {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-text);
}

.movie-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.movie-showtimes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.showtime-pill {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  background-color: var(--gray-light);
  border: 1px solid var(--gray-border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.showtime-pill:hover {
  background-color: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Kids Zone Play Cards */
.play-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.package-card {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border: 2px solid var(--orange);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.package-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.package-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 24px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--gray-text);
  font-size: 14px;
}

/* ==========================================================================
   Art Gallery & Events Layouts
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 99px;
  border: 1px solid var(--gray-border);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.gallery-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.artwork-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #fafafa;
}

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

.gallery-card:hover .artwork-img {
  transform: scale(1.05);
}

.artwork-info {
  padding: 24px;
}

.artwork-artist {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--purple);
}

.artwork-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
}

.artwork-desc {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 8px;
}

/* Events Timeline / Timeline Card Layout */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.event-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.event-card-img-wrapper {
  position: relative;
  height: 100%;
  min-height: 240px;
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.event-day {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.event-month {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-text);
}

.event-card-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta svg {
  width: 14px;
  height: 14px;
  color: var(--red);
}

.event-title {
  font-size: 26px;
  font-weight: 800;
}

.event-desc {
  font-size: 14px;
  color: var(--gray-text);
}

/* ==========================================================================
   Contact Layout & Forms
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  margin-top: 40px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-block {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(0, 166, 153, 0.08);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 700;
}

.contact-info-text {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 4px;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  border-radius: 24px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-border);
  background-color: var(--gray-light);
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 166, 153, 0.12);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-desc {
  color: #abb2be;
  font-size: 13px;
  line-height: 1.7;
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

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

.footer-link a {
  color: #abb2be;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-link a:hover {
  color: var(--teal);
  padding-left: 6px;
}

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: #abb2be;
}

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

.footer-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.social-link svg,
.social-link i {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: var(--white);
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #abb2be;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom-links a {
  color: #abb2be;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }

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

  .category-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card-img-wrapper {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .slide-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .slide-title, .welcome-heading {
    font-size: 32px;
  }

  .slide-tagline {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-stats-row {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-stat-pill {
    padding: 6px 12px;
    font-size: 12px;
  }

  .slide-actions {
    gap: 10px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   About Us Page Custom Styling
   ========================================================================== */
.about-grid-section {
  padding: 80px 0;
}

.about-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Timeline */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gradient-mix);
  transform: translateX(-50%);
  border-radius: 99px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--teal);
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -12px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -12px;
}

.timeline-item:nth-child(1) .timeline-badge { border-color: var(--teal); }
.timeline-item:nth-child(2) .timeline-badge { border-color: var(--purple); }
.timeline-item:nth-child(3) .timeline-badge { border-color: var(--red); }
.timeline-item:nth-child(4) .timeline-badge { border-color: var(--orange); }
.timeline-item:nth-child(5) .timeline-badge { border-color: var(--gold); }

.timeline-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
  overflow: hidden;
}

.timeline-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-mix);
  opacity: 0.85;
}

.timeline-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 166, 153, 0.15);
}

.timeline-year {
  font-size: 30px;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
  display: inline-block;
}

.timeline-item:nth-child(1) .timeline-year {
  background: linear-gradient(135deg, var(--teal), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.timeline-item:nth-child(2) .timeline-year {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.timeline-item:nth-child(3) .timeline-year {
  background: linear-gradient(135deg, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.timeline-item:nth-child(4) .timeline-year {
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.timeline-item:nth-child(5) .timeline-year {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid-values-list, .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-item-card, .why-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  height: 100%;
}

.value-item-card:hover, .why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--card-border-hover, var(--teal));
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--gray-bg);
  color: var(--card-icon-color, var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-box svg {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.card-desc-text {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.card-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1.5px solid var(--card-btn-color, var(--teal));
  color: var(--card-btn-color, var(--teal));
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  width: fit-content;
}

.card-btn-outline:hover {
  background-color: var(--card-btn-color, var(--teal));
  color: var(--white);
}

@media (max-width: 768px) {
  .about-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-container::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-badge {
    left: 8px !important;
  }
}

/* ==========================================================================
   Creative Full-Screen Welcome Loading Splash Page Overlay
   ========================================================================== */
body.welcome-loader-active {
  overflow: hidden !important;
}

.welcome-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  pointer-events: none;
}

.welcome-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: welcomeBgZoom 12s ease-out forwards;
}

@keyframes welcomeBgZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.02);
  }
}

.welcome-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.94) 75%, rgba(15, 23, 42, 0.98) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.welcome-particles-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(251, 191, 36, 0.15) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.6;
}

.welcome-modal-card {
  position: relative;
  z-index: 10;
  max-width: 580px;
  width: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(217, 119, 6, 0.15);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  color: #ffffff;
  animation: welcomeModalSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.welcome-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 99px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fef08a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.welcome-badge-tag svg {
  width: 14px;
  height: 14px;
  color: #fbbf24;
}

.welcome-brand {
  margin-bottom: 16px;
}

.welcome-logo-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.5);
  padding: 10px;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.3);
  animation: logoPulseGlow 3s infinite alternate ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes logoPulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
  }
  100% {
    box-shadow: 0 0 35px rgba(251, 191, 36, 0.6);
    border-color: rgba(251, 191, 36, 0.8);
  }
}

.welcome-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.welcome-brand-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  color: #ffffff;
}

.welcome-brand-title span {
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-brand-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.5px;
}

.welcome-message-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 28px;
  font-weight: 300;
}

.welcome-progress-wrapper {
  margin-bottom: 28px;
  text-align: left;
}

.welcome-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
  font-weight: 600;
}

.welcome-loading-percent {
  color: #fbbf24;
}

.welcome-progress-bar-bg {
  height: 6px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d97706, #fbbf24);
  border-radius: 99px;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}

.welcome-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.welcome-enter-btn {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
  border: 1px solid rgba(251, 191, 36, 0.5);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-enter-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.7);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.welcome-enter-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.welcome-enter-btn:hover svg {
  transform: translateX(4px);
}

.welcome-skip-btn {
  background: transparent;
  color: #9ca3af;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.welcome-skip-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .welcome-modal-card {
    padding: 30px 20px;
  }

  .welcome-brand-title {
    font-size: 30px;
  }

  .welcome-enter-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  .welcome-skip-btn {
    width: 100%;
    padding: 10px 20px;
  }
}
