/* ============================================
   WOODENMAX - STATIC THEME CSS
   Complete Theme with Colors & Animations
   ============================================ */

/* --- CSS Variables (Theme Colors) --- */
:root {
  /* Primary Colors - Soft Gold for Hover */
  --gold-400: #d4af37;
  --gold-500: #c9a227;
  --gold-600: #b8941a;
  --obsidian: #000000;
  
  /* Soft Grey for Buttons */
  --soft-grey: #4a4a4a;
  --soft-grey-hover: #5a5a5a;
  --soft-grey-light: #6a6a6a;
  
  /* Slate Colors */
  --slate-200: #ffffff;
  --slate-300: #f5f5f5;
  --slate-400: #e0e0e0;
  --slate-500: #b0b0b0;
  --slate-600: #808080;
  --slate-700: #505050;
  --slate-800: #303030;
  --slate-900: #1a1a1a;
  --slate-950: #000000;
  
  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Global image responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Image optimization */
img[loading="lazy"] {
  content-visibility: auto;
}

/* Prevent layout shift for images */
img:not([width]):not([height]) {
  aspect-ratio: attr(width) / attr(height);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background-color: rgba(245, 158, 11, 0.3);
  color: var(--gold-400);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--slate-900);
}
::-webkit-scrollbar-thumb {
  background: var(--slate-700);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--slate-600);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: white;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* --- Utility Classes --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Responsive text */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem !important;
  }
  
  .slide-title {
    font-size: 2rem !important;
  }
  
  .slide-description {
    font-size: 0.95rem !important;
  }
  
  .slide-subtitle {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem !important;
  }
  
  .slide-title {
    font-size: 1.5rem !important;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
}

/* Glass Panel Effect */
.glass-panel {
  background: #1a1a1a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

/* Text Colors */
.text-white { color: white; }
.text-gold-400 { color: var(--gold-400); }
.text-gold-500 { color: var(--gold-500); }
.text-gold-600 { color: var(--gold-600); }
.text-slate-200 { color: var(--slate-200); }
.text-slate-300 { color: var(--slate-300); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }

/* Background Colors */
.bg-obsidian { background-color: var(--obsidian); }
.bg-slate-900 { background-color: var(--slate-900); }
.bg-slate-950 { background-color: var(--slate-950); }
.bg-gold-500 { background-color: var(--gold-500); }
.bg-gold-600 { background-color: var(--gold-600); }

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--soft-grey);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 74, 74, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--soft-grey-hover);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--soft-grey);
  color: white;
  border: 1px solid var(--soft-grey-light);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--soft-grey-hover);
  border-color: var(--gold-400);
  color: var(--gold-400);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--gold-400);
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: var(--gold-400);
  color: #000000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s ease;
  padding: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 50%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.navbar-content {
  display: flex;
  align-items: center;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  z-index: 101;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold-400);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
  transform: rotate(45deg);
  transition: transform 0.7s ease;
  box-sizing: border-box;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: rotate(-45deg);
  transition: transform 0.7s ease;
  display: block;
}

.navbar-logo:hover .logo-icon img {
  transform: rotate(-90deg);
}

.navbar-logo:hover .logo-icon {
  transform: rotate(90deg);
}

.logo-icon span {
  color: var(--gold-400);
  font-weight: bold;
  font-size: 1.25rem;
  transform: rotate(-45deg);
  transition: transform 0.7s ease;
}

.navbar-logo:hover .logo-icon span {
  transform: rotate(-90deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.025em;
}

.logo-text .tagline {
  color: var(--slate-400);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Desktop Navigation */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-right: 2rem;
}

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: white;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--gold-400);
}

.nav-dropdown-trigger svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* Category Carousel in Header */
.category-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  max-width: 500px;
  padding: 0 0.25rem;
}

.carousel-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-400);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  flex-shrink: 0;
  opacity: 0.6;
}

.carousel-nav:hover {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
  border-color: rgba(245, 158, 11, 0.3);
  opacity: 1;
  transform: scale(1.08);
}

