/* ═══════════════════════════════════════════════════════════════════════════════
   TORKY ART GALLERY — Premium CSS
   Design System: Royal Green + Gold Accents | Arabic RTL
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────────────────────────────────── */
:root {
  /* Royal Green Palette */
  --green-950: #020D04;
  --green-900: #041508;
  --green-850: #071C0C;
  --green-800: #0A2410;
  --green-700: #0F3318;
  --green-600: #154520;
  --green-500: #1C5929;
  --green-400: #246E34;
  --green-300: #2E8541;
  --green-200: #3DA055;
  --green-100: #5BB870;

  /* Gold Accents */
  --gold-900: #6B4F1A;
  --gold-800: #956E24;
  --gold-700: #B8892D;
  --gold-600: #C9A84C;
  --gold-500: #D4B96A;
  --gold-400: #DFC98A;
  --gold-300: #E8D9AF;

  /* Typography */
  --font-primary: 'Tajawal', sans-serif;
  --font-display: 'Amiri', serif;

  /* Spacing */
  --container-max: 1400px;
  --section-gap: clamp(80px, 10vw, 140px);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ──────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--green-950);
  color: #e8f0ea;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* ─── Utility ────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
}

.hidden {
  display: none !important;
}

.gold-text {
  color: var(--gold-600);
}

/* ─── Page Loader ────────────────────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-950);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo-img {
  height: 120px;
  width: auto;
  animation: pulseLogo 2s ease-in-out infinite;
  margin-bottom: 16px;
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.5));
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.loader-text {
  font-family: var(--font-display);
  color: var(--gold-600);
  font-size: 1.2rem;
  margin-top: 16px;
  letter-spacing: 0.1em;
  animation: pulse 2s ease infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

@keyframes dashDraw {

  0%,
  100% {
    stroke-dashoffset: 120;
    opacity: 1;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(4, 21, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
  transition: transform 0.3s ease;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  color: rgba(232, 240, 234, 0.75);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold-600);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  left: 14%;
  right: 14%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-600);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(2, 13, 4, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(232, 240, 234, 0.6);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-nav-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open .mobile-nav-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.open .mobile-nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.open .mobile-nav-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.open .mobile-nav-link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav-link:hover {
  color: var(--gold-600);
  transform: scale(1.05);
}

/* ─── Hero Section ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(21, 69, 32, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--green-950) 0%, var(--green-900) 50%, var(--green-950) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px clamp(16px, 4vw, 60px) 60px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold-500);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-600);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.45;
  margin-bottom: 28px;
}

.title-line {
  display: block;
  font-size: clamp(60px, 10vw, 120px);
  color: rgba(232, 240, 234, 0.95);
  font-weight: 700;
  animation: fadeInUp 0.9s var(--ease-out) both;
}

.title-line.line-1 {
  animation-delay: 0.1s;
}

.title-line.line-2 {
  animation-delay: 0.2s;
  font-size: clamp(80px, 14vw, 160px);
}

.title-line.line-3 {
  animation-delay: 0.3s;
  font-size: clamp(40px, 6vw, 80px);
  opacity: 0.7;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(232, 240, 234, 0.6);
  line-height: 1.9;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s var(--ease-out) 0.4s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s var(--ease-out) 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
  color: var(--green-950);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-400);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-600);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 0.9s var(--ease-out) 0.6s both;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-600);
  font-family: var(--font-display);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(232, 240, 234, 0.45);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: rgba(232, 240, 234, 0.3);
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── Section Shared ──────────────────────────────────────────────────────────── */
.featured-section,
.gallery-section,
.about-section,
.contact-section {
  padding: var(--section-gap) 0;
}

.featured-section {
  background: var(--green-900);
}

.gallery-section {
  background: var(--green-950);
}

.about-section {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-850) 100%);
}

.contact-section {
  background: var(--green-950);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-tag {
  display: inline-block;
  color: var(--gold-600);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold-600);
  opacity: 0.5;
}

.section-tag::before {
  right: 0;
}

.section-tag::after {
  left: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: rgba(232, 240, 234, 0.95);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(232, 240, 234, 0.45);
  max-width: 550px;
  margin: 0 auto;
}

/* ─── Featured Grid ───────────────────────────────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

/* ─── Artwork Cards ───────────────────────────────────────────────────────────── */
.artwork-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--green-800);
  border: 1px solid rgba(201, 168, 76, 0.08);
  cursor: pointer;
  transition: all 0.5s var(--ease-smooth);
}

