/* ═══════════════════════════════════════════════════════
   DREAM DRAWER — SHOPIFY HORIZON THEME MATCHING CSS
   Exact match to: theme_export__dreamdrawer-lk-updated-copy-of-horizon
═══════════════════════════════════════════════════════ */

:root {
  /* Brand Palette from Shopify Export */
  --color-primary: #0055cc;         /* Royal Blue */
  --color-gold: #cc9933;            /* Brand Gold Accent */
  --color-amber: #e87f24;           /* Announcement Orange */
  --color-bg-light: #fafafa;
  --color-card-bg: rgba(255, 255, 255, 0.7);
  --color-text-dark: #111827;
  --color-text-muted: #6b7280;

  /* Dark Theme Overlay & Glassmorphism Tokens */
  --bg-dark: #08080b;
  --bg-card-dark: rgba(15, 15, 20, 0.85);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(204, 153, 51, 0.3);
  --shadow-glass: 0 15px 35px rgba(0, 0, 0, 0.2);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: var(--font-main);

  --header-h: 70px;
  --radius-card: 20px;
  --radius-btn: 100px;

  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;

  /* Color Palette Tokens */
  --gold-400: #eab308;
  --gold-500: #cc9933;
  --gold-600: #ca8a04;
  --text-primary: #f5f5f5;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --text-3: #6b7280;
  --bg-card: rgba(15, 15, 20, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-subtle: rgba(255, 255, 255, 0.1);

  /* Radius Scale */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Easing & Motion Tokens */
  --duration-fast: 0.15s;
  --duration-base: 0.3s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Shadows & Z-Index */
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --z-cart: 999;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: #f5f5f5;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ── ANNOUNCEMENT BAR (Runnable Infinite Marquee Ticker) ── */
.announcement-bar-horizon {
  background-color: var(--color-amber);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  z-index: 100;
  white-space: nowrap;
  user-select: none;
  cursor: pointer !important;
  box-shadow: 0 2px 10px rgba(232, 127, 36, 0.3);
  font-family: var(--font-main);
}

.announcement-bar-horizon .announcement-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeTicker 24s linear infinite;
  will-change: transform;
}

.announcement-bar-horizon:hover .announcement-track {
  animation-play-state: paused;
}

.announcement-bar-horizon .announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-right: 50px;
}

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

/* ── HEADER (Matches premium-header.liquid) ── */
.header-horizon {
  background: rgba(8, 8, 11, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  cursor: pointer !important;
  user-select: none;
}
.brand-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-link, nav a, button, .btn, a.btn, .icon-btn, .header-icon-btn {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d1d5db;
  transition: color 0.2s ease;
  cursor: pointer !important;
  user-select: none;
  -webkit-user-select: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
}

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

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}
.icon-btn:hover {
  background: rgba(204, 153, 51, 0.15);
  border-color: var(--border-gold);
  color: var(--color-gold);
}

.cart-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TRUST BADGES ROW (Matches trust-badges.liquid) ── */
.trust-badges-section {
  background: #ffffff;
  color: #111827;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 220px;
  justify-content: center;
  transition: transform 0.3s ease;
}
.trust-item:hover {
  transform: translateY(-3px);
}
.trust-icon {
  color: var(--color-primary);
  display: flex;
  align-items: center;
}
.trust-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}
.trust-text h4 {
  margin: 0 0 2px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}
.trust-text p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ── BENTO PROMO GRID SLIDER (Matches promo-grid-slider.liquid) ── */
.promo-bento-section {
  padding: 30px 20px;
  background: #f4f4f4;
}
.promo-grid-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-main-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  width: 100%;
  background: #000;
}

.promo-side-stack {
  display: flex;
  flex-direction: row;
  gap: 16px;
  height: 220px;
}

.side-banner-item {
  flex: 1;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.promo-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-main-carousel img, .side-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.promo-link-wrapper:hover img {
  transform: scale(1.04);
}

.promo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 3;
  pointer-events: none;
}

.promo-overlay-text {
  position: absolute;
  inset: 0;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 5;
  pointer-events: none;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  text-align: center;
  font-family: var(--font-main);
}
.promo-main-carousel .promo-overlay-text h3 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.promo-main-carousel .promo-overlay-text p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
}

.side-banner-item .promo-overlay-text {
  padding: 20px;
  text-align: left;
}
.side-banner-item .promo-overlay-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.side-banner-item .promo-overlay-text p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
}

/* Slider Controls */
.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.promo-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.slider-nav:hover {
  background: rgba(0,0,0,0.8);
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.slider-nav.prev { left: 16px; }
.slider-nav.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slider-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dots .dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* ── GLASS PRODUCTS CAROUSEL (Matches glassmorphism-carousel.liquid) ── */
.glass-carousel-wrapper {
  padding: 60px 20px;
  background-color: #fafafa;
  color: #111827;
  background-image: 
    radial-gradient(circle at top right, rgba(0, 85, 204, 0.06), transparent 40%),
    radial-gradient(circle at bottom left, rgba(204, 153, 51, 0.06), transparent 40%);
}
.glass-carousel-container {
  max-width: 1300px;
  margin: 0 auto;
}
.glass-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 36px;
  color: #111827;
}