.carousel-nav:active {
  transform: scale(0.92);
  background: var(--gold-500);
  color: #000;
  transition: all 0.15s ease;
}

.category-carousel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  /* Disable native scroll-behavior - we use custom JS animation for wheel effect */
  scroll-behavior: auto;
  /* Prevent initial flash/bounce */
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-carousel::-webkit-scrollbar {
  display: none;
}

.cat-item {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: var(--slate-400);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 20px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.4;
  filter: blur(0.5px);
  transform: scale(0.88);
  /* Wheel rotation smooth transition - very gentle like spinning wheel */
  transition: 
    all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform, opacity, filter, background;
}

.cat-item.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  font-weight: 600;
  opacity: 1;
  filter: blur(0);
  transform: scale(1.12);
  box-shadow: 
    0 4px 20px rgba(245, 158, 11, 0.4),
    0 0 40px rgba(245, 158, 11, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--gold-400);
  z-index: 10;
}

.cat-item.near {
  opacity: 0.75;
  filter: blur(0);
  transform: scale(0.96);
  color: var(--slate-200);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.cat-item:hover:not(.active) {
  color: var(--gold-400);
  opacity: 0.9;
  filter: blur(0);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.1);
  transform: scale(0.98);
}

/* Clone items for infinite wheel - inherit all styles from .cat-item */

@media (max-width: 1200px) {
  .category-carousel-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 1024px) {
  .category-carousel-wrapper {
    display: none;
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 750px;
  max-width: calc(100vw - 2rem);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transform-origin: top right;
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 99;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-header span {
  color: var(--gold-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: bold;
}

.dropdown-header a {
  font-size: 0.75rem;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-header a:hover {
  color: white;
}

.dropdown-content {
  padding: 2rem;
}

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

@media (max-width: 1200px) {
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
  }
  
  .dropdown-content {
    padding: 1.5rem;
  }
}

.dropdown-item {
  padding: 0.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-item h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  font-family: var(--font-sans);
  transition: color 0.3s ease;
}

.dropdown-item:hover h4 {
  color: var(--gold-400);
}

.dropdown-footer {
  background: rgba(217, 119, 6, 0.1);
  padding: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-footer p {
  color: var(--slate-400);
  font-size: 0.75rem;
}

.dropdown-footer a {
  color: var(--gold-400);
}

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

/* CTA Button in Navbar */
.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta { display: flex; }
}

.nav-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-600);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.3);
}

.nav-cta a:hover {
  background: var(--gold-500);
  box-shadow: 0 0 25px rgba(217, 119, 6, 0.5);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: var(--slate-200);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle:hover,
.mobile-toggle:active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.mobile-toggle svg {
  pointer-events: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--obsidian);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-bg {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.mobile-menu-bg.top-right {
  top: 0;
  right: 0;
  background: rgba(217, 119, 6, 0.1);
  transform: translate(50%, -50%);
}

.mobile-menu-bg.bottom-left {
  bottom: 0;
  left: 0;
  background: rgba(30, 58, 138, 0.1);
  transform: translate(-50%, 50%);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 7rem 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-nav-item {
  display: block;
  padding: 1rem;
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--slate-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(32px);
  opacity: 0;
  transition: all 0.7s ease, padding-left 0.3s ease;
}

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

.mobile-nav-item:nth-child(1) { transition-delay: 100ms; }
.mobile-nav-item:nth-child(2) { transition-delay: 200ms; }
.mobile-nav-item:nth-child(3) { transition-delay: 300ms; }
.mobile-nav-item:nth-child(4) { transition-delay: 400ms; }

.mobile-nav-item:hover {
  color: var(--gold-400);
  padding-left: 1.5rem;
}

/* Mobile Accordion */
.mobile-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transform: translateY(32px);
  opacity: 0;
  transition: all 0.7s ease;
  transition-delay: 200ms;
}

.mobile-menu.active .mobile-accordion {
  transform: translateY(0);
  opacity: 1;
}

.mobile-accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--slate-200);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-accordion-trigger:hover {
  color: var(--gold-400);
}

.mobile-accordion-trigger svg {
  color: var(--slate-500);
  transition: transform 0.5s ease, color 0.3s ease;
}

.mobile-accordion.open .mobile-accordion-trigger svg {
  transform: rotate(180deg);
  color: var(--gold-400);
}

.mobile-accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding-left: 1rem;
}