.artwork-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-700);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.artwork-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 13, 4, 0.9) 0%, rgba(2, 13, 4, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artwork-card:hover .card-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  transform: scale(0.7);
  transition: transform 0.4s var(--ease-spring);
}

.artwork-card:hover .overlay-icon {
  transform: scale(1);
}

.card-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
  color: var(--green-950);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.card-body {
  padding: 20px 20px 24px;
}

.card-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(232, 240, 234, 0.92);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.85rem;
  color: rgba(232, 240, 234, 0.4);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.card-year {
  font-size: 0.78rem;
  color: rgba(232, 240, 234, 0.3);
}

.card-expand {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  font-size: 1rem;
  transition: all 0.3s var(--ease-spring);
}

.card-expand:hover {
  background: var(--gold-600);
  color: var(--green-950);
  transform: scale(1.1);
}

/* ─── Gallery Grid ────────────────────────────────────────────────────────────── */
.filter-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: rgba(15, 51, 24, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.8rem;
  color: rgba(232, 240, 234, 0.4);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: rgba(232, 240, 234, 0.5);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-400);
}

.filter-btn.active {
  background: var(--gold-600);
  color: var(--green-950);
  border-color: var(--gold-600);
  font-weight: 700;
}

.filter-select {
  background: rgba(7, 28, 12, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: rgba(232, 240, 234, 0.7);
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  direction: rtl;
}

.filter-select:focus {
  border-color: var(--gold-600);
}

.filter-select option {
  background: var(--green-900);
}

.filter-results {
  margin-right: auto;
  font-size: 0.85rem;
  color: rgba(232, 240, 234, 0.35);
  font-weight: 500;
}

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

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

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

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(232, 240, 234, 0.35);
}

.gallery-empty .empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.gallery-empty h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* ─── Skeleton Loading ────────────────────────────────────────────────────────── */
.loading-skeleton {
  display: contents;
}

.sk {
  background: linear-gradient(90deg, var(--green-800) 25%, var(--green-700) 50%, var(--green-800) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 20px;
}

.sk-card {
  height: 380px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ─── About Section ───────────────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-frame {
  position: relative;
  width: min(380px, 90vw);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: rgba(232, 240, 234, 0.3);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: var(--green-800);
}

.about-frame-border {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--gold-600);
  border-radius: 32px;
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.35), inset 0 0 15px rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(232, 240, 234, 0.65);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-skills {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-name {
  font-size: 0.85rem;
  color: rgba(232, 240, 234, 0.7);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.skill-bar {
  height: 4px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-500));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.2s var(--ease-smooth);
}

.skill-fill.animated {
  transform: scaleX(1);
}

/* ─── Contact Section ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(15, 51, 24, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  background: rgba(15, 51, 24, 0.5);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-600);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--gold-600);
  color: var(--green-950);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: rgba(232, 240, 234, 0.85);
}

.contact-card a {
  font-size: 0.9rem;
  color: rgba(232, 240, 234, 0.4);
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--gold-500);
}

/* ─── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--green-950);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(232, 240, 234, 0.6);
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
}



.footer-copy {
  font-size: 0.8rem;
  color: rgba(232, 240, 234, 0.25);
  margin: 0;
}

.developer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(232, 240, 234, 0.35);
}

.developer-info span {
  letter-spacing: 0.05em;
}

.hiemosoft-logo {
  height: 38px;
  width: auto;
  opacity: 0.85;
  transition: all 0.3s ease;
  display: block;
}

.hiemosoft-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hiemosoft-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(232, 240, 234, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hiemosoft-link:hover {
  color: var(--gold-500);
}

.hiemosoft-text {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─── Lightbox ────────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(2, 13, 4, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

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

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  padding: 20px;
}

@media (min-width: 768px) {
  .lightbox-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.lightbox-img-wrap {
  flex-shrink: 0;
  max-width: min(70vw, 900px);
  max-height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-img-wrap img {
  max-height: 80vh;
  max-width: 70vw;
  object-fit: contain;
  width: auto;
}

.lightbox-info {
  min-width: 240px;
  max-width: 300px;
  padding: 12px;
}

.lightbox-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(232, 240, 234, 0.95);
  margin-bottom: 16px;
  line-height: 1.3;
}

.lb-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lb-tag {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-500);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

.lb-year {
  font-size: 0.8rem;
  color: rgba(232, 240, 234, 0.3);
}

#lb-desc,
#slb-desc {
  font-size: 0.9rem;
  color: rgba(232, 240, 234, 0.5);
  line-height: 1.8;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 240, 234, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--gold-600);
  color: var(--green-950);
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

/* ─── Web Store Full Page Modal – Dark Futuristic Product View ─────────────── */
#store-lightbox {
  background:
    radial-gradient(circle at top left, var(--green-900) 0%, var(--green-950) 35%, #000000 80%);
  backdrop-filter: blur(26px);
  align-items: stretch;
  z-index: 900;
  /* Placed below navbar (1000) so header is visible */
}

#store-lightbox .lightbox-content {
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  padding-top: 110px;
  /* Space for navbar */
  box-sizing: border-box;
  margin: 0;
  display: flex;
  flex-direction: row;
  /* In RTL, 1st child (Info) is Right, 2nd (Image) is Left */
  align-items: center;
  gap: 0;
}