.glass-scroll-area {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 4px 24px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 85, 204, 0.4) rgba(0,0,0,0.03);
}
.glass-scroll-area::-webkit-scrollbar { height: 6px; }
.glass-scroll-area::-webkit-scrollbar-thumb { background: rgba(0, 85, 204, 0.4); border-radius: 10px; }

.glass-product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.glass-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  background: #ffffff;
  border-color: rgba(204, 153, 51, 0.4);
}

.glass-image {
  width: 100%;
  height: 260px;
  background-color: #f1f2f6;
  overflow: hidden;
  position: relative;
}
.glass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.glass-product-card:hover .glass-image img {
  transform: scale(1.06);
}

.glass-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.glass-info {
  padding: 20px 16px;
  text-align: center;
}
.glass-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
  line-height: 1.3;
}
.glass-price {
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.glass-add-btn {
  width: 100%;
  padding: 10px;
  background: rgba(0, 85, 204, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(0, 85, 204, 0.2);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.glass-product-card:hover .glass-add-btn {
  background: var(--color-primary);
  color: #ffffff;
}

/* ── ANIMATED CATEGORIES GRID (Matches animated-categories.liquid) ── */
.animated-categories-section {
  padding: 60px 20px;
  max-width: 1250px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #f5f5f5;
}

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

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  display: block;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.category-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a24;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 100%);
  transition: background 0.4s ease;
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px;
  color: white;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.category-link-text {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.8;
  transition: opacity 0.4s ease;
  display: inline-block;
  color: var(--color-gold);
}

.category-card:hover .category-image {
  transform: scale(1.08);
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0, 85, 204, 0.35) 100%);
}
.category-card:hover .category-content {
  transform: translateY(0);
}
.category-card:hover .category-link-text {
  opacity: 1;
}

/* ── FOOTER (Matches footer-group.json) ── */
.footer-horizon {
  background: #050508;
  border-top: 1px solid var(--border-glass);
  padding: 60px 20px 30px;
  margin-top: auto;
}
.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-col p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
  font-size: 0.875rem;
}
.newsletter-btn {
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}
.newsletter-btn:hover {
  background: var(--color-gold);
  color: #000;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #9ca3af;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom-horizon {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: #6b7280;
}

.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.68rem;
  font-weight: 800;
  transition: all 0.2s ease;
}
.social-icons a:hover {
  background: var(--color-gold);
  color: #000;
}

/* ── RESPONSIVE & MOBILE MENU DRAWER ── */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
}
.mobile-menu-toggle svg {
  display: block;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 290px;
  height: 100vh;
  background: #0d0e15;
  border-right: 1px solid var(--border-glass);
  z-index: 1000;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}
@media (min-width: 901px) {
  .mobile-menu-drawer, .mobile-menu-overlay, .mobile-menu-toggle {
    display: none !important;
  }
}
.mobile-menu-drawer.open {
  left: 0 !important;
  display: flex !important;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 24px;
}
.mobile-menu-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e5e7eb;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .mobile-menu-toggle { display: block; }
  .header-horizon .nav-links { display: none; }
  .header-horizon .header-search-wrap { display: none; }
  .promo-main-carousel { height: 320px; }
  .promo-side-stack { height: 180px; }
  .promo-main-carousel .promo-overlay-text h3 { font-size: 1.8rem; }
  .promo-main-carousel .promo-overlay-text p { font-size: 1rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }

  /* Sleek 1-Row Mobile Trust Features */
  .trust-badges-section {
    padding: 12px 6px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
  }
  .trust-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
  .trust-item {
    flex: 1 1 33% !important;
    min-width: 0 !important;
    gap: 4px !important;
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 2px !important;
  }
  .trust-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .trust-text h4 {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.1 !important;
  }
  .trust-text p {
    font-size: 0.62rem !important;
    color: #6b7280 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.1 !important;
  }

  /* Mobile Bento Banners Grid & Overflow Removal */
  .promo-bento-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    gap: 12px;
  }
  .promo-main-carousel {
    height: 220px;
    width: 100%;
  }
  .promo-side-stack {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: hidden;
    width: 100%;
  }
  .side-banner-item {
    height: 130px;
    width: 100%;
  }
  .glass-product-card { flex: 0 0 220px; }
  .glass-image { height: 200px; }
  .footer-container { grid-template-columns: 1fr; }
}

/* ── ANIMATED CATEGORIES GRID STYLING (FULL-WIDTH SEAMLESS INTEGRATION) ── */
.animated-categories-section {
  background: #08080b !important;
  color: #f5f5f5 !important;
  padding: 60px 20px;
  width: 100%;
}
.animated-categories-section .section-title {
  font-family: var(--font-accent, 'Bebas Neue', sans-serif) !important;
  font-size: clamp(2.2rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  text-align: center !important;
  color: #ffffff !important;
  margin-bottom: 40px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}
.categories-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.1));
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border-color: var(--color-gold, #cc9933);
}
.category-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.category-card:hover .category-image {
  transform: scale(1.06);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
}
.category-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.category-title {
  font-family: var(--font-accent, 'Bebas Neue', sans-serif) !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .category-card {
    height: 260px;
    border-radius: 20px;
  }
  .category-title {
    font-size: 1.8rem !important;
  }
}