.mobile-accordion.open .mobile-accordion-content {
  max-height: 1200px;
  opacity: 1;
  padding-bottom: 1rem;
}

/* Mobile Category Grid */
.mobile-category-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-500);
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
}

.mobile-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0.5rem 0 1rem;
}

.mobile-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  color: var(--slate-300);
  font-size: 0.65rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-cat-item:hover, .mobile-cat-item:active {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.mobile-cat-icon {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.mobile-accordion-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--slate-300);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-accordion-item:hover {
  color: var(--gold-400);
  border-left-color: var(--gold-500);
}

.mobile-view-all {
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.mobile-view-all a {
  font-size: 0.75rem;
  color: var(--gold-500);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  transform: translateY(32px);
  opacity: 0;
  transition: all 0.7s ease;
  transition-delay: 500ms;
}

.mobile-menu.active .mobile-menu-footer {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-footer a.cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--gold-600);
  color: white;
  padding: 1rem;
  border-radius: 2px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
}

.mobile-menu-footer .copyright {
  margin-top: 2rem;
  text-align: center;
  color: var(--slate-600);
  font-size: 0.75rem;
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: var(--obsidian);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

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

.slide-image-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s linear;
}

.slide.active .slide-image {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.6) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  padding-top: 100px;
}

.slide-content-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.slide-subtitle {
  display: inline-block;
  color: var(--gold-400);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  transition-delay: 0.3s;
}

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

.slide-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  transition-delay: 0.5s;
}

@media (min-width: 768px) {
  .slide-title { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
  .slide-title { font-size: 6rem; }
}

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

.slide-description {
  color: var(--slate-200);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  transition-delay: 0.7s;
}

@media (min-width: 768px) {
  .slide-description { font-size: 1.25rem; }
}

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

.slide-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  transition-delay: 0.9s;
}

@media (min-width: 640px) {
  .slide-buttons { flex-direction: row; }
}

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

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

@media (min-width: 768px) {
  .slider-arrow { display: block; }
}

.slider-arrow:hover {
  color: white;
  background: var(--gold-600);
}

.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

.slider-arrow svg {
  transition: transform 0.3s ease;
}

.slider-arrow.prev:hover svg { transform: translateX(-4px); }
.slider-arrow.next:hover svg { transform: translateX(4px); }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  height: 4px;
  border-radius: 9999px;
  transition: all 0.5s ease;
  cursor: pointer;
  border: none;
  width: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  position: relative;
}

.section-label {
  color: var(--gold-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

.section-divider {
  height: 4px;
  width: 80px;
  background: var(--gold-600);
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--slate-950);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-title span {
  color: var(--slate-500);
  font-style: italic;
}

.about-text {
  color: var(--slate-400);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.about-link:hover {
  color: var(--gold-400);
}

.about-cards-container {
  position: relative;
}

.about-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(168, 85, 247, 0.2));
  filter: blur(32px);
  border-radius: 50%;
  opacity: 0.5;
}

.about-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 2px;
}

.about-card svg {
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--slate-500);
  font-size: 0.875rem;
}

.about-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.8;
}

/* Fix for img elements with about-card class */
img.about-card {
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.85;
}

.about-cards > div:first-child {
  margin-top: 2rem;
}