#store-lightbox .lightbox-img-wrap {
  position: relative;
  flex: 1 1 50%;
  height: 100%;
  max-width: 50vw;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background:
    radial-gradient(circle at top, var(--green-800) 0%, var(--green-950) 55%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

#store-lightbox .lightbox-img-wrap img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 0 40px rgba(46, 133, 65, 0.5));
}

.slb-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(4, 21, 8, 0.9);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(2, 13, 4, 0.9);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

.slb-img-nav.slb-prev {
  inset-inline-start: 24px;
}

.slb-img-nav.slb-next {
  inset-inline-end: 24px;
}

.slb-img-nav:hover {
  background: rgba(10, 36, 16, 0.95);
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 16px 40px rgba(2, 13, 4, 1);
}

#store-lightbox .lightbox-info {
  flex: 1 1 50%;
  height: 100%;
  max-width: 50vw;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* RTL: Right aligned content */
  text-align: right;
}

#store-lightbox #slb-title {
  font-family: var(--font-primary, system-ui, sans-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

#store-lightbox #slb-desc {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 20px;
  line-height: 1.9;
}

.slb-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 22px;
}

.slb-thumb {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 36, 16, 0.9);
  background: rgba(4, 21, 8, 0.9);
  padding: 0;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out, opacity 0.15s ease-out;
  opacity: 0.7;
}

.slb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slb-thumb--active {
  border-color: rgba(91, 184, 112, 0.9);
  box-shadow: 0 4px 12px rgba(2, 13, 4, 0.5);
  filter: drop-shadow(0 0 14px rgba(91, 184, 112, 0.85));
  transform: translateY(-2px);
  opacity: 1;
}

.slb-thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}

#store-lightbox .store-price-row {
  margin: 8px 0 28px 0 !important;
  justify-content: flex-start !important;
  gap: 16px;
}

#store-lightbox #slb-current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fefce8;
  text-shadow: 0 0 18px rgba(250, 250, 210, 0.25);
}

#store-lightbox #slb-old-price {
  font-size: 1rem;
  color: rgba(148, 163, 184, 0.7);
  text-decoration: line-through;
}

/* Quantity Selector – pill with + / - buttons */
.slb-qty-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.qty-label {
  font-size: 0.95rem;
  color: #9ca3af;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(4, 21, 8, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  backdrop-filter: blur(14px);
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0, rgba(91, 184, 112, 0.35), rgba(4, 21, 8, 0.95));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 1.2rem;
  cursor: pointer;
  filter: drop-shadow(0 0 12px rgba(91, 184, 112, 0.7));
  transition: transform 0.18s ease-out, filter 0.18s ease-out, background 0.18s ease-out;
  font-weight: 600;
}

#slb-qty-minus.qty-btn {
  background: rgba(4, 21, 8, 0.9);
  box-shadow: none;
  filter: none;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.qty-btn:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 18px rgba(91, 184, 112, 0.85));
}

#slb-qty-minus.qty-btn:hover {
  filter: drop-shadow(0 0 8px rgba(148, 163, 184, 0.4));
}

#slb-qty-val {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  min-width: 40px;
  text-align: center;
}

/* Main CTA button – glowing pill (Royal Green + Gold) */
#store-lightbox .btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 0 0, var(--green-100), var(--green-300) 55%, var(--green-500) 100%);
  color: #020D04;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.16s ease-out, filter 0.16s ease-out;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(2, 13, 4, 0.4);
  filter: drop-shadow(0 0 20px rgba(91, 184, 112, 0.8));
  min-width: 160px;
  width: 100%;
  max-width: 280px;
}