/* About Section Responsive */
@media (max-width: 1024px) {
  .about-cards {
    gap: 0.75rem;
  }
  
  .about-card {
    padding: 1rem;
  }
  
  img.about-card {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-grid {
    gap: 2rem;
  }
  
  .about-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .about-card {
    padding: 0.75rem;
  }
  
  .about-card h3 {
    font-size: 0.9rem;
  }
  
  .about-card p {
    font-size: 0.75rem;
  }
  
  .about-card svg {
    width: 24px;
    height: 24px;
  }
  
  img.about-card {
    height: 120px;
  }
  
  .about-cards > div:first-child {
    margin-top: 1rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  img.about-card {
    height: 150px;
  }
  
  .about-cards > div:first-child {
    margin-top: 0;
  }
  
  .about-cards > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--obsidian);
  position: relative;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

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

.stat-item {
  padding: 1rem;
  cursor: default;
}

.stat-value {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--gold-500);
  margin-bottom: 0.5rem;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .stat-value { font-size: 3rem; }
}

.stat-item:hover .stat-value {
  transform: scale(1.1);
}

.stat-label {
  color: var(--slate-400);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Stats Responsive */
@media (max-width: 480px) {
  .stat-value {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
  
  .stats-section {
    padding: 3rem 0;
  }
  
  .stats-grid {
    gap: 1rem;
  }
}

/* Featured Products Section */
.featured-section {
  padding: 6rem 0;
  background: var(--obsidian);
}

.featured-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

.view-all-btn {
  margin-top: 3rem;
  text-align: center;
}

/* Product Card */
.product-card {
  display: block;
  height: 100%;
  transition: transform 0.5s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card-inner {
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.product-card:hover .product-card-inner {
  box-shadow: 0 10px 40px -10px rgba(251, 191, 36, 0.1);
}

.product-image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--slate-950) 0%, transparent 50%, transparent 100%);
  opacity: 0.8;
}

.product-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-title-row {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.product-title-row h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.product-arrow {
  background: var(--gold-500);
  padding: 0.5rem;
  border-radius: 50%;
  color: white;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
}

.product-card:hover .product-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Product Cards Responsive */
@media (max-width: 768px) {
  .product-image-container {
    aspect-ratio: 16/10;
  }
  
  .product-title-row h3 {
    font-size: 1rem;
  }
  
  .product-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }
  
  .product-content {
    padding: 1rem;
  }
  
  .product-features {
    padding-top: 0.75rem;
  }
  
  .product-feature {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    gap: 1rem;
  }
  
  .product-card:hover {
    transform: translateY(-4px);
  }
}

.product-content {
  padding: 1.5rem;
}

.product-description {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}

.product-features {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.product-feature svg {
  color: #ffffff;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.product-feature:hover svg {
  color: #d4af37;
}

/* ============================================
   PRODUCT DETAIL PAGE - CONFIGURE OPTIONS
   ============================================ */
.product-options {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-options h3 {
  color: var(--slate-200);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.option-group {
  margin-bottom: 1rem;
}

.option-group label {
  display: block;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-btn {
  padding: 0.5rem 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.5rem;
  color: var(--slate-300);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  font-weight: 400;
}

.option-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.option-btn.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-color: var(--gold-500);
  color: #000;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.option-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Category Grid Section */
.category-section {
  padding: 6rem 0;
  background: #050b1f;
  position: relative;
  overflow: hidden;
}

.category-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(245, 158, 11, 0.05);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  display: block;
}

.category-card.large {
  height: 400px;
}

@media (min-width: 1024px) {
  .category-card.large { grid-column: span 2; }
}

.category-card.medium {
  height: 400px;
}

.category-card.small {
  height: 300px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 1s ease, opacity 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.category-card.small .category-card-overlay {
  padding: 1.5rem;
}

.category-card h3 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.category-card.medium h3,
.category-card.small h3 {
  font-size: 1.25rem;
}

.category-card:hover h3 {
  color: var(--gold-400);
}

.category-card p {
  color: var(--slate-300);
  font-size: 0.875rem;
  max-width: 448px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}

.category-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Category Cards Responsive */
@media (max-width: 768px) {
  .category-card.large,
  .category-card.medium {
    height: 280px;
  }
  
  .category-card.small {
    height: 220px;
  }
  
  .category-card h3 {
    font-size: 1.25rem;
  }
  
  .category-card.medium h3,
  .category-card.small h3 {
    font-size: 1rem;
  }
  
  .category-card-overlay {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .category-card.large,
  .category-card.medium,
  .category-card.small {
    height: 200px;
  }
  
  .category-card h3 {
    font-size: 1rem;
  }
  
  .category-card p {
    font-size: 0.75rem;
  }
}

/* ============================================
   FOOTER STYLES
   ============================================ */
footer {
  background: var(--slate-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-400);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-brand-icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand-icon span {
  color: var(--gold-400);
  font-weight: bold;
}

.footer-brand-text {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.footer-description {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

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

.social-link:hover {
  background: var(--gold-600);
  color: white;
}

.footer-title {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}

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

.footer-links a svg {
  transition: transform 0.3s ease;
}

.footer-links a:hover svg {
  transform: translateX(4px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item span {
  color: var(--slate-400);
  font-size: 0.875rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: var(--slate-600);
  font-size: 0.875rem;
}

/* Footer Responsive */
@media (max-width: 480px) {
  footer {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  
  .footer-grid {
    gap: 2rem;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    font-size: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .contact-item span {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .footer-bottom p {
    font-size: 0.75rem;
  }
}

/* ============================================
   PAGE HEADER STYLES
   ============================================ */
.page-header {
  position: relative;
  padding: 6rem 0 4rem;
  background: rgba(15, 23, 42, 0.5);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.8), var(--obsidian));
}

.page-header-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 3.75rem; }
}

.page-header p {
  color: var(--slate-300);
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.vision-card {
  padding: 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.vision-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.vision-card.featured {
  background: #1a1a1a;
  border-color: rgba(212, 175, 55, 0.4);
}

.vision-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.vision-icon.gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  color: white;
}

.vision-icon.outline {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-400);
  transition: all 0.3s ease;
}

.vision-card:hover .vision-icon.outline {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}

.vision-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vision-card p {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.75;
}

.vision-card.featured p {
  color: var(--slate-300);
}

.craftsmanship-section {
  background: rgba(15, 23, 42, 0.5);
  padding: 5rem 0;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

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

.craftsmanship-image {
  position: relative;
}

.craftsmanship-image::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 96px;
  height: 96px;
  border-top: 2px solid var(--gold-500);
  border-left: 2px solid var(--gold-500);
}

.craftsmanship-image::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 96px;
  height: 96px;
  border-bottom: 2px solid var(--gold-500);
  border-right: 2px solid var(--gold-500);
}

.craftsmanship-image img {
  width: 100%;
  border-radius: 2px;
  opacity: 0.8;
}

.craftsmanship-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .craftsmanship-content h2 { font-size: 2.5rem; }
}

.craftsmanship-content p {
  color: var(--slate-400);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  background: rgba(245, 158, 11, 0.1);
  padding: 0.5rem;
  border-radius: 2px;
  color: var(--gold-500);
  margin-top: 0.25rem;
}

.feature-item svg {
  color: #ffffff !important;
}

.feature-item:hover svg {
  color: #d4af37 !important;
}

.feature-item h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
}

.feature-item p {
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.contact-card {
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card svg {
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--slate-400);
  font-size: 0.875rem;
}

.contact-card .secondary {
  color: var(--slate-500);
}

.contact-form-container {
  padding: 2rem;
  border-radius: 2px;
}

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

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--slate-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--slate-950);
  border: 1px solid var(--slate-700);
  color: white;
  padding: 0.75rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
}

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

.form-submit {
  width: 100%;
  background: var(--gold-600);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 2px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: var(--gold-500);
}

/* ============================================
   CATALOG PAGE STYLES
   ============================================ */
.catalog-header {
  background: rgba(15, 23, 42, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.catalog-header-pattern {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  opacity: 0.05;
}

.catalog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .catalog-header h1 { font-size: 3.75rem; }
}

.catalog-header p {
  color: var(--slate-400);
  max-width: 672px;
  font-size: 1.125rem;
  font-weight: 300;
}

.catalog-content {
  padding: 2rem 0 5rem;
}

.catalog-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .catalog-layout { flex-direction: row; }
}

/* Sidebar */
.catalog-sidebar {
  display: none;
  width: 288px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .catalog-sidebar { display: block; }
}

.catalog-sidebar-inner {
  position: sticky;
  top: 6rem;
}

.catalog-search {
  position: relative;
  margin-bottom: 2rem;
}

.catalog-search input {
  width: 100%;
  background: var(--slate-900);
  border: 1px solid var(--slate-700);
  color: white;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: 2px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.catalog-search input::placeholder {
  color: var(--slate-600);
}

.catalog-search input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.1);
}

.catalog-search svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-500);
}

.category-filter {
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-filter h3 {
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 0.25rem;
}

.category-btn {
  width: 100%;
  text-align: left;
  padding: 0.625rem 0.75rem;
  border-radius: 2px;
  font-size: 0.875rem;
  color: var(--slate-400);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.category-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.category-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 500;
  border-left: 2px solid var(--gold-500);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.category-btn.primary.active {
  background: var(--gold-600);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* Mobile Filter */
.mobile-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 80px;
  z-index: 30;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(8px);
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
  .mobile-filter-bar { display: none; }
}

.mobile-filter-bar span {
  color: var(--slate-400);
}

.mobile-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--slate-800);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Filter Drawer */
.mobile-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.mobile-filter-drawer.active {
  display: flex;
}

.mobile-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.mobile-filter-content {
  position: relative;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--slate-900);
  padding: 1.5rem;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-filter-header h3 {
  font-size: 1.25rem;
}

.mobile-filter-close {
  color: var(--slate-400);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-filter-close:hover {
  color: white;
}

/* Catalog Main */
.catalog-main {
  flex: 1;
}

.category-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-section-header h2 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .category-section-header h2 { font-size: 1.875rem; }
}

.category-section-header p {
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.view-all-link {
  color: var(--gold-500);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.view-all-link:hover {
  color: var(--gold-400);
}

.catalog-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.category-section-wrapper {
  margin-bottom: 5rem;
  scroll-margin-top: 6rem;
}

/* Empty State */
.empty-state {
  height: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  border: 1px dashed var(--slate-800);
  border-radius: 2px;
  background: rgba(15, 23, 42, 0.2);
}

.empty-state svg {
  margin-bottom: 1rem;
  opacity: 0.2;
}

.empty-state button {
  margin-top: 1rem;
  color: var(--gold-500);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.empty-state button:hover {
  color: var(--gold-400);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile { display: block; }
}

.hide-desktop {
  display: block;
}

@media (min-width: 1024px) {
  .hide-desktop { display: none; }
}

/* ============================================
   PRODUCT DETAIL PAGE - MOBILE RESPONSIVE
   ============================================ */

/* Product Detail Grid - Mobile Fix */
@media (max-width: 768px) {
  .product-detail-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .product-image-gallery {
    position: static !important;
    width: 100% !important;
    order: 1 !important;
    margin-bottom: 0 !important;
  }
  
  .product-main-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
  
  /* Content section - full width on mobile */
  .product-detail-grid > div:last-child,
  .product-detail-grid > div:nth-child(2) {
    width: 100% !important;
    order: 2 !important;
    padding: 0 !important;
  }
  
  /* Product options full width */
  .product-options {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Heading responsive */
  .product-detail-hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }
  
  /* Features grid - single column on mobile */
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Table responsive */
  .specs-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.8rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 0.75rem 0.5rem;
    white-space: normal;
    word-wrap: break-word;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .product-detail-hero {
    padding: 4rem 0 1.5rem !important;
  }
  
  .product-detail-hero h1 {
    font-size: 1.5rem !important;
  }
  
  .product-options {
    padding: 1rem !important;
  }
  
  .option-buttons {
    flex-direction: column;
  }
  
  .option-btn {
    width: 100%;
    text-align: center;
  }
}