#store-lightbox .btn-order:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05) drop-shadow(0 0 26px rgba(91, 184, 112, 1));
  box-shadow: 0 10px 28px rgba(2, 13, 4, 0.5);
}

#store-lightbox .btn-order:active {
  transform: translateY(0) scale(0.99);
  filter: drop-shadow(0 0 14px rgba(91, 184, 112, 0.85));
  box-shadow: 0 6px 20px rgba(2, 13, 4, 0.4);
}

@media (max-width: 900px) {
  #store-lightbox .lightbox-content {
    flex-direction: column-reverse;
    /* Image top, Info bottom */
    overflow-y: auto;
    justify-content: flex-start;
  }

  #store-lightbox .lightbox-img-wrap {
    flex: none;
    width: 100vw;
    height: 50vh;
    max-width: 100vw;
    padding: 20px;
  }

  #store-lightbox .lightbox-info {
    flex: none;
    width: 100vw;
    height: auto;
    max-width: 100vw;
    padding: 40px 20px;
    align-items: flex-start;
    text-align: right;
  }

  #store-lightbox #slb-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  #store-lightbox .lightbox-img-wrap {
    height: 45vh;
    padding: 12px;
  }

  #store-lightbox .lightbox-info {
    padding: 24px 16px 32px;
  }

  #store-lightbox #slb-title {
    font-size: 1.6rem;
  }

  #store-lightbox #slb-desc {
    font-size: 0.9rem;
  }

  #store-lightbox #slb-current-price {
    font-size: 1.5rem;
  }

  .slb-qty-row {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }

  .slb-thumbs {
    gap: 6px;
  }

  .slb-thumb {
    width: 44px;
    height: 44px;
  }

  #store-lightbox .btn-order {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 140px;
  }

  .slb-img-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .slb-img-nav.slb-prev {
    inset-inline-start: 12px;
  }

  .slb-img-nav.slb-next {
    inset-inline-end: 12px;
  }
}

@media (max-width: 400px) {
  #store-lightbox .lightbox-img-wrap {
    height: 40vh;
    padding: 8px;
  }

  #store-lightbox .lightbox-info {
    padding: 20px 12px 24px;
  }

  #store-lightbox #slb-title {
    font-size: 1.4rem;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
  }
}

#store-lightbox .lightbox-close {
  z-index: 2010;
  top: 110px;
  /* Moved down below the navbar */
  background: rgba(4, 21, 8, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  backdrop-filter: blur(10px);
}

#store-lightbox .lightbox-close:hover {
  background: rgba(10, 36, 16, 0.95);
}

/* ─── Keyframes ───────────────────────────────────────────────────────────────── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─── Card Animation on Load ─────────────────────────────────────────────────── */
.artwork-card {
  animation: fadeIn 0.6s var(--ease-out) both;
}

/* ─── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    height: 30px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .filter-panel {
    padding: 16px;
    gap: 12px;
  }

  .filter-results {
    margin-right: 0;
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 60vh;
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }
}

/* ─── Particles ─────────────────────────────────────────────────────────────── */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold-600);
  opacity: 0;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1);
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-200px) scale(0.5);
  }
}

/* ─── Scroll Reveal ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURED BANNER SLIDER
   ═══════════════════════════════════════════════════════════════════════════════ */

.featured-banner-section {
  background: var(--green-950);
  padding: var(--section-gap) 0 calc(var(--section-gap) * 0.6);
  overflow: hidden;
}

.banner-header {
  text-align: center;
  padding-bottom: clamp(32px, 5vw, 56px);
}

/* ─── Slider container ───────────────────────────────────────────────────────── */
.banner-slider {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

/* Track — slides side-by-side */
.banner-track {
  display: flex;
  transition: transform 0.75s var(--ease-smooth);
  will-change: transform;
}

/* ─── Individual Slide ───────────────────────────────────────────────────────── */
.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  height: clamp(420px, 55vw, 660px);
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
}

/* Background image fills slide */
.banner-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s linear;
}

.banner-slide.active .banner-slide-bg {
  transform: scale(1.06);
}

/* Dark gradient overlay */
.banner-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(2, 13, 4, 0.85) 0%, rgba(2, 13, 4, 0.2) 60%, transparent 100%),
    linear-gradient(to top, rgba(2, 13, 4, 0.9) 0%, transparent 50%);
}

/* Info panel — bottom-right (RTL: bottom-left visually = inline-start) */
.banner-slide-info {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: min(520px, 90%);
  padding: clamp(28px, 5vw, 52px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--ease-out) 0.2s;
}

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

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
  color: var(--green-950);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: rgba(232, 240, 234, 0.97);
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.banner-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.banner-cat {
  font-size: 0.82rem;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.banner-year {
  font-size: 0.8rem;
  color: rgba(232, 240, 234, 0.35);
}

.banner-desc {
  font-size: clamp(0.85rem, 1.4vw, 0.98rem);
  color: rgba(232, 240, 234, 0.55);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 420px;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 28px;
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-400);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-spring);
  font-family: var(--font-primary);
}

.banner-cta:hover {
  background: var(--gold-600);
  color: var(--green-950);
  border-color: var(--gold-600);
  transform: translateX(-4px);
}

/* ─── Slide counter badge (top-right) ───────────────────────────────────────── */
.banner-counter {
  position: absolute;
  top: 28px;
  inset-inline-end: 28px;
  font-size: 0.8rem;
  color: rgba(232, 240, 234, 0.4);
  display: flex;
  align-items: baseline;
  gap: 4px;
  z-index: 5;
}

.banner-counter .current {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-600);
  line-height: 1;
}

.banner-counter .total {
  font-size: 0.75rem;
  color: rgba(232, 240, 234, 0.25);
}

/* ─── Navigation arrows ──────────────────────────────────────────────────────── */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(2, 13, 4, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-spring);
}

.banner-nav:hover {
  background: var(--gold-600);
  color: var(--green-950);
  border-color: var(--gold-600);
  transform: translateY(-50%) scale(1.1);
}

.banner-prev {
  inset-inline-start: clamp(12px, 3vw, 36px);
}

.banner-next {
  inset-inline-end: clamp(12px, 3vw, 36px);
}

/* ─── Dot indicators ─────────────────────────────────────────────────────────── */
.banner-dots {
  position: absolute;
  bottom: 28px;
  inset-inline-end: clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
}

.banner-dot.active {
  width: 28px;
  border-radius: 3px;
  background: var(--gold-600);
  border-color: var(--gold-600);
}

/* ─── Progress bar (hidden — removed per design) ────────────────────────────── */
.banner-progress,
.banner-progress-fill {
  display: none;
}

/* ─── Skeleton before data loads ─────────────────────────────────────────────── */
.banner-skeleton {
  flex: 0 0 100%;
  height: clamp(420px, 55vw, 660px);
  border-radius: 24px;
  background: linear-gradient(90deg, var(--green-800) 25%, var(--green-700) 50%, var(--green-800) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.bs-shimmer {
  width: 100%;
  height: 100%;
}

/* ─── Empty state ────────────────────────────────────────────────────────────── */
.banner-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: rgba(232, 240, 234, 0.25);
  font-size: 0.95rem;
  text-align: center;
  padding: 20px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .banner-slide {
    height: clamp(300px, 70vw, 460px);
    border-radius: 16px;
  }

  .banner-slider {
    width: 95%;
    border-radius: 16px;
  }

  .banner-slide-info {
    width: 100%;
    padding: 24px 20px;
  }

  .banner-prev {
    inset-inline-start: 8px;
  }

  .banner-next {
    inset-inline-end: 8px;
  }

  .banner-nav {
    width: 40px;
    height: 40px;
  }

  .banner-counter {
    top: 16px;
    inset-inline-end: 16px;
  }

  .banner-dots {
    bottom: 16px;
    inset-inline-end: 16px;
  }
}

/* ═══════════════════════════════ STORE SECTION ════════════════════════════════ */
.store-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--g950), var(--g900));
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.store-card {
  background: rgba(14, 16, 25, 0.8);
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 32px;
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.store-img-wrap {
  width: 100%;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 40px;
}

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

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

.store-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.store-info {
  padding: 24px 24px 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-info h3 {
  font-family: var(--font-primary, system-ui, sans-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.store-desc {
  display: none;
}

.store-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.old-price {
  font-size: 1rem;
  color: rgba(232, 240, 234, 0.4);
  text-decoration: line-through;
}

.current-price {
  font-size: 1.1rem;
  font-weight: 400;
  color: #d1d5db;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  width: 90%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-order:hover {
  background: #e5e7eb;
  transform: scale(1.02);
}