@charset "UTF-8";
/* ==========================================================================
   Tras cafe - Main Stylesheet
   ========================================================================== */
/* ==========================================================================
   CSS Variables for Tras cafe Theme
   ========================================================================== */
:root {
  /* ==========================================================================
     Color System
     ========================================================================== */
  --primary: #C19A6B;
  --primary-light: #D4AD7A;
  --primary-dark: #A67C52;
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-light: #2a2a2a;
  --bg-lighter: #3a3a3a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border-color: #404040;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-light: rgba(193, 154, 107, 0.2);
  /* ==========================================================================
     Typography
     ========================================================================== */
  --font-primary: "Georgia", "Times New Roman", serif;
  --font-secondary: "Arial", "Helvetica", sans-serif;
  --font-arabic: "Cairo", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  /* ==========================================================================
     Spacing System
     ========================================================================== */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  /* ==========================================================================
     Layout & Components
     ========================================================================== */
  --container-max-width: 1200px;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  /* ==========================================================================
     Transitions
     ========================================================================== */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  /* ==========================================================================
     Z-index Scale
     ========================================================================== */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--primary-light);
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: var(--text-primary);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: border-color var(--transition-fast);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--shadow-light);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.p-xs {
  padding: var(--spacing-xs);
}

.p-sm {
  padding: var(--spacing-sm);
}

.p-md {
  padding: var(--spacing-md);
}

.p-lg {
  padding: var(--spacing-lg);
}

.p-xl {
  padding: var(--spacing-xl);
}

/* ==========================================================================
   RTL Support
   ========================================================================== */
[dir=rtl] {
  text-align: right;
  font-family: var(--font-arabic);
}
[dir=rtl] h1, [dir=rtl] h2, [dir=rtl] h3, [dir=rtl] h4, [dir=rtl] h5, [dir=rtl] h6, [dir=rtl] p, [dir=rtl] span, [dir=rtl] a, [dir=rtl] div, [dir=rtl] button, [dir=rtl] input, [dir=rtl] textarea, [dir=rtl] select, [dir=rtl] option, [dir=rtl] label, [dir=rtl] legend, [dir=rtl] form, [dir=rtl] fieldset, [dir=rtl] table, [dir=rtl] th, [dir=rtl] td, [dir=rtl] tr, [dir=rtl] tbody, [dir=rtl] thead, [dir=rtl] tfoot, [dir=rtl] caption, [dir=rtl] colgroup, [dir=rtl] col, [dir=rtl] hr, [dir=rtl] pre, [dir=rtl] code, [dir=rtl] kbd, [dir=rtl] samp, [dir=rtl] var, [dir=rtl] dfn, [dir=rtl] cite, [dir=rtl] abbr, [dir=rtl] time, [dir=rtl] mark, [dir=rtl] audio, [dir=rtl] video, [dir=rtl] canvas, [dir=rtl] iframe, [dir=rtl] embed, [dir=rtl] object, [dir=rtl] param, [dir=rtl] source, [dir=rtl] track, [dir=rtl] summary, [dir=rtl] details, [dir=rtl] datalist, [dir=rtl] keygen, [dir=rtl] output, [dir=rtl] progress, [dir=rtl] meter, [dir=rtl] fieldset, [dir=rtl] legend, [dir=rtl] details, [dir=rtl] summary, [dir=rtl] menuitem, [dir=rtl] menu {
  font-family: var(--font-arabic);
}
[dir=rtl] .nav-container {
  flex-direction: row-reverse;
}
[dir=rtl] .language-switcher {
  margin-right: 0;
  margin-left: var(--spacing-md);
}
[dir=rtl] .item-header {
  flex-direction: row-reverse;
}
[dir=rtl] .item-price {
  margin-left: 0;
  margin-right: var(--spacing-md);
}
[dir=rtl] .product-header {
  flex-direction: row-reverse;
}
[dir=rtl] .footer-content {
  text-align: right;
}
[dir=rtl] .cta-buttons {
  flex-direction: row-reverse;
}
[dir=rtl] .back-btn {
  transform: scaleX(-1);
}
[dir=rtl] .features-list li::before {
  margin-right: 0;
  margin-left: var(--spacing-md);
}

/* ==========================================================================
   Mixins for Tras cafe Theme
   ========================================================================== */
/* ==========================================================================
   Breakpoint Mixins
   ========================================================================== */
/* ==========================================================================
   Typography Mixins
   ========================================================================== */
/* ==========================================================================
   Layout Mixins
   ========================================================================== */
/* ==========================================================================
   Card Mixins
   ========================================================================== */
/* ==========================================================================
   Button Mixins
   ========================================================================== */
/* ==========================================================================
   Animation Mixins
   ========================================================================== */
/* ==========================================================================
   Grid Mixins
   ========================================================================== */
/* ==========================================================================
   Form Mixins
   ========================================================================== */
/* ==========================================================================
   Loading States Mixins
   ========================================================================== */
/* ==========================================================================
   Global Loading System
   ========================================================================== */
.page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.page-loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-container {
  text-align: center;
  color: var(--text-white);
}
.loading-container .loading-logo {
  margin-bottom: var(--spacing-lg);
}
.loading-container .loading-logo h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--primary);
  font-weight: 700;
  margin: 0;
  animation: pulse 2s infinite;
}
.loading-container .loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-md);
}
.loading-container .loading-text {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
}
.loading-container .loading-subtext {
  font-size: var(--font-size-sm);
  opacity: 0.7;
}
.loading-container .loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: var(--spacing-md) auto 0;
  overflow: hidden;
}
.loading-container .loading-progress .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progress 2s ease-in-out infinite;
}

.navigation-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--bg-dark);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.navigation-loading.active {
  opacity: 1;
  visibility: visible;
}
.navigation-loading .nav-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  width: 0%;
  transition: width 0.3s ease;
  animation: navProgress 1s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes progress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
@keyframes navProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 60%;
  }
  100% {
    width: 100%;
  }
}
[dir=rtl] .loading-container .loading-progress {
  direction: rtl;
}

@media (max-width: 768px) {
  .loading-container .loading-logo h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  .loading-container .loading-spinner {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
  .loading-container .loading-progress {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .loading-container .loading-logo h1 {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
  .loading-container .loading-spinner {
    width: 40px;
    height: 40px;
  }
  .loading-container .loading-progress {
    width: 120px;
  }
}
/* ==========================================================================
   Utility Classes
   ========================================================================== */
/* ==========================================================================
   Text Utilities
   ========================================================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ==========================================================================
   Margin Utilities
   ========================================================================== */
.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-xs {
  margin-top: var(--spacing-xs);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

/* ==========================================================================
   Padding Utilities
   ========================================================================== */
.p-xs {
  padding: var(--spacing-xs);
}

.p-sm {
  padding: var(--spacing-sm);
}

.p-md {
  padding: var(--spacing-md);
}

.p-lg {
  padding: var(--spacing-lg);
}

.p-xl {
  padding: var(--spacing-xl);
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ==========================================================================
   Logo Styles
   ========================================================================== */
.logo h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo h1 img {
  max-height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--border-radius-sm);
}
@media (min-width: 768px) {
  .logo h1 img {
    max-height: 35px;
  }
}

/* ==========================================================================
   Image Styles
   ========================================================================== */
.item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform var(--transition-normal) ease;
}
.item-image:hover img {
  transform: scale(1.05);
}

.product-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .product-image img {
    height: 250px;
  }
}

/* ==========================================================================
   Social Media Links
   ========================================================================== */
.social-links:not(.footer .social-links) {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}
.social-links:not(.footer .social-links) a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--text-primary);
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--transition-normal) ease;
  font-size: 1.2rem;
}
.social-links:not(.footer .social-links) a:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .social-links:not(.footer .social-links) a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 4px;
  font-size: 0.9rem;
  min-width: 35px;
  height: 35px;
}
.language-btn:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.language-btn:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* RTL Support */
[dir=rtl] {
  text-align: right;
}
[dir=rtl] .nav-container {
  flex-direction: row-reverse;
}
[dir=rtl] .language-switcher {
  margin-right: 0;
  margin-left: var(--spacing-md);
}
[dir=rtl] .item-header {
  flex-direction: row-reverse;
}
[dir=rtl] .item-price {
  margin-left: 0;
  margin-right: var(--spacing-md);
}
[dir=rtl] .product-header {
  flex-direction: row-reverse;
}
[dir=rtl] .footer-content {
  text-align: right;
}
[dir=rtl] .cta-buttons {
  flex-direction: row-reverse;
}
[dir=rtl] .back-btn {
  transform: scaleX(-1);
}
[dir=rtl] .features-list li::before {
  margin-right: 0;
  margin-left: var(--spacing-md);
}

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

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--primary-light);
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: var(--text-primary);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: border-color var(--transition-fast);
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--shadow-light);
}

/* Spin Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Slide In Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Slide In From Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Slide In From Bottom */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Shimmer Animation */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* Loading Dots Animation */
@keyframes loadingDots {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Typing Animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* Blink Animation */
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
/* Wiggle Animation */
@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}
/* Hover Animations */
@keyframes hoverLift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5px);
  }
}
@keyframes hoverGlow {
  from {
    box-shadow: 0 0 5px rgba(193, 154, 107, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(193, 154, 107, 0.6);
  }
}
/* Animation Classes */
.fade-in {
  animation: fadeIn 0.3s ease-out;
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.3s ease-out;
}

.slide-in-up {
  animation: slideInUp 0.3s ease-out;
}

.scale-in {
  animation: scaleIn 0.3s ease-out;
}

.bounce {
  animation: bounce 1s ease-in-out;
}

.pulse {
  animation: pulse 2s infinite;
}

.wiggle {
  animation: wiggle 1s ease-in-out;
}

/* Loading Animations */
.loading-dots {
  display: inline-block;
}
.loading-dots::after {
  content: "";
  animation: loadingDots 1.4s infinite ease-in-out both;
}
.loading-dots::before {
  content: "";
  animation: loadingDots 1.4s infinite ease-in-out both;
  animation-delay: -0.32s;
}
.loading-dots::after {
  animation-delay: -0.16s;
}

/* Typing Animation */
.typing {
  overflow: hidden;
  border-right: 2px solid var(--primary);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

/* Hover Animation Classes */
.hover-lift {
  transition: transform 0.3s ease;
}
.hover-lift:hover {
  animation: hoverLift 0.3s ease forwards;
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
  animation: hoverGlow 0.3s ease forwards;
}

/* Staggered Animations */
.stagger-children > * {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}
.stagger-children > *:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger-children > *:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-children > *:nth-child(3) {
  animation-delay: 0.3s;
}
.stagger-children > *:nth-child(4) {
  animation-delay: 0.4s;
}
.stagger-children > *:nth-child(5) {
  animation-delay: 0.5s;
}
.stagger-children > *:nth-child(6) {
  animation-delay: 0.6s;
}
.stagger-children > *:nth-child(7) {
  animation-delay: 0.7s;
}
.stagger-children > *:nth-child(8) {
  animation-delay: 0.8s;
}

/* Infinite Animations */
.infinite-spin {
  animation: spin 2s linear infinite;
}

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

.infinite-bounce {
  animation: bounce 2s infinite;
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.animate-on-hover {
  transition: all 0.3s ease;
}
.animate-on-hover:hover {
  transform: scale(1.05);
}

.mobile-nav {
  background: rgba(18, 18, 18, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.mobile-nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.mobile-nav .logo h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mobile-nav .logo a {
  color: inherit;
  text-decoration: none;
}
.mobile-nav .nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.mobile-nav .menu-toggle {
  display: flex;
  flex-direction: column;
  width: 28px;
  height: 28px;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}
.mobile-nav .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-nav .menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.mobile-nav .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-nav .menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.mobile-nav .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.mobile-nav .nav-menu {
  background: rgba(18, 18, 18, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav .nav-menu.active {
  max-height: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.mobile-nav .nav-menu a {
  display: flex;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.25rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  transition: all 0.3s ease;
  position: relative;
}
.mobile-nav .nav-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.mobile-nav .nav-menu a:hover, .mobile-nav .nav-menu a.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  padding-left: calc(clamp(1rem, 3vw, 1.25rem) + 1rem);
}
.mobile-nav .nav-menu a:hover::before, .mobile-nav .nav-menu a.active::before {
  transform: scaleY(1);
}
.mobile-nav .language-switcher {
  position: relative;
}
.mobile-nav .language-switcher .language-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.mobile-nav .language-switcher .language-btn:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}
.mobile-nav .language-switcher .language-btn:active {
  transform: scale(0.95);
}
.mobile-nav .language-switcher .language-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.3);
}
.mobile-nav .language-switcher .language-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.5);
}
.mobile-nav .language-switcher .language-btn .lang-text {
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}
.mobile-nav .language-switcher .language-btn[data-lang=ar] .lang-text {
  content: "ع";
}
@media (min-width: 768px) {
  .mobile-nav .nav-container {
    padding: clamp(1.25rem, 2vw, 1.5rem);
  }
  .mobile-nav .logo h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav .language-switcher .language-btn {
    transition: none;
  }
}
@media (max-width: 768px) {
  .mobile-nav .language-switcher .language-btn {
    width: 45px;
    height: 45px;
  }
  .mobile-nav .language-switcher .language-btn .lang-text {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .mobile-nav .language-switcher .language-btn {
    width: 40px;
    height: 40px;
  }
  .mobile-nav .language-switcher .language-btn .lang-text {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn, .search-btn, .error-message .retry-btn, .featured-items .see-more-btn-container .see-more-btn, .category-btn, .see-more-btn, .slider-btn, .filter-btn, .auth-btn, .newsletter-btn, .submit-btn,
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before, .search-btn::before, .error-message .retry-btn::before, .featured-items .see-more-btn-container .see-more-btn::before, .category-btn::before, .see-more-btn::before, .slider-btn::before, .filter-btn::before, .auth-btn::before, .newsletter-btn::before, .submit-btn::before,
.form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before, .search-btn:hover::before, .error-message .retry-btn:hover::before, .featured-items .see-more-btn-container .see-more-btn:hover::before, .category-btn:hover::before, .see-more-btn:hover::before, .slider-btn:hover::before, .filter-btn:hover::before, .auth-btn:hover::before, .newsletter-btn:hover::before, .submit-btn:hover::before,
.form-btn:hover::before {
  left: 100%;
}
.btn:disabled, .search-btn:disabled, .error-message .retry-btn:disabled, .featured-items .see-more-btn-container .see-more-btn:disabled, .category-btn:disabled, .see-more-btn:disabled, .slider-btn:disabled, .filter-btn:disabled, .auth-btn:disabled, .newsletter-btn:disabled, .submit-btn:disabled,
.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn:disabled:hover, .search-btn:disabled:hover, .error-message .retry-btn:disabled:hover, .category-btn:disabled:hover, .see-more-btn:disabled:hover, .slider-btn:disabled:hover, .filter-btn:disabled:hover, .auth-btn:disabled:hover, .newsletter-btn:disabled:hover, .submit-btn:disabled:hover,
.form-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.btn.btn-primary, .search-btn, .error-message .retry-btn, .featured-items .see-more-btn-container .see-more-btn, .category-btn, .see-more-btn, .slider-btn, .btn-primary.filter-btn, .filter-btn.active, .auth-btn, .newsletter-btn, .submit-btn,
.form-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-dark);
}
.btn.btn-primary:hover, .search-btn:hover, .error-message .retry-btn:hover, .featured-items .see-more-btn-container .see-more-btn:hover, .category-btn:hover, .see-more-btn:hover, .slider-btn:hover, .btn-primary.filter-btn:hover, .filter-btn.active:hover, .auth-btn:hover, .newsletter-btn:hover, .submit-btn:hover,
.form-btn:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn.btn-secondary, .btn-secondary.search-btn, .error-message .btn-secondary.retry-btn, .featured-items .see-more-btn-container .btn-secondary.see-more-btn, .btn-secondary.category-btn, .btn-secondary.see-more-btn, .btn-secondary.slider-btn, .btn-secondary.filter-btn, .btn-secondary.auth-btn, .btn-secondary.newsletter-btn, .btn-secondary.submit-btn,
.btn-secondary.form-btn {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--text-primary);
}
.btn.btn-secondary:hover, .btn-secondary.search-btn:hover, .error-message .btn-secondary.retry-btn:hover, .btn-secondary.category-btn:hover, .btn-secondary.see-more-btn:hover, .btn-secondary.slider-btn:hover, .btn-secondary.filter-btn:hover, .btn-secondary.auth-btn:hover, .btn-secondary.newsletter-btn:hover, .btn-secondary.submit-btn:hover,
.btn-secondary.form-btn:hover {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}
.btn.btn-outline, .btn-outline.search-btn, .error-message .btn-outline.retry-btn, .featured-items .see-more-btn-container .btn-outline.see-more-btn, .btn-outline.category-btn, .btn-outline.see-more-btn, .btn-outline.slider-btn, .filter-btn, .btn-outline.auth-btn, .btn-outline.newsletter-btn, .btn-outline.submit-btn,
.btn-outline.form-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn.btn-outline:hover, .btn-outline.search-btn:hover, .error-message .btn-outline.retry-btn:hover, .btn-outline.category-btn:hover, .btn-outline.see-more-btn:hover, .btn-outline.slider-btn:hover, .filter-btn:hover, .btn-outline.auth-btn:hover, .btn-outline.newsletter-btn:hover, .btn-outline.submit-btn:hover,
.btn-outline.form-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
}
.btn.btn-ghost, .btn-ghost.search-btn, .error-message .btn-ghost.retry-btn, .featured-items .see-more-btn-container .btn-ghost.see-more-btn, .btn-ghost.category-btn, .btn-ghost.see-more-btn, .btn-ghost.slider-btn, .btn-ghost.filter-btn, .btn-ghost.auth-btn, .btn-ghost.newsletter-btn, .btn-ghost.submit-btn,
.btn-ghost.form-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn.btn-ghost:hover, .btn-ghost.search-btn:hover, .error-message .btn-ghost.retry-btn:hover, .btn-ghost.category-btn:hover, .btn-ghost.see-more-btn:hover, .btn-ghost.slider-btn:hover, .btn-ghost.filter-btn:hover, .btn-ghost.auth-btn:hover, .btn-ghost.newsletter-btn:hover, .btn-ghost.submit-btn:hover,
.btn-ghost.form-btn:hover {
  background: var(--bg-light);
  border-color: var(--primary);
}
.btn.btn-small, .btn-small.search-btn, .error-message .btn-small.retry-btn, .featured-items .see-more-btn-container .btn-small.see-more-btn, .btn-small.category-btn, .btn-small.see-more-btn, .btn-small.slider-btn, .btn-small.filter-btn, .btn-small.auth-btn, .btn-small.newsletter-btn, .btn-small.submit-btn,
.btn-small.form-btn {
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 2.5vw, 1.5rem);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}
.btn.btn-large, .btn-large.search-btn, .error-message .btn-large.retry-btn, .featured-items .see-more-btn-container .btn-large.see-more-btn, .btn-large.category-btn, .btn-large.see-more-btn, .btn-large.slider-btn, .btn-large.filter-btn, .btn-large.auth-btn, .btn-large.newsletter-btn, .btn-large.submit-btn,
.btn-large.form-btn {
  padding: clamp(1.25rem, 3vw, 1.5rem) clamp(2rem, 4vw, 2.5rem);
  font-size: clamp(1.1rem, 3vw, 1.25rem);
}
.btn.btn-xl, .btn-xl.search-btn, .error-message .btn-xl.retry-btn, .featured-items .see-more-btn-container .btn-xl.see-more-btn, .btn-xl.category-btn, .btn-xl.see-more-btn, .btn-xl.slider-btn, .btn-xl.filter-btn, .btn-xl.auth-btn, .btn-xl.newsletter-btn, .btn-xl.submit-btn,
.btn-xl.form-btn {
  padding: clamp(1.5rem, 4vw, 2rem) clamp(2.5rem, 5vw, 3rem);
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
}
.btn.btn-loading, .btn-loading.search-btn, .error-message .btn-loading.retry-btn, .featured-items .see-more-btn-container .btn-loading.see-more-btn, .btn-loading.category-btn, .btn-loading.see-more-btn, .btn-loading.slider-btn, .btn-loading.filter-btn, .btn-loading.auth-btn, .btn-loading.newsletter-btn, .btn-loading.submit-btn,
.btn-loading.form-btn {
  pointer-events: none;
  opacity: 0.8;
}
.btn.btn-loading::after, .btn-loading.search-btn::after, .error-message .btn-loading.retry-btn::after, .featured-items .see-more-btn-container .btn-loading.see-more-btn::after, .btn-loading.category-btn::after, .btn-loading.see-more-btn::after, .btn-loading.slider-btn::after, .btn-loading.filter-btn::after, .btn-loading.auth-btn::after, .btn-loading.newsletter-btn::after, .btn-loading.submit-btn::after,
.btn-loading.form-btn::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: var(--spacing-sm);
}
.btn.btn-full, .btn-full.search-btn, .error-message .btn-full.retry-btn, .featured-items .see-more-btn-container .btn-full.see-more-btn, .btn-full.category-btn, .btn-full.see-more-btn, .btn-full.slider-btn, .btn-full.filter-btn, .auth-btn, .newsletter-btn, .submit-btn,
.form-btn {
  width: 100%;
}
.btn.btn-rounded, .btn-rounded.search-btn, .error-message .btn-rounded.retry-btn, .featured-items .see-more-btn-container .btn-rounded.see-more-btn, .btn-rounded.category-btn, .btn-rounded.see-more-btn, .slider-btn, .btn-rounded.filter-btn, .btn-rounded.auth-btn, .btn-rounded.newsletter-btn, .btn-rounded.submit-btn,
.btn-rounded.form-btn {
  border-radius: 50px;
}
.btn.btn-square, .btn-square.search-btn, .error-message .btn-square.retry-btn, .featured-items .see-more-btn-container .btn-square.see-more-btn, .btn-square.category-btn, .btn-square.see-more-btn, .btn-square.slider-btn, .btn-square.filter-btn, .btn-square.auth-btn, .btn-square.newsletter-btn, .btn-square.submit-btn,
.btn-square.form-btn {
  aspect-ratio: 1;
  padding: clamp(0.75rem, 2vw, 1rem);
}
.btn.btn-icon, .btn-icon.search-btn, .error-message .btn-icon.retry-btn, .featured-items .see-more-btn-container .btn-icon.see-more-btn, .btn-icon.category-btn, .btn-icon.see-more-btn, .slider-btn, .btn-icon.filter-btn, .btn-icon.auth-btn, .btn-icon.newsletter-btn, .btn-icon.submit-btn,
.btn-icon.form-btn {
  padding: clamp(0.75rem, 2vw, 1rem);
  min-width: 44px;
  min-height: 44px;
}
.btn.btn-icon i, .btn-icon.search-btn i, .error-message .btn-icon.retry-btn i, .featured-items .see-more-btn-container .btn-icon.see-more-btn i, .btn-icon.category-btn i, .btn-icon.see-more-btn i, .slider-btn i, .btn-icon.filter-btn i, .btn-icon.auth-btn i, .btn-icon.newsletter-btn i, .btn-icon.submit-btn i,
.btn-icon.form-btn i {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

/* ==========================================================================
   Specific Button Types
   ========================================================================== */
.auth-btn {
  margin-bottom: var(--spacing-md);
}

.filter-btn {
  padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
}
.filter-btn.active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn {
  position: absolute;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 0.85;
}
.slider-btn:hover {
  opacity: 1;
}
.slider-btn.slider-btn-left {
  left: 2%;
}
.slider-btn.slider-btn-right {
  right: 2%;
}

.see-more-btn {
  margin: 0 auto;
  padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--border-radius-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--primary) !important;
  color: var(--bg-dark) !important;
}

.category-btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 479px) {
  .btn, .search-btn, .error-message .retry-btn, .featured-items .see-more-btn-container .see-more-btn, .submit-btn,
  .form-btn, .newsletter-btn, .auth-btn, .filter-btn, .slider-btn, .see-more-btn, .category-btn {
    padding: clamp(0.625rem, 2vw, 0.875rem) clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
  }
  .btn-icon, .slider-btn {
    min-width: 40px;
    min-height: 40px;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .btn, .search-btn, .error-message .retry-btn, .featured-items .see-more-btn-container .see-more-btn, .submit-btn,
  .form-btn, .newsletter-btn, .auth-btn, .filter-btn, .slider-btn, .see-more-btn, .category-btn {
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1.25rem, 3.5vw, 1.75rem);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}
/* ==========================================================================
   Form System
   ========================================================================== */
.reservation {
  display: flex !important;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  width: 100%;
}
.reservation .reservation-form {
  min-width: 70% !important;
  overflow: visible !important;
}

.reservation,
.contact-form-section,
.form-section {
  padding: clamp(3rem, 8vh, 5rem) var(--spacing-md);
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  position: relative;
}
.reservation::before,
.contact-form-section::before,
.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.reservation h2,
.contact-form-section h2,
.form-section h2 {
  font-family: var(--font-primary);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  font-weight: 700;
  text-align: center;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--primary);
  margin-bottom: clamp(2rem, 5vh, 3rem);
}
.reservation h2::after,
.contact-form-section h2::after,
.form-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

/* ==========================================================================
   Form Container
   ========================================================================== */
.reservation-form,
.contact-form,
.form-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  max-width: 600px;
  background: var(--bg-light);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem);
}
.reservation-form::before,
.contact-form::before,
.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.reservation-form.form-large,
.contact-form.form-large,
.form-container.form-large {
  max-width: 800px;
}
.reservation-form.form-wide,
.contact-form.form-wide,
.form-container.form-wide {
  max-width: 900px;
}

/* ==========================================================================
   Form Groups
   ========================================================================== */
.form-group {
  margin-bottom: clamp(1.5rem, 4vh, 2rem);
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
}
.form-group label.required::after {
  content: " *";
  color: var(--error);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(1.25rem, 3vw, 1.5rem);
  background-color: var(--bg-lighter);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  color: var(--text-primary);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
  background-color: var(--bg-light);
}
.form-group input::-moz-placeholder, .form-group select::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.form-group .dropdown-container {
  position: relative;
  width: 100%;
}
.form-group .dropdown-container .dropdown-menu {
  background-color: var(--bg-dark);
}
.form-group .dropdown-container .dropdown-menu::-webkit-scrollbar {
  display: none;
}
.form-group .dropdown-toggle {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  text-align: left;
}
.form-group .dropdown-toggle:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.form-group .dropdown-toggle:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form-group .dropdown-toggle.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form-group .dropdown-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}
.form-group .dropdown-selected {
  flex: 1;
  color: var(--text-primary);
}
.form-group .dropdown-selected.placeholder {
  color: var(--text-secondary);
}
.form-group [dir=rtl] .dropdown-toggle {
  text-align: right;
}
.form-group [dir=rtl] .dropdown-toggle .dropdown-arrow {
  margin-left: 0;
  margin-right: var(--spacing-sm);
}
.form-group [dir=rtl] .dropdown-item {
  text-align: right;
}
.form-group .dropdown-arrow {
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  margin-left: var(--spacing-sm);
}
.form-group .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.form-group .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.form-group .dropdown-item {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}
.form-group .dropdown-item:last-child {
  border-bottom: none;
}
.form-group .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.form-group .dropdown-item.selected {
  background: var(--primary);
  color: var(--bg-white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
.form-group select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23C19A6B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-group.has-error .error-message {
  color: var(--error);
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
  display: block;
}
.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* ==========================================================================
   Form Buttons
   ========================================================================== */
.reservation-form button,
.contact-form button,
.form-container button,
.submit-btn,
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-dark);
  width: 100%;
  padding: clamp(1rem, 3vw, 1.25rem);
  border-radius: var(--border-radius-xl);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.reservation-form button:hover,
.contact-form button:hover,
.form-container button:hover,
.submit-btn:hover,
.form-btn:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.reservation-form button:disabled,
.contact-form button:disabled,
.form-container button:disabled,
.submit-btn:disabled,
.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.reservation-form button:disabled:hover,
.contact-form button:disabled:hover,
.form-container button:disabled:hover,
.submit-btn:disabled:hover,
.form-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Form Messages
   ========================================================================== */
.form-success,
.form-error,
.form-info {
  padding: clamp(1.5rem, 4vh, 2rem);
  border-radius: var(--border-radius-xl);
  text-align: center;
  font-weight: 600;
  margin-top: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideIn 0.3s ease-out;
  border: 1px solid;
}

.form-success {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  border-color: rgba(76, 175, 80, 0.2);
}

.form-error {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
  border-color: rgba(244, 67, 54, 0.2);
}

.form-info {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
  border-color: rgba(33, 150, 243, 0.2);
}

/* ==========================================================================
   Form Grid
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-md);
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .form-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.form-grid.form-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.form-grid.form-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.form-grid.form-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.form-row {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-end;
}
.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* ==========================================================================
   Loading States
   ========================================================================== */
.form-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}
.form-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 479px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
  }
  .submit-btn,
  .form-btn {
    padding: clamp(0.875rem, 2.5vw, 1rem);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
}
@media (min-width: 768px) {
  .form-grid.form-grid-2, .form-grid.form-grid-3, .form-grid.form-grid-4 {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  .form-row .form-group {
    margin-bottom: var(--spacing-sm);
  }
  .reservation-form,
  .contact-form,
  .form-container {
    padding: clamp(1.5rem, 4vw, 2rem);
    margin: 0 var(--spacing-sm);
  }
}
/*════════════════════════════════════════
||        Hero Section (Image / Video)  ||
════════════════════════════════════════*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: clamp(3rem, 10vh, 6rem) var(--spacing-md);
  /* Responsive */
}
.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}
.hero .hero-content .logo-main h1 {
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  color: #ffffff;
  margin-bottom: var(--spacing-lg);
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero .hero-content .logo-main p {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  color: #ffffff;
  font-weight: 300;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero .hero-content .hero-actions {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}
.hero .hero-content .hero-actions .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.hero .hero-content .hero-actions .hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.hero .hero-content .hero-actions .hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.hero .hero-content .hero-actions .hero-btn:hover::before {
  left: 100%;
}
.hero .hero-content .hero-actions .hero-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.hero .hero-content .hero-actions .hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero.hero-home:not(:has(.hero-video)) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
}
.hero.hero-contact:not(:has(.hero-video)) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
}
.hero.hero-menu:not(:has(.hero-video)) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .hero {
    padding: clamp(2rem, 8vh, 4rem) var(--spacing-md);
    min-height: 50vh;
  }
  .hero .hero-content .logo-main h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  .hero .hero-content .logo-main p {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }
  .hero .hero-content .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-content .hero-actions .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Modern Footer - Shared across all pages */
.footer {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  padding: clamp(3rem, 8vh, 5rem) var(--spacing-md) var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  /* Responsive Design */
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer .footer-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vh, 3rem);
}
.footer .footer-section h4 {
  color: var(--text-primary);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  position: relative;
}
.footer .footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 1px;
}
.footer .footer-logo h3 {
  color: var(--primary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}
.footer .footer-logo p {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}
.footer .footer-contact {
  margin-top: var(--spacing-md);
}
.footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}
.footer .footer-contact .contact-item i {
  color: var(--primary);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  min-width: 20px;
}
.footer .footer-contact .contact-item span {
  color: var(--text-secondary);
}
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.footer .footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
.footer .footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}
.footer .footer-links a:hover {
  color: var(--primary);
  padding-left: 25px;
}
.footer .footer-links a:hover::before {
  width: 20px;
}
.footer .business-hours {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.footer .business-hours .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .business-hours .hours-item:last-child {
  border-bottom: none;
}
.footer .business-hours .hours-item .days {
  font-weight: 600;
  color: var(--text-primary);
}
.footer .business-hours .hours-item .time {
  color: var(--text-secondary);
  font-weight: 500;
}
.footer .social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.footer .social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.footer .social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: var(--bg-dark);
}
.footer .social-links a:hover::before {
  transform: scale(1);
}
.footer .social-links a:hover i {
  color: var(--bg-dark);
}
.footer .social-links a i {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  display: flex !important;
}
.footer .footer-bottom {
  margin-top: clamp(2rem, 5vh, 3rem);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer .footer-bottom p {
  color: var(--text-muted);
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  margin: 0;
}
@media (min-width: 480px) {
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vh, 3rem);
  }
}
@media (min-width: 768px) {
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vh, 3rem);
  }
  .footer .social-links {
    gap: var(--spacing-lg);
  }
  .footer .social-links a {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 5vh, 3rem);
  }
  .footer .footer-logo {
    grid-column: 1;
  }
  .footer .footer-contact {
    margin-top: var(--spacing-lg);
  }
}

/* Categories Section */
.categories-section {
  position: relative;
  padding: var(--spacing-xl) var(--spacing-sm);
}
.categories-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.categories-section .categories-swiper {
  padding: 30px;
}
@media (max-width: 768px) {
  .categories-section .categories-swiper {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .categories-section .categories-swiper {
    padding: 15px;
  }
}
.categories-section .categories-container {
  display: flex;
  align-items: stretch;
}
.categories-section .category-tile {
  background: var(--bg-light);
  border-radius: var(--border-radius-xl);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  margin-top: 10px;
}
.categories-section .category-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}
.categories-section .category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.categories-section .category-tile:hover::before {
  left: 100%;
}
.categories-section .category-tile .category-image {
  width: 100%;
  height: 325px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-top-left-radius: calc(var(--border-radius-xl) - 1px);
  border-top-right-radius: calc(var(--border-radius-xl) - 1px);
}
.categories-section .category-tile .category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.categories-section .category-tile .category-content {
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  text-align: center;
  height: 250px !important;
}
.categories-section .category-tile h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}
.categories-section .category-tile p {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  flex: 1;
}
.categories-section .category-tile .category-btn {
  display: inline-block;
  padding: clamp(0.6rem, 2vw, 0.9rem) clamp(1.2rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.categories-section .category-tile .category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}
@media (max-width: 768px) {
  .categories-section .category-tile {
    min-height: 430px;
  }
  .categories-section .category-tile .category-image {
    height: 260px;
  }
  .categories-section .category-tile .category-content {
    padding: clamp(0.75rem, 2vw, 1rem);
  }
  .categories-section .category-tile h2 {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
  .categories-section .category-tile p {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    margin-bottom: var(--spacing-md);
  }
  .categories-section .category-tile .category-btn {
    padding: clamp(0.6rem, 1.8vw, 0.9rem) clamp(1.2rem, 2.5vw, 1.6rem);
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  }
}
@media (max-width: 480px) {
  .categories-section .category-tile {
    height: 430px;
  }
  .categories-section .category-tile .category-image {
    height: 260px;
  }
  .categories-section .category-tile .category-content {
    padding: clamp(0.6rem, 1.5vw, 0.8rem);
  }
  .categories-section .category-tile h2 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-xs);
  }
  .categories-section .category-tile p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: var(--spacing-sm);
  }
  .categories-section .category-tile .category-btn {
    padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(1rem, 2vw, 1.4rem);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
}

/* Featured Items Section */
.featured-items {
  padding: var(--spacing-xl) 0;
}
.featured-items h2 {
  text-align: center;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--primary);
  margin-bottom: clamp(2rem, 5vh, 3rem);
  font-weight: 700;
  position: relative;
}
.featured-items .see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin: 0 auto;
  padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.featured-items .see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/*═════════════════════════════════════════════
||            Filter Section Styling           ||
||  Desktop: Spacious & Clear – Mobile: Compact ||
═════════════════════════════════════════════*/
.filter-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-background-light);
  border-bottom: 1px solid var(--color-border);
  /*════════════════════════════════════════
  ||         Responsive for Mobile         ||
  ════════════════════════════════════════*/
}
.filter-section .filter-container {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.filter-section .filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  min-width: 200px;
  max-width: 240px;
  flex: 1;
}
.filter-section .dropdown {
  width: 100%;
}
.filter-section .dropdown .btn, .filter-section .dropdown .search-btn, .filter-section .dropdown .error-message .retry-btn, .error-message .filter-section .dropdown .retry-btn, .filter-section .dropdown .submit-btn,
.filter-section .dropdown .form-btn, .filter-section .dropdown .newsletter-btn, .filter-section .dropdown .auth-btn, .filter-section .dropdown .filter-btn, .filter-section .dropdown .slider-btn, .filter-section .dropdown .see-more-btn, .filter-section .dropdown .category-btn {
  width: 100% !important;
  position: relative;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-md);
  border: 2px solid var(--color-border);
  background: rgb(50, 49, 49);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
  border-radius: 6px;
}
.filter-section .dropdown .btn:hover, .filter-section .dropdown .search-btn:hover, .filter-section .dropdown .error-message .retry-btn:hover, .error-message .filter-section .dropdown .retry-btn:hover, .filter-section .dropdown .submit-btn:hover,
.filter-section .dropdown .form-btn:hover, .filter-section .dropdown .newsletter-btn:hover, .filter-section .dropdown .auth-btn:hover, .filter-section .dropdown .filter-btn:hover, .filter-section .dropdown .slider-btn:hover, .filter-section .dropdown .see-more-btn:hover, .filter-section .dropdown .category-btn:hover, .filter-section .dropdown .btn:focus, .filter-section .dropdown .search-btn:focus, .filter-section .dropdown .error-message .retry-btn:focus, .error-message .filter-section .dropdown .retry-btn:focus, .filter-section .dropdown .submit-btn:focus,
.filter-section .dropdown .form-btn:focus, .filter-section .dropdown .newsletter-btn:focus, .filter-section .dropdown .auth-btn:focus, .filter-section .dropdown .filter-btn:focus, .filter-section .dropdown .slider-btn:focus, .filter-section .dropdown .see-more-btn:focus, .filter-section .dropdown .category-btn:focus {
  background: rgb(0, 0, 0);
  color: var(--color-text-primary);
}
.filter-section .dropdown .dropdown-menu {
  width: 100%;
  background: var(--bg-dark);
  color: white;
  border-radius: 12px !important;
  overflow-y: auto;
  max-height: 50vh;
  padding: 6px;
  border: 0.5px solid rgb(57, 57, 57);
}
.filter-section .dropdown .dropdown-menu::-webkit-scrollbar {
  display: none;
}
.filter-section .dropdown .dropdown-menu .dropdown-item {
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
  border-radius: 12px !important;
}
.filter-section .dropdown .dropdown-menu .dropdown-item:hover, .filter-section .dropdown .dropdown-menu .dropdown-item.active {
  background: var(--bg-light);
  color: white;
}
.filter-section .search-group {
  display: flex;
  gap: var(--spacing-sm);
  min-width: 300px;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 0.5px solid rgb(113, 113, 113);
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.filter-section .search-group .search-input {
  background: var(--bg-dark);
  border: none;
  color: white;
  width: 100%;
  padding: 0.6rem 1rem;
}
.filter-section .search-group .search-btn {
  padding: 0.6rem 1rem;
  width: 70px;
  background: var(--bg-dark);
  border: none;
  color: white;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
}
.filter-section .search-group .search-btn .fi {
  display: flex;
  font-size: 22px;
}
@media (max-width: 768px) {
  .filter-section .filter-container {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: stretch;
  }
  .filter-section .filter-group {
    width: 100%;
    max-width: 100%;
  }
  .filter-section .search-group {
    width: 100%;
    min-width: unset;
  }
  .filter-section .dropdown .btn, .filter-section .dropdown .search-btn, .filter-section .dropdown .error-message .retry-btn, .error-message .filter-section .dropdown .retry-btn, .filter-section .dropdown .submit-btn,
  .filter-section .dropdown .form-btn, .filter-section .dropdown .newsletter-btn, .filter-section .dropdown .auth-btn, .filter-section .dropdown .filter-btn, .filter-section .dropdown .slider-btn, .filter-section .dropdown .see-more-btn, .filter-section .dropdown .category-btn,
  .filter-section .dropdown .dropdown-menu {
    width: 100% !important;
  }
}

/* ==========================================================================
   Items Grid System
   ========================================================================== */
.items-section .container {
  min-width: 90%;
}

.items-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) !important;
}
@media (min-width: 768px) {
  .items-grid,
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .items-grid,
  .related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .items-grid,
  .related-grid {
    padding: var(--spacing-lg) 0 !important;
  }
}

/* ==========================================================================
   Related Items Section
   ========================================================================== */
.related-items {
  padding: var(--spacing-xl) 0;
  background: var(--bg-light);
}
.related-items h2 {
  font-family: var(--font-primary);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  font-weight: 700;
  text-align: center;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--primary);
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

/* ==========================================================================
   Featured Items Section
   ========================================================================== */
.featured-items {
  padding: var(--spacing-xl) 0;
}
.featured-items h2 {
  font-family: var(--font-primary);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  font-weight: 700;
  text-align: center;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--primary);
  margin-bottom: clamp(2rem, 5vh, 3rem);
}
.featured-items .see-more-btn-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: var(--spacing-xl) !important;
}
.featured-items .see-more-btn-container .see-more-btn {
  margin: 0 auto;
  padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--border-radius-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 250px !important;
  font-size: 18px !important;
}

/* ==========================================================================
   Item Cards
   ========================================================================== */
.item-card,
.related-product-card,
.featured-item-card,
.category-item-card,
.product-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 340px !important;
  display: flex;
  flex-direction: column;
  /* Product Image Container */
  /* Product Content */
  /* Hover effects for images */
}
.item-card:hover,
.related-product-card:hover,
.featured-item-card:hover,
.category-item-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}
.item-card::before,
.related-product-card::before,
.featured-item-card::before,
.category-item-card::before,
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.item-card:hover::before,
.related-product-card:hover::before,
.featured-item-card:hover::before,
.category-item-card:hover::before,
.product-card:hover::before {
  transform: scaleX(1);
}
.item-card .item-image,
.item-card .related-product-image,
.item-card .featured-item-image,
.item-card .category-item-image,
.item-card .product-image,
.related-product-card .item-image,
.related-product-card .related-product-image,
.related-product-card .featured-item-image,
.related-product-card .category-item-image,
.related-product-card .product-image,
.featured-item-card .item-image,
.featured-item-card .related-product-image,
.featured-item-card .featured-item-image,
.featured-item-card .category-item-image,
.featured-item-card .product-image,
.category-item-card .item-image,
.category-item-card .related-product-image,
.category-item-card .featured-item-image,
.category-item-card .category-item-image,
.category-item-card .product-image,
.product-card .item-image,
.product-card .related-product-image,
.product-card .featured-item-image,
.product-card .category-item-image,
.product-card .product-image {
  min-width: 100%;
  height: 200px !important;
  background-color: var(--bg-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-3xl);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.item-card .item-image img,
.item-card .related-product-image img,
.item-card .featured-item-image img,
.item-card .category-item-image img,
.item-card .product-image img,
.related-product-card .item-image img,
.related-product-card .related-product-image img,
.related-product-card .featured-item-image img,
.related-product-card .category-item-image img,
.related-product-card .product-image img,
.featured-item-card .item-image img,
.featured-item-card .related-product-image img,
.featured-item-card .featured-item-image img,
.featured-item-card .category-item-image img,
.featured-item-card .product-image img,
.category-item-card .item-image img,
.category-item-card .related-product-image img,
.category-item-card .featured-item-image img,
.category-item-card .category-item-image img,
.category-item-card .product-image img,
.product-card .item-image img,
.product-card .related-product-image img,
.product-card .featured-item-image img,
.product-card .category-item-image img,
.product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.item-card .item-image span,
.item-card .related-product-image span,
.item-card .featured-item-image span,
.item-card .category-item-image span,
.item-card .product-image span,
.related-product-card .item-image span,
.related-product-card .related-product-image span,
.related-product-card .featured-item-image span,
.related-product-card .category-item-image span,
.related-product-card .product-image span,
.featured-item-card .item-image span,
.featured-item-card .related-product-image span,
.featured-item-card .featured-item-image span,
.featured-item-card .category-item-image span,
.featured-item-card .product-image span,
.category-item-card .item-image span,
.category-item-card .related-product-image span,
.category-item-card .featured-item-image span,
.category-item-card .category-item-image span,
.category-item-card .product-image span,
.product-card .item-image span,
.product-card .related-product-image span,
.product-card .featured-item-image span,
.product-card .category-item-image span,
.product-card .product-image span {
  color: var(--text-muted);
  font-weight: bold;
  background-color: var(--bg-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
}
.item-card .item-image .item-category,
.item-card .related-product-image .item-category,
.item-card .featured-item-image .item-category,
.item-card .category-item-image .item-category,
.item-card .product-image .item-category,
.related-product-card .item-image .item-category,
.related-product-card .related-product-image .item-category,
.related-product-card .featured-item-image .item-category,
.related-product-card .category-item-image .item-category,
.related-product-card .product-image .item-category,
.featured-item-card .item-image .item-category,
.featured-item-card .related-product-image .item-category,
.featured-item-card .featured-item-image .item-category,
.featured-item-card .category-item-image .item-category,
.featured-item-card .product-image .item-category,
.category-item-card .item-image .item-category,
.category-item-card .related-product-image .item-category,
.category-item-card .featured-item-image .item-category,
.category-item-card .category-item-image .item-category,
.category-item-card .product-image .item-category,
.product-card .item-image .item-category,
.product-card .related-product-image .item-category,
.product-card .featured-item-image .item-category,
.product-card .category-item-image .item-category,
.product-card .product-image .item-category {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.item-card .item-content,
.item-card .related-product-info,
.item-card .featured-item-content,
.item-card .category-item-content,
.item-card .product-content,
.related-product-card .item-content,
.related-product-card .related-product-info,
.related-product-card .featured-item-content,
.related-product-card .category-item-content,
.related-product-card .product-content,
.featured-item-card .item-content,
.featured-item-card .related-product-info,
.featured-item-card .featured-item-content,
.featured-item-card .category-item-content,
.featured-item-card .product-content,
.category-item-card .item-content,
.category-item-card .related-product-info,
.category-item-card .featured-item-content,
.category-item-card .category-item-content,
.category-item-card .product-content,
.product-card .item-content,
.product-card .related-product-info,
.product-card .featured-item-content,
.product-card .category-item-content,
.product-card .product-content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.item-card .item-content h3,
.item-card .related-product-info h3,
.item-card .featured-item-content h3,
.item-card .category-item-content h3,
.item-card .product-content h3,
.related-product-card .item-content h3,
.related-product-card .related-product-info h3,
.related-product-card .featured-item-content h3,
.related-product-card .category-item-content h3,
.related-product-card .product-content h3,
.featured-item-card .item-content h3,
.featured-item-card .related-product-info h3,
.featured-item-card .featured-item-content h3,
.featured-item-card .category-item-content h3,
.featured-item-card .product-content h3,
.category-item-card .item-content h3,
.category-item-card .related-product-info h3,
.category-item-card .featured-item-content h3,
.category-item-card .category-item-content h3,
.category-item-card .product-content h3,
.product-card .item-content h3,
.product-card .related-product-info h3,
.product-card .featured-item-content h3,
.product-card .category-item-content h3,
.product-card .product-content h3 {
  color: var(--primary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  line-height: 1.3;
}
.item-card .item-content .item-price,
.item-card .item-content .related-product-price,
.item-card .item-content .featured-item-price,
.item-card .item-content .category-item-price,
.item-card .item-content .product-price,
.item-card .related-product-info .item-price,
.item-card .related-product-info .related-product-price,
.item-card .related-product-info .featured-item-price,
.item-card .related-product-info .category-item-price,
.item-card .related-product-info .product-price,
.item-card .featured-item-content .item-price,
.item-card .featured-item-content .related-product-price,
.item-card .featured-item-content .featured-item-price,
.item-card .featured-item-content .category-item-price,
.item-card .featured-item-content .product-price,
.item-card .category-item-content .item-price,
.item-card .category-item-content .related-product-price,
.item-card .category-item-content .featured-item-price,
.item-card .category-item-content .category-item-price,
.item-card .category-item-content .product-price,
.item-card .product-content .item-price,
.item-card .product-content .related-product-price,
.item-card .product-content .featured-item-price,
.item-card .product-content .category-item-price,
.item-card .product-content .product-price,
.related-product-card .item-content .item-price,
.related-product-card .item-content .related-product-price,
.related-product-card .item-content .featured-item-price,
.related-product-card .item-content .category-item-price,
.related-product-card .item-content .product-price,
.related-product-card .related-product-info .item-price,
.related-product-card .related-product-info .related-product-price,
.related-product-card .related-product-info .featured-item-price,
.related-product-card .related-product-info .category-item-price,
.related-product-card .related-product-info .product-price,
.related-product-card .featured-item-content .item-price,
.related-product-card .featured-item-content .related-product-price,
.related-product-card .featured-item-content .featured-item-price,
.related-product-card .featured-item-content .category-item-price,
.related-product-card .featured-item-content .product-price,
.related-product-card .category-item-content .item-price,
.related-product-card .category-item-content .related-product-price,
.related-product-card .category-item-content .featured-item-price,
.related-product-card .category-item-content .category-item-price,
.related-product-card .category-item-content .product-price,
.related-product-card .product-content .item-price,
.related-product-card .product-content .related-product-price,
.related-product-card .product-content .featured-item-price,
.related-product-card .product-content .category-item-price,
.related-product-card .product-content .product-price,
.featured-item-card .item-content .item-price,
.featured-item-card .item-content .related-product-price,
.featured-item-card .item-content .featured-item-price,
.featured-item-card .item-content .category-item-price,
.featured-item-card .item-content .product-price,
.featured-item-card .related-product-info .item-price,
.featured-item-card .related-product-info .related-product-price,
.featured-item-card .related-product-info .featured-item-price,
.featured-item-card .related-product-info .category-item-price,
.featured-item-card .related-product-info .product-price,
.featured-item-card .featured-item-content .item-price,
.featured-item-card .featured-item-content .related-product-price,
.featured-item-card .featured-item-content .featured-item-price,
.featured-item-card .featured-item-content .category-item-price,
.featured-item-card .featured-item-content .product-price,
.featured-item-card .category-item-content .item-price,
.featured-item-card .category-item-content .related-product-price,
.featured-item-card .category-item-content .featured-item-price,
.featured-item-card .category-item-content .category-item-price,
.featured-item-card .category-item-content .product-price,
.featured-item-card .product-content .item-price,
.featured-item-card .product-content .related-product-price,
.featured-item-card .product-content .featured-item-price,
.featured-item-card .product-content .category-item-price,
.featured-item-card .product-content .product-price,
.category-item-card .item-content .item-price,
.category-item-card .item-content .related-product-price,
.category-item-card .item-content .featured-item-price,
.category-item-card .item-content .category-item-price,
.category-item-card .item-content .product-price,
.category-item-card .related-product-info .item-price,
.category-item-card .related-product-info .related-product-price,
.category-item-card .related-product-info .featured-item-price,
.category-item-card .related-product-info .category-item-price,
.category-item-card .related-product-info .product-price,
.category-item-card .featured-item-content .item-price,
.category-item-card .featured-item-content .related-product-price,
.category-item-card .featured-item-content .featured-item-price,
.category-item-card .featured-item-content .category-item-price,
.category-item-card .featured-item-content .product-price,
.category-item-card .category-item-content .item-price,
.category-item-card .category-item-content .related-product-price,
.category-item-card .category-item-content .featured-item-price,
.category-item-card .category-item-content .category-item-price,
.category-item-card .category-item-content .product-price,
.category-item-card .product-content .item-price,
.category-item-card .product-content .related-product-price,
.category-item-card .product-content .featured-item-price,
.category-item-card .product-content .category-item-price,
.category-item-card .product-content .product-price,
.product-card .item-content .item-price,
.product-card .item-content .related-product-price,
.product-card .item-content .featured-item-price,
.product-card .item-content .category-item-price,
.product-card .item-content .product-price,
.product-card .related-product-info .item-price,
.product-card .related-product-info .related-product-price,
.product-card .related-product-info .featured-item-price,
.product-card .related-product-info .category-item-price,
.product-card .related-product-info .product-price,
.product-card .featured-item-content .item-price,
.product-card .featured-item-content .related-product-price,
.product-card .featured-item-content .featured-item-price,
.product-card .featured-item-content .category-item-price,
.product-card .featured-item-content .product-price,
.product-card .category-item-content .item-price,
.product-card .category-item-content .related-product-price,
.product-card .category-item-content .featured-item-price,
.product-card .category-item-content .category-item-price,
.product-card .category-item-content .product-price,
.product-card .product-content .item-price,
.product-card .product-content .related-product-price,
.product-card .product-content .featured-item-price,
.product-card .product-content .category-item-price,
.product-card .product-content .product-price {
  color: var(--primary);
  font-weight: bold;
  font-size: var(--font-size-md);
  margin-bottom: var(--spacing-sm);
}
.item-card .item-content .item-description,
.item-card .item-content .related-product-info p,
.item-card .item-content .featured-item-description,
.item-card .item-content .category-item-description,
.item-card .item-content .product-description,
.item-card .related-product-info .item-description,
.item-card .related-product-info .related-product-info p,
.item-card .related-product-info .featured-item-description,
.item-card .related-product-info .category-item-description,
.item-card .related-product-info .product-description,
.item-card .featured-item-content .item-description,
.item-card .featured-item-content .related-product-info p,
.item-card .featured-item-content .featured-item-description,
.item-card .featured-item-content .category-item-description,
.item-card .featured-item-content .product-description,
.item-card .category-item-content .item-description,
.item-card .category-item-content .related-product-info p,
.item-card .category-item-content .featured-item-description,
.item-card .category-item-content .category-item-description,
.item-card .category-item-content .product-description,
.item-card .product-content .item-description,
.item-card .product-content .related-product-info p,
.item-card .product-content .featured-item-description,
.item-card .product-content .category-item-description,
.item-card .product-content .product-description,
.related-product-card .item-content .item-description,
.related-product-card .item-content .related-product-info p,
.related-product-card .item-content .featured-item-description,
.related-product-card .item-content .category-item-description,
.related-product-card .item-content .product-description,
.related-product-card .related-product-info .item-description,
.related-product-card .related-product-info .related-product-info p,
.related-product-card .related-product-info .featured-item-description,
.related-product-card .related-product-info .category-item-description,
.related-product-card .related-product-info .product-description,
.related-product-card .featured-item-content .item-description,
.related-product-card .featured-item-content .related-product-info p,
.related-product-card .featured-item-content .featured-item-description,
.related-product-card .featured-item-content .category-item-description,
.related-product-card .featured-item-content .product-description,
.related-product-card .category-item-content .item-description,
.related-product-card .category-item-content .related-product-info p,
.related-product-card .category-item-content .featured-item-description,
.related-product-card .category-item-content .category-item-description,
.related-product-card .category-item-content .product-description,
.related-product-card .product-content .item-description,
.related-product-card .product-content .related-product-info p,
.related-product-card .product-content .featured-item-description,
.related-product-card .product-content .category-item-description,
.related-product-card .product-content .product-description,
.featured-item-card .item-content .item-description,
.featured-item-card .item-content .related-product-info p,
.featured-item-card .item-content .featured-item-description,
.featured-item-card .item-content .category-item-description,
.featured-item-card .item-content .product-description,
.featured-item-card .related-product-info .item-description,
.featured-item-card .related-product-info .related-product-info p,
.featured-item-card .related-product-info .featured-item-description,
.featured-item-card .related-product-info .category-item-description,
.featured-item-card .related-product-info .product-description,
.featured-item-card .featured-item-content .item-description,
.featured-item-card .featured-item-content .related-product-info p,
.featured-item-card .featured-item-content .featured-item-description,
.featured-item-card .featured-item-content .category-item-description,
.featured-item-card .featured-item-content .product-description,
.featured-item-card .category-item-content .item-description,
.featured-item-card .category-item-content .related-product-info p,
.featured-item-card .category-item-content .featured-item-description,
.featured-item-card .category-item-content .category-item-description,
.featured-item-card .category-item-content .product-description,
.featured-item-card .product-content .item-description,
.featured-item-card .product-content .related-product-info p,
.featured-item-card .product-content .featured-item-description,
.featured-item-card .product-content .category-item-description,
.featured-item-card .product-content .product-description,
.category-item-card .item-content .item-description,
.category-item-card .item-content .related-product-info p,
.category-item-card .item-content .featured-item-description,
.category-item-card .item-content .category-item-description,
.category-item-card .item-content .product-description,
.category-item-card .related-product-info .item-description,
.category-item-card .related-product-info .related-product-info p,
.category-item-card .related-product-info .featured-item-description,
.category-item-card .related-product-info .category-item-description,
.category-item-card .related-product-info .product-description,
.category-item-card .featured-item-content .item-description,
.category-item-card .featured-item-content .related-product-info p,
.category-item-card .featured-item-content .featured-item-description,
.category-item-card .featured-item-content .category-item-description,
.category-item-card .featured-item-content .product-description,
.category-item-card .category-item-content .item-description,
.category-item-card .category-item-content .related-product-info p,
.category-item-card .category-item-content .featured-item-description,
.category-item-card .category-item-content .category-item-description,
.category-item-card .category-item-content .product-description,
.category-item-card .product-content .item-description,
.category-item-card .product-content .related-product-info p,
.category-item-card .product-content .featured-item-description,
.category-item-card .product-content .category-item-description,
.category-item-card .product-content .product-description,
.product-card .item-content .item-description,
.product-card .item-content .related-product-info p,
.product-card .item-content .featured-item-description,
.product-card .item-content .category-item-description,
.product-card .item-content .product-description,
.product-card .related-product-info .item-description,
.product-card .related-product-info .related-product-info p,
.product-card .related-product-info .featured-item-description,
.product-card .related-product-info .category-item-description,
.product-card .related-product-info .product-description,
.product-card .featured-item-content .item-description,
.product-card .featured-item-content .related-product-info p,
.product-card .featured-item-content .featured-item-description,
.product-card .featured-item-content .category-item-description,
.product-card .featured-item-content .product-description,
.product-card .category-item-content .item-description,
.product-card .category-item-content .related-product-info p,
.product-card .category-item-content .featured-item-description,
.product-card .category-item-content .category-item-description,
.product-card .category-item-content .product-description,
.product-card .product-content .item-description,
.product-card .product-content .related-product-info p,
.product-card .product-content .featured-item-description,
.product-card .product-content .category-item-description,
.product-card .product-content .product-description {
  color: var(--text-secondary);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: var(--spacing-sm);
}
.item-card .item-content .item-footer,
.item-card .item-content .product-footer,
.item-card .related-product-info .item-footer,
.item-card .related-product-info .product-footer,
.item-card .featured-item-content .item-footer,
.item-card .featured-item-content .product-footer,
.item-card .category-item-content .item-footer,
.item-card .category-item-content .product-footer,
.item-card .product-content .item-footer,
.item-card .product-content .product-footer,
.related-product-card .item-content .item-footer,
.related-product-card .item-content .product-footer,
.related-product-card .related-product-info .item-footer,
.related-product-card .related-product-info .product-footer,
.related-product-card .featured-item-content .item-footer,
.related-product-card .featured-item-content .product-footer,
.related-product-card .category-item-content .item-footer,
.related-product-card .category-item-content .product-footer,
.related-product-card .product-content .item-footer,
.related-product-card .product-content .product-footer,
.featured-item-card .item-content .item-footer,
.featured-item-card .item-content .product-footer,
.featured-item-card .related-product-info .item-footer,
.featured-item-card .related-product-info .product-footer,
.featured-item-card .featured-item-content .item-footer,
.featured-item-card .featured-item-content .product-footer,
.featured-item-card .category-item-content .item-footer,
.featured-item-card .category-item-content .product-footer,
.featured-item-card .product-content .item-footer,
.featured-item-card .product-content .product-footer,
.category-item-card .item-content .item-footer,
.category-item-card .item-content .product-footer,
.category-item-card .related-product-info .item-footer,
.category-item-card .related-product-info .product-footer,
.category-item-card .featured-item-content .item-footer,
.category-item-card .featured-item-content .product-footer,
.category-item-card .category-item-content .item-footer,
.category-item-card .category-item-content .product-footer,
.category-item-card .product-content .item-footer,
.category-item-card .product-content .product-footer,
.product-card .item-content .item-footer,
.product-card .item-content .product-footer,
.product-card .related-product-info .item-footer,
.product-card .related-product-info .product-footer,
.product-card .featured-item-content .item-footer,
.product-card .featured-item-content .product-footer,
.product-card .category-item-content .item-footer,
.product-card .category-item-content .product-footer,
.product-card .product-content .item-footer,
.product-card .product-content .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.item-card .item-content .item-footer .item-link,
.item-card .item-content .item-footer .product-link,
.item-card .item-content .product-footer .item-link,
.item-card .item-content .product-footer .product-link,
.item-card .related-product-info .item-footer .item-link,
.item-card .related-product-info .item-footer .product-link,
.item-card .related-product-info .product-footer .item-link,
.item-card .related-product-info .product-footer .product-link,
.item-card .featured-item-content .item-footer .item-link,
.item-card .featured-item-content .item-footer .product-link,
.item-card .featured-item-content .product-footer .item-link,
.item-card .featured-item-content .product-footer .product-link,
.item-card .category-item-content .item-footer .item-link,
.item-card .category-item-content .item-footer .product-link,
.item-card .category-item-content .product-footer .item-link,
.item-card .category-item-content .product-footer .product-link,
.item-card .product-content .item-footer .item-link,
.item-card .product-content .item-footer .product-link,
.item-card .product-content .product-footer .item-link,
.item-card .product-content .product-footer .product-link,
.related-product-card .item-content .item-footer .item-link,
.related-product-card .item-content .item-footer .product-link,
.related-product-card .item-content .product-footer .item-link,
.related-product-card .item-content .product-footer .product-link,
.related-product-card .related-product-info .item-footer .item-link,
.related-product-card .related-product-info .item-footer .product-link,
.related-product-card .related-product-info .product-footer .item-link,
.related-product-card .related-product-info .product-footer .product-link,
.related-product-card .featured-item-content .item-footer .item-link,
.related-product-card .featured-item-content .item-footer .product-link,
.related-product-card .featured-item-content .product-footer .item-link,
.related-product-card .featured-item-content .product-footer .product-link,
.related-product-card .category-item-content .item-footer .item-link,
.related-product-card .category-item-content .item-footer .product-link,
.related-product-card .category-item-content .product-footer .item-link,
.related-product-card .category-item-content .product-footer .product-link,
.related-product-card .product-content .item-footer .item-link,
.related-product-card .product-content .item-footer .product-link,
.related-product-card .product-content .product-footer .item-link,
.related-product-card .product-content .product-footer .product-link,
.featured-item-card .item-content .item-footer .item-link,
.featured-item-card .item-content .item-footer .product-link,
.featured-item-card .item-content .product-footer .item-link,
.featured-item-card .item-content .product-footer .product-link,
.featured-item-card .related-product-info .item-footer .item-link,
.featured-item-card .related-product-info .item-footer .product-link,
.featured-item-card .related-product-info .product-footer .item-link,
.featured-item-card .related-product-info .product-footer .product-link,
.featured-item-card .featured-item-content .item-footer .item-link,
.featured-item-card .featured-item-content .item-footer .product-link,
.featured-item-card .featured-item-content .product-footer .item-link,
.featured-item-card .featured-item-content .product-footer .product-link,
.featured-item-card .category-item-content .item-footer .item-link,
.featured-item-card .category-item-content .item-footer .product-link,
.featured-item-card .category-item-content .product-footer .item-link,
.featured-item-card .category-item-content .product-footer .product-link,
.featured-item-card .product-content .item-footer .item-link,
.featured-item-card .product-content .item-footer .product-link,
.featured-item-card .product-content .product-footer .item-link,
.featured-item-card .product-content .product-footer .product-link,
.category-item-card .item-content .item-footer .item-link,
.category-item-card .item-content .item-footer .product-link,
.category-item-card .item-content .product-footer .item-link,
.category-item-card .item-content .product-footer .product-link,
.category-item-card .related-product-info .item-footer .item-link,
.category-item-card .related-product-info .item-footer .product-link,
.category-item-card .related-product-info .product-footer .item-link,
.category-item-card .related-product-info .product-footer .product-link,
.category-item-card .featured-item-content .item-footer .item-link,
.category-item-card .featured-item-content .item-footer .product-link,
.category-item-card .featured-item-content .product-footer .item-link,
.category-item-card .featured-item-content .product-footer .product-link,
.category-item-card .category-item-content .item-footer .item-link,
.category-item-card .category-item-content .item-footer .product-link,
.category-item-card .category-item-content .product-footer .item-link,
.category-item-card .category-item-content .product-footer .product-link,
.category-item-card .product-content .item-footer .item-link,
.category-item-card .product-content .item-footer .product-link,
.category-item-card .product-content .product-footer .item-link,
.category-item-card .product-content .product-footer .product-link,
.product-card .item-content .item-footer .item-link,
.product-card .item-content .item-footer .product-link,
.product-card .item-content .product-footer .item-link,
.product-card .item-content .product-footer .product-link,
.product-card .related-product-info .item-footer .item-link,
.product-card .related-product-info .item-footer .product-link,
.product-card .related-product-info .product-footer .item-link,
.product-card .related-product-info .product-footer .product-link,
.product-card .featured-item-content .item-footer .item-link,
.product-card .featured-item-content .item-footer .product-link,
.product-card .featured-item-content .product-footer .item-link,
.product-card .featured-item-content .product-footer .product-link,
.product-card .category-item-content .item-footer .item-link,
.product-card .category-item-content .item-footer .product-link,
.product-card .category-item-content .product-footer .item-link,
.product-card .category-item-content .product-footer .product-link,
.product-card .product-content .item-footer .item-link,
.product-card .product-content .item-footer .product-link,
.product-card .product-content .product-footer .item-link,
.product-card .product-content .product-footer .product-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}
.item-card .item-content .item-footer .item-link:hover,
.item-card .item-content .item-footer .product-link:hover,
.item-card .item-content .product-footer .item-link:hover,
.item-card .item-content .product-footer .product-link:hover,
.item-card .related-product-info .item-footer .item-link:hover,
.item-card .related-product-info .item-footer .product-link:hover,
.item-card .related-product-info .product-footer .item-link:hover,
.item-card .related-product-info .product-footer .product-link:hover,
.item-card .featured-item-content .item-footer .item-link:hover,
.item-card .featured-item-content .item-footer .product-link:hover,
.item-card .featured-item-content .product-footer .item-link:hover,
.item-card .featured-item-content .product-footer .product-link:hover,
.item-card .category-item-content .item-footer .item-link:hover,
.item-card .category-item-content .item-footer .product-link:hover,
.item-card .category-item-content .product-footer .item-link:hover,
.item-card .category-item-content .product-footer .product-link:hover,
.item-card .product-content .item-footer .item-link:hover,
.item-card .product-content .item-footer .product-link:hover,
.item-card .product-content .product-footer .item-link:hover,
.item-card .product-content .product-footer .product-link:hover,
.related-product-card .item-content .item-footer .item-link:hover,
.related-product-card .item-content .item-footer .product-link:hover,
.related-product-card .item-content .product-footer .item-link:hover,
.related-product-card .item-content .product-footer .product-link:hover,
.related-product-card .related-product-info .item-footer .item-link:hover,
.related-product-card .related-product-info .item-footer .product-link:hover,
.related-product-card .related-product-info .product-footer .item-link:hover,
.related-product-card .related-product-info .product-footer .product-link:hover,
.related-product-card .featured-item-content .item-footer .item-link:hover,
.related-product-card .featured-item-content .item-footer .product-link:hover,
.related-product-card .featured-item-content .product-footer .item-link:hover,
.related-product-card .featured-item-content .product-footer .product-link:hover,
.related-product-card .category-item-content .item-footer .item-link:hover,
.related-product-card .category-item-content .item-footer .product-link:hover,
.related-product-card .category-item-content .product-footer .item-link:hover,
.related-product-card .category-item-content .product-footer .product-link:hover,
.related-product-card .product-content .item-footer .item-link:hover,
.related-product-card .product-content .item-footer .product-link:hover,
.related-product-card .product-content .product-footer .item-link:hover,
.related-product-card .product-content .product-footer .product-link:hover,
.featured-item-card .item-content .item-footer .item-link:hover,
.featured-item-card .item-content .item-footer .product-link:hover,
.featured-item-card .item-content .product-footer .item-link:hover,
.featured-item-card .item-content .product-footer .product-link:hover,
.featured-item-card .related-product-info .item-footer .item-link:hover,
.featured-item-card .related-product-info .item-footer .product-link:hover,
.featured-item-card .related-product-info .product-footer .item-link:hover,
.featured-item-card .related-product-info .product-footer .product-link:hover,
.featured-item-card .featured-item-content .item-footer .item-link:hover,
.featured-item-card .featured-item-content .item-footer .product-link:hover,
.featured-item-card .featured-item-content .product-footer .item-link:hover,
.featured-item-card .featured-item-content .product-footer .product-link:hover,
.featured-item-card .category-item-content .item-footer .item-link:hover,
.featured-item-card .category-item-content .item-footer .product-link:hover,
.featured-item-card .category-item-content .product-footer .item-link:hover,
.featured-item-card .category-item-content .product-footer .product-link:hover,
.featured-item-card .product-content .item-footer .item-link:hover,
.featured-item-card .product-content .item-footer .product-link:hover,
.featured-item-card .product-content .product-footer .item-link:hover,
.featured-item-card .product-content .product-footer .product-link:hover,
.category-item-card .item-content .item-footer .item-link:hover,
.category-item-card .item-content .item-footer .product-link:hover,
.category-item-card .item-content .product-footer .item-link:hover,
.category-item-card .item-content .product-footer .product-link:hover,
.category-item-card .related-product-info .item-footer .item-link:hover,
.category-item-card .related-product-info .item-footer .product-link:hover,
.category-item-card .related-product-info .product-footer .item-link:hover,
.category-item-card .related-product-info .product-footer .product-link:hover,
.category-item-card .featured-item-content .item-footer .item-link:hover,
.category-item-card .featured-item-content .item-footer .product-link:hover,
.category-item-card .featured-item-content .product-footer .item-link:hover,
.category-item-card .featured-item-content .product-footer .product-link:hover,
.category-item-card .category-item-content .item-footer .item-link:hover,
.category-item-card .category-item-content .item-footer .product-link:hover,
.category-item-card .category-item-content .product-footer .item-link:hover,
.category-item-card .category-item-content .product-footer .product-link:hover,
.category-item-card .product-content .item-footer .item-link:hover,
.category-item-card .product-content .item-footer .product-link:hover,
.category-item-card .product-content .product-footer .item-link:hover,
.category-item-card .product-content .product-footer .product-link:hover,
.product-card .item-content .item-footer .item-link:hover,
.product-card .item-content .item-footer .product-link:hover,
.product-card .item-content .product-footer .item-link:hover,
.product-card .item-content .product-footer .product-link:hover,
.product-card .related-product-info .item-footer .item-link:hover,
.product-card .related-product-info .item-footer .product-link:hover,
.product-card .related-product-info .product-footer .item-link:hover,
.product-card .related-product-info .product-footer .product-link:hover,
.product-card .featured-item-content .item-footer .item-link:hover,
.product-card .featured-item-content .item-footer .product-link:hover,
.product-card .featured-item-content .product-footer .item-link:hover,
.product-card .featured-item-content .product-footer .product-link:hover,
.product-card .category-item-content .item-footer .item-link:hover,
.product-card .category-item-content .item-footer .product-link:hover,
.product-card .category-item-content .product-footer .item-link:hover,
.product-card .category-item-content .product-footer .product-link:hover,
.product-card .product-content .item-footer .item-link:hover,
.product-card .product-content .item-footer .product-link:hover,
.product-card .product-content .product-footer .item-link:hover,
.product-card .product-content .product-footer .product-link:hover {
  color: var(--primary-light);
}
.item-card:hover .item-image img,
.item-card:hover .related-product-image img,
.item-card:hover .featured-item-image img,
.item-card:hover .category-item-image img,
.item-card:hover .product-image img,
.related-product-card:hover .item-image img,
.related-product-card:hover .related-product-image img,
.related-product-card:hover .featured-item-image img,
.related-product-card:hover .category-item-image img,
.related-product-card:hover .product-image img,
.featured-item-card:hover .item-image img,
.featured-item-card:hover .related-product-image img,
.featured-item-card:hover .featured-item-image img,
.featured-item-card:hover .category-item-image img,
.featured-item-card:hover .product-image img,
.category-item-card:hover .item-image img,
.category-item-card:hover .related-product-image img,
.category-item-card:hover .featured-item-image img,
.category-item-card:hover .category-item-image img,
.category-item-card:hover .product-image img,
.product-card:hover .item-image img,
.product-card:hover .related-product-image img,
.product-card:hover .featured-item-image img,
.product-card:hover .category-item-image img,
.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ==========================================================================
   Slider Buttons
   ========================================================================== */
.slider-btn {
  position: absolute;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 0.85;
}
.slider-btn:hover {
  background: var(--primary-light);
  opacity: 1;
}
.slider-btn.slider-btn-left {
  left: 2%;
}
.slider-btn.slider-btn-right {
  right: 2%;
}

/* ==========================================================================
   Loading and Error States
   ========================================================================== */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--spacing-xl);
}
.loading-spinner .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bg-light);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--spacing-md);
}
.loading-spinner p {
  color: var(--text-secondary);
  font-size: var(--font-size-md);
  margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--spacing-xl);
  text-align: center;
}
.error-message h3 {
  color: var(--error);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
}
.error-message p {
  color: var(--text-secondary);
  font-size: var(--font-size-md);
  margin-bottom: var(--spacing-lg);
}
.error-message .retry-btn {
  padding: var(--spacing-sm) var(--spacing-lg);
}

.no-items-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--spacing-xl);
  text-align: center;
}
.no-items-message h3 {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
}
.no-items-message p {
  color: var(--text-muted);
  font-size: var(--font-size-md);
}

/* ==========================================================================
   Filter Section
   ========================================================================== */
.filter-section {
  background: var(--bg-light);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-container {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.search-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
}

.search-input {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-md);
  height: 50px !important;
}
.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

.search-btn {
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 479px) {
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .filter-container {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  .search-group {
    max-width: 100%;
    width: 100%;
  }
  .items-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-md) !important;
  }
  .item-card,
  .related-product-card,
  .featured-item-card,
  .category-item-card,
  .product-card {
    min-height: 260px;
  }
  .item-card .item-image,
  .item-card .related-product-image,
  .item-card .featured-item-image,
  .item-card .category-item-image,
  .item-card .product-image,
  .related-product-card .item-image,
  .related-product-card .related-product-image,
  .related-product-card .featured-item-image,
  .related-product-card .category-item-image,
  .related-product-card .product-image,
  .featured-item-card .item-image,
  .featured-item-card .related-product-image,
  .featured-item-card .featured-item-image,
  .featured-item-card .category-item-image,
  .featured-item-card .product-image,
  .category-item-card .item-image,
  .category-item-card .related-product-image,
  .category-item-card .featured-item-image,
  .category-item-card .category-item-image,
  .category-item-card .product-image,
  .product-card .item-image,
  .product-card .related-product-image,
  .product-card .featured-item-image,
  .product-card .category-item-image,
  .product-card .product-image {
    height: 100px;
  }
  .item-card .item-content,
  .item-card .related-product-info,
  .item-card .featured-item-content,
  .item-card .category-item-content,
  .item-card .product-content,
  .related-product-card .item-content,
  .related-product-card .related-product-info,
  .related-product-card .featured-item-content,
  .related-product-card .category-item-content,
  .related-product-card .product-content,
  .featured-item-card .item-content,
  .featured-item-card .related-product-info,
  .featured-item-card .featured-item-content,
  .featured-item-card .category-item-content,
  .featured-item-card .product-content,
  .category-item-card .item-content,
  .category-item-card .related-product-info,
  .category-item-card .featured-item-content,
  .category-item-card .category-item-content,
  .category-item-card .product-content,
  .product-card .item-content,
  .product-card .related-product-info,
  .product-card .featured-item-content,
  .product-card .category-item-content,
  .product-card .product-content {
    padding: var(--spacing-sm);
  }
  .item-card .item-content h3,
  .item-card .related-product-info h3,
  .item-card .featured-item-content h3,
  .item-card .category-item-content h3,
  .item-card .product-content h3,
  .related-product-card .item-content h3,
  .related-product-card .related-product-info h3,
  .related-product-card .featured-item-content h3,
  .related-product-card .category-item-content h3,
  .related-product-card .product-content h3,
  .featured-item-card .item-content h3,
  .featured-item-card .related-product-info h3,
  .featured-item-card .featured-item-content h3,
  .featured-item-card .category-item-content h3,
  .featured-item-card .product-content h3,
  .category-item-card .item-content h3,
  .category-item-card .related-product-info h3,
  .category-item-card .featured-item-content h3,
  .category-item-card .category-item-content h3,
  .category-item-card .product-content h3,
  .product-card .item-content h3,
  .product-card .related-product-info h3,
  .product-card .featured-item-content h3,
  .product-card .category-item-content h3,
  .product-card .product-content h3 {
    font-size: var(--font-size-md);
  }
  .item-card .item-content .item-description,
  .item-card .item-content .related-product-info p,
  .item-card .item-content .featured-item-description,
  .item-card .item-content .category-item-description,
  .item-card .item-content .product-description,
  .item-card .related-product-info .item-description,
  .item-card .related-product-info .related-product-info p,
  .item-card .related-product-info .featured-item-description,
  .item-card .related-product-info .category-item-description,
  .item-card .related-product-info .product-description,
  .item-card .featured-item-content .item-description,
  .item-card .featured-item-content .related-product-info p,
  .item-card .featured-item-content .featured-item-description,
  .item-card .featured-item-content .category-item-description,
  .item-card .featured-item-content .product-description,
  .item-card .category-item-content .item-description,
  .item-card .category-item-content .related-product-info p,
  .item-card .category-item-content .featured-item-description,
  .item-card .category-item-content .category-item-description,
  .item-card .category-item-content .product-description,
  .item-card .product-content .item-description,
  .item-card .product-content .related-product-info p,
  .item-card .product-content .featured-item-description,
  .item-card .product-content .category-item-description,
  .item-card .product-content .product-description,
  .related-product-card .item-content .item-description,
  .related-product-card .item-content .related-product-info p,
  .related-product-card .item-content .featured-item-description,
  .related-product-card .item-content .category-item-description,
  .related-product-card .item-content .product-description,
  .related-product-card .related-product-info .item-description,
  .related-product-card .related-product-info .related-product-info p,
  .related-product-card .related-product-info .featured-item-description,
  .related-product-card .related-product-info .category-item-description,
  .related-product-card .related-product-info .product-description,
  .related-product-card .featured-item-content .item-description,
  .related-product-card .featured-item-content .related-product-info p,
  .related-product-card .featured-item-content .featured-item-description,
  .related-product-card .featured-item-content .category-item-description,
  .related-product-card .featured-item-content .product-description,
  .related-product-card .category-item-content .item-description,
  .related-product-card .category-item-content .related-product-info p,
  .related-product-card .category-item-content .featured-item-description,
  .related-product-card .category-item-content .category-item-description,
  .related-product-card .category-item-content .product-description,
  .related-product-card .product-content .item-description,
  .related-product-card .product-content .related-product-info p,
  .related-product-card .product-content .featured-item-description,
  .related-product-card .product-content .category-item-description,
  .related-product-card .product-content .product-description,
  .featured-item-card .item-content .item-description,
  .featured-item-card .item-content .related-product-info p,
  .featured-item-card .item-content .featured-item-description,
  .featured-item-card .item-content .category-item-description,
  .featured-item-card .item-content .product-description,
  .featured-item-card .related-product-info .item-description,
  .featured-item-card .related-product-info .related-product-info p,
  .featured-item-card .related-product-info .featured-item-description,
  .featured-item-card .related-product-info .category-item-description,
  .featured-item-card .related-product-info .product-description,
  .featured-item-card .featured-item-content .item-description,
  .featured-item-card .featured-item-content .related-product-info p,
  .featured-item-card .featured-item-content .featured-item-description,
  .featured-item-card .featured-item-content .category-item-description,
  .featured-item-card .featured-item-content .product-description,
  .featured-item-card .category-item-content .item-description,
  .featured-item-card .category-item-content .related-product-info p,
  .featured-item-card .category-item-content .featured-item-description,
  .featured-item-card .category-item-content .category-item-description,
  .featured-item-card .category-item-content .product-description,
  .featured-item-card .product-content .item-description,
  .featured-item-card .product-content .related-product-info p,
  .featured-item-card .product-content .featured-item-description,
  .featured-item-card .product-content .category-item-description,
  .featured-item-card .product-content .product-description,
  .category-item-card .item-content .item-description,
  .category-item-card .item-content .related-product-info p,
  .category-item-card .item-content .featured-item-description,
  .category-item-card .item-content .category-item-description,
  .category-item-card .item-content .product-description,
  .category-item-card .related-product-info .item-description,
  .category-item-card .related-product-info .related-product-info p,
  .category-item-card .related-product-info .featured-item-description,
  .category-item-card .related-product-info .category-item-description,
  .category-item-card .related-product-info .product-description,
  .category-item-card .featured-item-content .item-description,
  .category-item-card .featured-item-content .related-product-info p,
  .category-item-card .featured-item-content .featured-item-description,
  .category-item-card .featured-item-content .category-item-description,
  .category-item-card .featured-item-content .product-description,
  .category-item-card .category-item-content .item-description,
  .category-item-card .category-item-content .related-product-info p,
  .category-item-card .category-item-content .featured-item-description,
  .category-item-card .category-item-content .category-item-description,
  .category-item-card .category-item-content .product-description,
  .category-item-card .product-content .item-description,
  .category-item-card .product-content .related-product-info p,
  .category-item-card .product-content .featured-item-description,
  .category-item-card .product-content .category-item-description,
  .category-item-card .product-content .product-description,
  .product-card .item-content .item-description,
  .product-card .item-content .related-product-info p,
  .product-card .item-content .featured-item-description,
  .product-card .item-content .category-item-description,
  .product-card .item-content .product-description,
  .product-card .related-product-info .item-description,
  .product-card .related-product-info .related-product-info p,
  .product-card .related-product-info .featured-item-description,
  .product-card .related-product-info .category-item-description,
  .product-card .related-product-info .product-description,
  .product-card .featured-item-content .item-description,
  .product-card .featured-item-content .related-product-info p,
  .product-card .featured-item-content .featured-item-description,
  .product-card .featured-item-content .category-item-description,
  .product-card .featured-item-content .product-description,
  .product-card .category-item-content .item-description,
  .product-card .category-item-content .related-product-info p,
  .product-card .category-item-content .featured-item-description,
  .product-card .category-item-content .category-item-description,
  .product-card .category-item-content .product-description,
  .product-card .product-content .item-description,
  .product-card .product-content .related-product-info p,
  .product-card .product-content .featured-item-description,
  .product-card .product-content .category-item-description,
  .product-card .product-content .product-description {
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 768px) {
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .item-card,
  .related-product-card,
  .featured-item-card,
  .category-item-card,
  .product-card {
    min-height: 280px;
  }
  .item-card .item-image,
  .item-card .related-product-image,
  .item-card .featured-item-image,
  .item-card .category-item-image,
  .item-card .product-image,
  .related-product-card .item-image,
  .related-product-card .related-product-image,
  .related-product-card .featured-item-image,
  .related-product-card .category-item-image,
  .related-product-card .product-image,
  .featured-item-card .item-image,
  .featured-item-card .related-product-image,
  .featured-item-card .featured-item-image,
  .featured-item-card .category-item-image,
  .featured-item-card .product-image,
  .category-item-card .item-image,
  .category-item-card .related-product-image,
  .category-item-card .featured-item-image,
  .category-item-card .category-item-image,
  .category-item-card .product-image,
  .product-card .item-image,
  .product-card .related-product-image,
  .product-card .featured-item-image,
  .product-card .category-item-image,
  .product-card .product-image {
    height: 120px;
  }
  .item-card .item-content,
  .item-card .related-product-info,
  .item-card .featured-item-content,
  .item-card .category-item-content,
  .item-card .product-content,
  .related-product-card .item-content,
  .related-product-card .related-product-info,
  .related-product-card .featured-item-content,
  .related-product-card .category-item-content,
  .related-product-card .product-content,
  .featured-item-card .item-content,
  .featured-item-card .related-product-info,
  .featured-item-card .featured-item-content,
  .featured-item-card .category-item-content,
  .featured-item-card .product-content,
  .category-item-card .item-content,
  .category-item-card .related-product-info,
  .category-item-card .featured-item-content,
  .category-item-card .category-item-content,
  .category-item-card .product-content,
  .product-card .item-content,
  .product-card .related-product-info,
  .product-card .featured-item-content,
  .product-card .category-item-content,
  .product-card .product-content {
    padding: var(--spacing-sm);
  }
  .item-card .item-content h3,
  .item-card .related-product-info h3,
  .item-card .featured-item-content h3,
  .item-card .category-item-content h3,
  .item-card .product-content h3,
  .related-product-card .item-content h3,
  .related-product-card .related-product-info h3,
  .related-product-card .featured-item-content h3,
  .related-product-card .category-item-content h3,
  .related-product-card .product-content h3,
  .featured-item-card .item-content h3,
  .featured-item-card .related-product-info h3,
  .featured-item-card .featured-item-content h3,
  .featured-item-card .category-item-content h3,
  .featured-item-card .product-content h3,
  .category-item-card .item-content h3,
  .category-item-card .related-product-info h3,
  .category-item-card .featured-item-content h3,
  .category-item-card .category-item-content h3,
  .category-item-card .product-content h3,
  .product-card .item-content h3,
  .product-card .related-product-info h3,
  .product-card .featured-item-content h3,
  .product-card .category-item-content h3,
  .product-card .product-content h3 {
    font-size: var(--font-size-md);
  }
  .item-card .item-content .item-description,
  .item-card .item-content .related-product-info p,
  .item-card .item-content .featured-item-description,
  .item-card .item-content .category-item-description,
  .item-card .item-content .product-description,
  .item-card .related-product-info .item-description,
  .item-card .related-product-info .related-product-info p,
  .item-card .related-product-info .featured-item-description,
  .item-card .related-product-info .category-item-description,
  .item-card .related-product-info .product-description,
  .item-card .featured-item-content .item-description,
  .item-card .featured-item-content .related-product-info p,
  .item-card .featured-item-content .featured-item-description,
  .item-card .featured-item-content .category-item-description,
  .item-card .featured-item-content .product-description,
  .item-card .category-item-content .item-description,
  .item-card .category-item-content .related-product-info p,
  .item-card .category-item-content .featured-item-description,
  .item-card .category-item-content .category-item-description,
  .item-card .category-item-content .product-description,
  .item-card .product-content .item-description,
  .item-card .product-content .related-product-info p,
  .item-card .product-content .featured-item-description,
  .item-card .product-content .category-item-description,
  .item-card .product-content .product-description,
  .related-product-card .item-content .item-description,
  .related-product-card .item-content .related-product-info p,
  .related-product-card .item-content .featured-item-description,
  .related-product-card .item-content .category-item-description,
  .related-product-card .item-content .product-description,
  .related-product-card .related-product-info .item-description,
  .related-product-card .related-product-info .related-product-info p,
  .related-product-card .related-product-info .featured-item-description,
  .related-product-card .related-product-info .category-item-description,
  .related-product-card .related-product-info .product-description,
  .related-product-card .featured-item-content .item-description,
  .related-product-card .featured-item-content .related-product-info p,
  .related-product-card .featured-item-content .featured-item-description,
  .related-product-card .featured-item-content .category-item-description,
  .related-product-card .featured-item-content .product-description,
  .related-product-card .category-item-content .item-description,
  .related-product-card .category-item-content .related-product-info p,
  .related-product-card .category-item-content .featured-item-description,
  .related-product-card .category-item-content .category-item-description,
  .related-product-card .category-item-content .product-description,
  .related-product-card .product-content .item-description,
  .related-product-card .product-content .related-product-info p,
  .related-product-card .product-content .featured-item-description,
  .related-product-card .product-content .category-item-description,
  .related-product-card .product-content .product-description,
  .featured-item-card .item-content .item-description,
  .featured-item-card .item-content .related-product-info p,
  .featured-item-card .item-content .featured-item-description,
  .featured-item-card .item-content .category-item-description,
  .featured-item-card .item-content .product-description,
  .featured-item-card .related-product-info .item-description,
  .featured-item-card .related-product-info .related-product-info p,
  .featured-item-card .related-product-info .featured-item-description,
  .featured-item-card .related-product-info .category-item-description,
  .featured-item-card .related-product-info .product-description,
  .featured-item-card .featured-item-content .item-description,
  .featured-item-card .featured-item-content .related-product-info p,
  .featured-item-card .featured-item-content .featured-item-description,
  .featured-item-card .featured-item-content .category-item-description,
  .featured-item-card .featured-item-content .product-description,
  .featured-item-card .category-item-content .item-description,
  .featured-item-card .category-item-content .related-product-info p,
  .featured-item-card .category-item-content .featured-item-description,
  .featured-item-card .category-item-content .category-item-description,
  .featured-item-card .category-item-content .product-description,
  .featured-item-card .product-content .item-description,
  .featured-item-card .product-content .related-product-info p,
  .featured-item-card .product-content .featured-item-description,
  .featured-item-card .product-content .category-item-description,
  .featured-item-card .product-content .product-description,
  .category-item-card .item-content .item-description,
  .category-item-card .item-content .related-product-info p,
  .category-item-card .item-content .featured-item-description,
  .category-item-card .item-content .category-item-description,
  .category-item-card .item-content .product-description,
  .category-item-card .related-product-info .item-description,
  .category-item-card .related-product-info .related-product-info p,
  .category-item-card .related-product-info .featured-item-description,
  .category-item-card .related-product-info .category-item-description,
  .category-item-card .related-product-info .product-description,
  .category-item-card .featured-item-content .item-description,
  .category-item-card .featured-item-content .related-product-info p,
  .category-item-card .featured-item-content .featured-item-description,
  .category-item-card .featured-item-content .category-item-description,
  .category-item-card .featured-item-content .product-description,
  .category-item-card .category-item-content .item-description,
  .category-item-card .category-item-content .related-product-info p,
  .category-item-card .category-item-content .featured-item-description,
  .category-item-card .category-item-content .category-item-description,
  .category-item-card .category-item-content .product-description,
  .category-item-card .product-content .item-description,
  .category-item-card .product-content .related-product-info p,
  .category-item-card .product-content .featured-item-description,
  .category-item-card .product-content .category-item-description,
  .category-item-card .product-content .product-description,
  .product-card .item-content .item-description,
  .product-card .item-content .related-product-info p,
  .product-card .item-content .featured-item-description,
  .product-card .item-content .category-item-description,
  .product-card .item-content .product-description,
  .product-card .related-product-info .item-description,
  .product-card .related-product-info .related-product-info p,
  .product-card .related-product-info .featured-item-description,
  .product-card .related-product-info .category-item-description,
  .product-card .related-product-info .product-description,
  .product-card .featured-item-content .item-description,
  .product-card .featured-item-content .related-product-info p,
  .product-card .featured-item-content .featured-item-description,
  .product-card .featured-item-content .category-item-description,
  .product-card .featured-item-content .product-description,
  .product-card .category-item-content .item-description,
  .product-card .category-item-content .related-product-info p,
  .product-card .category-item-content .featured-item-description,
  .product-card .category-item-content .category-item-description,
  .product-card .category-item-content .product-description,
  .product-card .product-content .item-description,
  .product-card .product-content .related-product-info p,
  .product-card .product-content .featured-item-description,
  .product-card .product-content .category-item-description,
  .product-card .product-content .product-description {
    -webkit-line-clamp: 2;
  }
}
/* Back Navigation */
.back-navigation {
  padding: clamp(1rem, 3vw, 2rem) var(--spacing-md);
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.back-navigation .back-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.back-navigation .back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.back-navigation .back-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.back-navigation .back-btn:hover::before {
  left: 100%;
}

/* Product Details */
.product-details {
  padding: clamp(3rem, 8vh, 5rem) var(--spacing-md);
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}
.product-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.product-details .product-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}
@media (min-width: 768px) {
  .product-details .product-container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Product Image */
.product-image {
  width: 100%;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.product-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 2s infinite;
}
.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-xl);
}

/* Product Info */
.product-info {
  background: var(--bg-white);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.product-info .product-actions {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.product-info .product-actions:hover {
  background: rgba(255, 255, 255, 0.4235294118);
  cursor: pointer;
}
.product-info .product-actions .share-btn {
  color: white !important;
}
.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}
.product-info .product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.product-info .product-header .product-title {
  flex: 1;
  min-width: 200px;
}
.product-info .product-header .product-title h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.product-info .product-header .product-category {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 2.5vw, 1.5rem);
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.product-info .product-header .product-price {
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-info .product-description {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
  opacity: 0.9;
}

/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* About Content Section */
.about-content {
  padding: clamp(3rem, 8vh, 5rem) var(--spacing-md);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
}
.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.about-content .content-container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column;
  gap: 20px !important;
}

/* Story, Team, and Commitment Sections */
.story-section,
.team-section,
.commitment-section {
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: var(--border-radius-xl);
  margin-bottom: clamp(2rem, 5vh, 3rem);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid var(--primary) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
}
.story-section::before,
.team-section::before,
.commitment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.story-section h2,
.team-section h2,
.commitment-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vh, 2.25rem);
  font-weight: 800;
  position: relative;
  letter-spacing: 0.5px;
}
.story-section h2::after,
.team-section h2::after,
.commitment-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, var(--text-secondary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.8s ease-in-out;
}
.story-section:hover h2::after,
.team-section:hover h2::after,
.commitment-section:hover h2::after {
  width: 250px;
}
.story-section .story-section:hover h2::after,
.story-section .team-section:hover h2::after,
.story-section .commitment-section:hover h2::after,
.team-section .story-section:hover h2::after,
.team-section .team-section:hover h2::after,
.team-section .commitment-section:hover h2::after,
.commitment-section .story-section:hover h2::after,
.commitment-section .team-section:hover h2::after,
.commitment-section .commitment-section:hover h2::after {
  width: 250px !important;
}
.story-section p,
.team-section p,
.commitment-section p {
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.9;
  margin-bottom: clamp(1rem, 3vh, 1.5rem);
  font-weight: 400;
  text-align: center;
}
.story-section p:last-child,
.team-section p:last-child,
.commitment-section p:last-child {
  margin-bottom: 0;
}
.story-section p:lang(ar),
.team-section p:lang(ar),
.commitment-section p:lang(ar) {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
}

/* Values Section */
.values-section {
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: var(--border-radius-xl);
  margin-bottom: clamp(2rem, 5vh, 3rem);
  border: 1px solid var(--primary) !important;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}
.values-section h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: clamp(2rem, 5vh, 3rem);
  text-align: center;
  font-weight: 800;
  position: relative;
}
.values-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, var(--text-secondary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.6s ease-in-out;
}
.values-section:hover h2::after {
  width: 250px;
}
.values-section .values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vh, 2rem);
}
@media (min-width: 768px) {
  .values-section .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .values-section .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.values-section .value-card {
  background: var(--bg-lighter);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.values-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  border-color: var(--text-secondary);
}
.values-section .value-card:hover::before {
  transform: scaleX(1);
}
.values-section .value-card .value-icon {
  font-size: 2.7rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  transition: transform 0.3s ease;
}
.values-section .value-card:hover .value-icon {
  transform: scale(1.1);
}
.values-section .value-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  line-height: 1.2;
}
.values-section .value-card p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Commitment Section List */
.commitment-section h2 {
  text-align: center;
}
.commitment-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vh, 2rem);
}
.commitment-section li {
  background: var(--bg-lighter);
  padding: 12px;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.commitment-section li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--text-secondary), var(--primary-dark));
  transform: scaleX(0);
  transition: width 0.8s ease-in-out;
}
.commitment-section li:hover {
  transform: translateY(-4px);
}
.commitment-section li::marker {
  color: var(--primary);
}
.commitment-section .commitment-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}
.commitment-section .commitment-item .commitment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.commitment-section .commitment-item .commitment-icon .fi {
  font-size: 24px;
  color: var(--text-secondary);
  margin-right: var(--spacing-sm);
  display: flex;
}
.commitment-section .commitment-item .commitment-content h4 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-md);
}
.commitment-section .commitment-item .commitment-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Call to Action Section */
.cta-section {
  background-color: var(--bg-darker);
  padding: var(--spacing-3xl) var(--spacing-md);
  text-align: center;
}
.cta-section .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  font-size: var(--font-size-3xl);
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
}
.cta-section .cta-content p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-2xl);
}
.cta-section .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}
@media (min-width: 480px) {
  .cta-section .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.cta-section .cta-btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  font-size: var(--font-size-lg);
  transition: all var(--transition-fast);
  min-width: 200px;
  text-align: center;
}
.cta-section .cta-btn.primary {
  background-color: var(--primary);
  color: var(--bg-darker);
}
.cta-section .cta-btn.primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
}
.cta-section .cta-btn.secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cta-section .cta-btn.secondary:hover {
  background-color: var(--primary);
  color: var(--bg-darker);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .commitment-item {
    flex-direction: column;
    text-align: center;
  }
}
/* Content Visibility States */
.about-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 100px;
}
.about-content.content-loaded {
  opacity: 1;
  visibility: visible;
}
.about-content.content-loaded .story-section,
.about-content.content-loaded .values-section,
.about-content.content-loaded .team-section,
.about-content.content-loaded .commitment-section {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  padding: 30px;
}
.about-content .content-container {
  display: block !important;
  visibility: visible !important;
}
.about-content .story-section,
.about-content .values-section,
.about-content .team-section,
.about-content .commitment-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-bottom: var(--spacing-lg);
  border: 1px solid transparent;
}
.about-content .content-container {
  min-height: 200px;
}
.about-content .value-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .commitment-item {
  min-height: 80px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .about-content .content-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-inline: var(--spacing-sm);
  }
  .about-content .story-section,
  .about-content .values-section,
  .about-content .team-section,
  .about-content .commitment-section {
    border-radius: var(--border-radius-lg);
    padding: 20px !important;
    margin-bottom: var(--spacing-md);
  }
  .about-content .value-card {
    padding: 20px;
  }
  .about-content .commitment-item {
    flex-direction: column;
    text-align: center;
  }
  .about-content .commitment-item .commitment-icon {
    margin-bottom: var(--spacing-sm);
    justify-content: center;
  }
  .about-content .commitment-item .commitment-content h4,
  .about-content .commitment-item .commitment-content p {
    text-align: center;
  }
}
/* Contact Information Section */
.contact-info {
  padding: clamp(3rem, 8vh, 5rem) var(--spacing-md);
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  position: relative;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.contact-info .info-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 4vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 480px) {
  .contact-info .info-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .contact-info .info-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-info .info-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-info .info-card {
  background: var(--bg-light);
  padding: clamp(1rem, 1vw, 1rem);
  border-radius: var(--border-radius-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-info .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--text-secondary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.contact-info .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}
.contact-info .info-card:hover::before {
  transform: scaleX(1);
}
.contact-info .info-card:hover .info-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.contact-info .info-card .info-icon {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--primary);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info .info-card .info-icon i {
  font-size: inherit;
  color: inherit;
}
.contact-info .info-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  line-height: 1.2;
}
.contact-info .info-card p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.contact-info .info-card a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}
.contact-info .info-card a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}
.contact-info .info-card a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}
.contact-info .info-card a:hover::after {
  width: 100%;
}

/* Contact Hours Section */
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--bg-lighter);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}
.contact-hours .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-hours .hours-item:last-child {
  border-bottom: none;
}
.contact-hours .hours-item .days {
  font-weight: 600;
  color: var(--text-primary);
}
.contact-hours .hours-item .time {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Loading and Error States */
.loading-container {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--text-secondary);
}
.loading-container .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-md);
}

.error-message {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--text-secondary);
}
.error-message h3 {
  color: var(--error);
  margin-bottom: var(--spacing-md);
}
.error-message .error-actions {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}
.error-message .error-actions .retry-btn,
.error-message .error-actions .test-btn,
.error-message .error-actions .contact-test-btn,
.error-message .error-actions .debug-btn {
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
}
.error-message .error-actions .retry-btn:hover,
.error-message .error-actions .test-btn:hover,
.error-message .error-actions .contact-test-btn:hover,
.error-message .error-actions .debug-btn:hover {
  opacity: 0.8;
}
.error-message .error-actions .retry-btn {
  background: var(--primary);
  color: var(--text-white);
}
.error-message .error-actions .test-btn {
  background: var(--error);
  color: var(--text-white);
}
.error-message .error-actions .contact-test-btn {
  background: var(--accent-color);
  color: var(--text-white);
}
.error-message .error-actions .debug-btn {
  background: var(--bg-dark);
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

/* Additional Info Section */
.additional-info {
  padding: clamp(3rem, 8vh, 5rem) var(--spacing-md);
  background-color: #161616 !important;
  position: relative;
}
.additional-info .info-grid {
  max-width: var(--container-max-width);
  justify-content: center;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 4vh, 2rem);
}
@media (min-width: 480px) {
  .additional-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .additional-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .additional-info .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .additional-info .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.additional-info .info-block {
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--border-radius-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-width: none;
}
.additional-info .info-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.additional-info .info-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}
.additional-info .info-block:hover::before {
  transform: scaleX(1);
}
.additional-info .info-block h3 {
  font-size: var(--font-size-xl);
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}
.additional-info .info-block p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-form-section {
  padding: clamp(3rem, 8vh, 5rem) var(--spacing-md);
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--text-primary);
}
.contact-form-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  color: var(--primary);
}
.contact-form-section .contact-form {
  min-width: 80%;
  margin: 0 auto;
}
/* تحسينات للموبايل */
@media (max-width: 480px) {
  .contact-info {
    padding: clamp(1.5rem, 4vh, 2.5rem) var(--spacing-xs);
  }
  .contact-info .info-container {
    gap: var(--spacing-md);
  }
  .contact-info .info-card {
    padding: clamp(0.75rem, 2vw, 1rem);
    border-radius: var(--border-radius-lg);
  }
  .contact-info .info-card .info-icon {
    font-size: 2.2rem;
  }
  .contact-info .info-card h3 {
    font-size: 1.05rem;
  }
  .contact-info .info-card p {
    font-size: 0.95rem;
  }
}
/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.info-column {
  flex: 1 1 400px;
  min-height: 400px;
  width: 100%;
  /*════════════════════════════════════════
  ||           Info Column Responsive       ||
  ════════════════════════════════════════*/
}
.info-column .map-wrapper {
  width: 100%;
  height: 500px;
}
.info-column .map-wrapper iframe {
  width: 80%;
  height: 100%;
  border: none;
  display: block;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .info-column {
    width: 98%;
  }
  .info-column .map-wrapper {
    height: 60vh;
  }
  .info-column .map-wrapper iframe {
    width: 98%;
  }
}

.form-select {
  background-color: var(--gold);
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px 16px;
  border: none;
}
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 214, 102, 0.5);
  border-color: var(--primary);
}
.form-select option {
  background-color: #1e1e1e;
  color: #fff;
}

.form-column h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vh, 2.25rem);
  font-weight: 800;
  position: relative;
  letter-spacing: 0.5px;
}
.form-column h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, var(--text-secondary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.8s ease-in-out;
}
.form-column:hover h2::after {
  width: 250px;
}

.categories-section {
  padding: var(--spacing-xl);
  /* Scrollbar container */
  /* Scrollbar on hover */
  /* Scrollbar draggable thumb */
  /* Hover effect */
  /* Swiper Navigation Buttons */
}
.categories-section .swiper {
  width: 100%;
  height: 100%;
  padding: 0px !important;
}
.categories-section .swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0px !important;
}
.categories-section .swiper .categories-container {
  margin: 0px !important;
}
.categories-section .swiper .container {
  margin: 0px !important;
}
.categories-section .swiper-scrollbar {
  height: 8px;
  width: 80%;
  min-width: 80% !important;
  background: rgba(200, 200, 200, 0.15); /* خفيف */
  border-radius: 50px;
  transition: background 0.3s ease;
  position: absolute;
  bottom: 0;
  right: 50% !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.categories-section .swiper:hover .swiper-scrollbar {
  background: rgba(200, 200, 200, 0.3);
}
.categories-section .swiper-scrollbar-drag {
  background: linear-gradient(90deg, var(--text-secondary), var(--primary-dark)); /* تدرج ملكي */
  border-radius: 50px;
  height: 100%;
  transition: all 0.3s ease;
  transform: scaleY(1);
}
.categories-section .swiper-scrollbar-drag:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--text-secondary));
  transform: scaleY(1.2);
}
.categories-section .swiper-button-container {
  height: 120px;
  padding: 40px;
  position: relative;
}
.categories-section .swiper-button-container .swiper-button-next {
  background: var(--primary);
  color: #000000;
  width: 120px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.categories-section .swiper-button-container .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
}
.categories-section .swiper-button-container .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .categories-section .swiper-button-container .swiper-button-next {
    width: 90px;
    height: 40px;
  }
  .categories-section .swiper-button-container .swiper-button-next::after {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .categories-section .swiper-button-container .swiper-button-next {
    width: 90px;
    height: 36px;
  }
  .categories-section .swiper-button-container .swiper-button-next::after {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .swiper-scrollbar {
    min-width: 90%;
    top: 100% !important;
    transform: translateX(-50%) !important;
  }
  .categories-section {
    padding: 7px;
  }
  .categories-section .swiper-button-container {
    height: 50px;
  }
}
.reservation .reservation-form {
  margin: 0px;
  width: 100%;
}

/* Loading and Error States */
.loading-container {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--text-secondary);
}
.loading-container .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-md);
}
.loading-container .loading-text {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}
.loading-container .loading-subtext {
  font-size: var(--font-size-sm);
  opacity: 0.8;
}
.loading-container.loading-small {
  padding: var(--spacing-lg);
}
.loading-container.loading-small .loading-spinner {
  width: 24px;
  height: 24px;
  border-width: 2px;
}
.loading-container.loading-small .loading-text {
  font-size: var(--font-size-md);
}
.loading-container.loading-large {
  padding: var(--spacing-3xl);
}
.loading-container.loading-large .loading-spinner {
  width: 60px;
  height: 60px;
  border-width: 6px;
}
.loading-container.loading-large .loading-text {
  font-size: var(--font-size-xl);
}
.loading-container.loading-inline {
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}
.loading-container.loading-inline .loading-spinner {
  margin: 0;
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.loading-container.loading-inline .loading-text {
  margin: 0;
  font-size: var(--font-size-sm);
}

.error-message {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--text-secondary);
}
.error-message h3 {
  color: var(--error);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
  font-weight: 700;
}
.error-message p {
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-base);
  line-height: 1.6;
}
.error-message .error-icon {
  font-size: clamp(3rem, 8vw, 4rem);
  color: var(--error);
  margin-bottom: var(--spacing-md);
  opacity: 0.8;
}
.error-message .error-actions {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}
.error-message .error-actions .retry-btn,
.error-message .error-actions .test-btn,
.error-message .error-actions .contact-test-btn,
.error-message .error-actions .debug-btn,
.error-message .error-actions .error-btn {
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
}
.error-message .error-actions .retry-btn:hover,
.error-message .error-actions .test-btn:hover,
.error-message .error-actions .contact-test-btn:hover,
.error-message .error-actions .debug-btn:hover,
.error-message .error-actions .error-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.error-message .error-actions .retry-btn:active,
.error-message .error-actions .test-btn:active,
.error-message .error-actions .contact-test-btn:active,
.error-message .error-actions .debug-btn:active,
.error-message .error-actions .error-btn:active {
  transform: translateY(0);
}
.error-message .error-actions .retry-btn {
  background: var(--primary);
  color: var(--text-white);
}
.error-message .error-actions .retry-btn:hover {
  background: var(--primary-light);
}
.error-message .error-actions .test-btn {
  background: var(--error);
  color: var(--text-white);
}
.error-message .error-actions .test-btn:hover {
  background: var(--error-light);
}
.error-message .error-actions .contact-test-btn {
  background: var(--accent-color);
  color: var(--text-white);
}
.error-message .error-actions .contact-test-btn:hover {
  background: var(--accent-light);
}
.error-message .error-actions .debug-btn {
  background: var(--bg-dark);
  color: var(--text-white);
  border: 1px solid var(--border-color);
}
.error-message .error-actions .debug-btn:hover {
  background: var(--bg-darker);
}
.error-message .error-actions .error-btn {
  background: var(--warning);
  color: var(--text-white);
}
.error-message .error-actions .error-btn:hover {
  background: var(--warning-light);
}
.error-message.error-small {
  padding: var(--spacing-lg);
}
.error-message.error-small h3 {
  font-size: var(--font-size-lg);
}
.error-message.error-small .error-icon {
  font-size: clamp(2rem, 6vw, 2.5rem);
}
.error-message.error-small .error-actions {
  gap: var(--spacing-sm);
}
.error-message.error-small .error-actions .retry-btn,
.error-message.error-small .error-actions .test-btn,
.error-message.error-small .error-actions .contact-test-btn,
.error-message.error-small .error-actions .debug-btn,
.error-message.error-small .error-actions .error-btn {
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
}
.error-message.error-large {
  padding: var(--spacing-3xl);
}
.error-message.error-large h3 {
  font-size: var(--font-size-2xl);
}
.error-message.error-large .error-icon {
  font-size: clamp(4rem, 10vw, 5rem);
}
.error-message.error-large .error-actions {
  gap: var(--spacing-lg);
}
.error-message.error-large .error-actions .retry-btn,
.error-message.error-large .error-actions .test-btn,
.error-message.error-large .error-actions .contact-test-btn,
.error-message.error-large .error-actions .debug-btn,
.error-message.error-large .error-actions .error-btn {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-md);
}
.error-message.error-inline {
  padding: var(--spacing-md);
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.error-message.error-inline .error-icon {
  font-size: var(--font-size-xl);
  margin: 0;
}
.error-message.error-inline .error-content {
  flex: 1;
}
.error-message.error-inline .error-content h3 {
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-md);
}
.error-message.error-inline .error-content p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-sm);
}
.error-message.error-inline .error-actions {
  margin: 0;
  gap: var(--spacing-sm);
}
.error-message.error-inline .error-actions .retry-btn,
.error-message.error-inline .error-actions .test-btn,
.error-message.error-inline .error-actions .contact-test-btn,
.error-message.error-inline .error-actions .debug-btn,
.error-message.error-inline .error-actions .error-btn {
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
}

/* Success Message */
.success-message {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%);
  color: var(--text-white);
  border-radius: var(--border-radius-xl);
  margin: var(--spacing-lg) 0;
}
.success-message .success-icon {
  font-size: clamp(2.5rem, 6vw, 3rem);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}
.success-message h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}
.success-message p {
  font-size: var(--font-size-base);
  opacity: 0.9;
  margin: 0;
}
.success-message.success-small {
  padding: var(--spacing-md);
}
.success-message.success-small .success-icon {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.success-message.success-small h3 {
  font-size: var(--font-size-lg);
}
.success-message.success-small p {
  font-size: var(--font-size-sm);
}
.success-message.success-inline {
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-align: left;
}
.success-message.success-inline .success-icon {
  font-size: var(--font-size-lg);
  margin: 0;
}
.success-message.success-inline .success-content {
  flex: 1;
}
.success-message.success-inline .success-content h3 {
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-md);
}
.success-message.success-inline .success-content p {
  font-size: var(--font-size-sm);
}

/* Info Message */
.info-message {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--info) 0%, var(--info-light) 100%);
  color: var(--text-white);
  border-radius: var(--border-radius-xl);
  margin: var(--spacing-lg) 0;
}
.info-message .info-icon {
  font-size: clamp(2.5rem, 6vw, 3rem);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}
.info-message h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}
.info-message p {
  font-size: var(--font-size-base);
  opacity: 0.9;
  margin: 0;
}

/* Warning Message */
.warning-message {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, var(--warning) 0%, var(--warning-light) 100%);
  color: var(--text-white);
  border-radius: var(--border-radius-xl);
  margin: var(--spacing-lg) 0;
}
.warning-message .warning-icon {
  font-size: clamp(2.5rem, 6vw, 3rem);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}
.warning-message h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}
.warning-message p {
  font-size: var(--font-size-base);
  opacity: 0.9;
  margin: 0;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Animation classes */
.fade-in {
  animation: fadeIn 0.3s ease-out;
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

/* Responsive Design System */
/* Breakpoint Variables */
/* Mixin for Media Queries */
/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 479px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  .hero {
    padding: clamp(1.5rem, 6vh, 3rem) var(--spacing-sm);
    min-height: 50vh;
  }
  .hero .hero-content .logo-main h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .hero .hero-content .logo-main p {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  .hero .hero-content .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-content .hero-actions .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .page-header {
    padding: clamp(1.5rem, 6vh, 3rem) var(--spacing-sm);
  }
  .page-header h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-header p {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) !important;
  }
  .item-card,
  .related-product-card,
  .featured-item-card,
  .category-item-card,
  .product-card {
    min-height: 260px;
  }
  .item-card .item-image,
  .item-card .related-product-image,
  .item-card .featured-item-image,
  .item-card .category-item-image,
  .item-card .product-image,
  .related-product-card .item-image,
  .related-product-card .related-product-image,
  .related-product-card .featured-item-image,
  .related-product-card .category-item-image,
  .related-product-card .product-image,
  .featured-item-card .item-image,
  .featured-item-card .related-product-image,
  .featured-item-card .featured-item-image,
  .featured-item-card .category-item-image,
  .featured-item-card .product-image,
  .category-item-card .item-image,
  .category-item-card .related-product-image,
  .category-item-card .featured-item-image,
  .category-item-card .category-item-image,
  .category-item-card .product-image,
  .product-card .item-image,
  .product-card .related-product-image,
  .product-card .featured-item-image,
  .product-card .category-item-image,
  .product-card .product-image {
    height: 100px;
  }
  .item-card .item-content,
  .item-card .related-product-info,
  .item-card .featured-item-content,
  .item-card .category-item-content,
  .item-card .product-content,
  .related-product-card .item-content,
  .related-product-card .related-product-info,
  .related-product-card .featured-item-content,
  .related-product-card .category-item-content,
  .related-product-card .product-content,
  .featured-item-card .item-content,
  .featured-item-card .related-product-info,
  .featured-item-card .featured-item-content,
  .featured-item-card .category-item-content,
  .featured-item-card .product-content,
  .category-item-card .item-content,
  .category-item-card .related-product-info,
  .category-item-card .featured-item-content,
  .category-item-card .category-item-content,
  .category-item-card .product-content,
  .product-card .item-content,
  .product-card .related-product-info,
  .product-card .featured-item-content,
  .product-card .category-item-content,
  .product-card .product-content {
    padding: var(--spacing-sm);
  }
  .item-card .item-content h3,
  .item-card .related-product-info h3,
  .item-card .featured-item-content h3,
  .item-card .category-item-content h3,
  .item-card .product-content h3,
  .related-product-card .item-content h3,
  .related-product-card .related-product-info h3,
  .related-product-card .featured-item-content h3,
  .related-product-card .category-item-content h3,
  .related-product-card .product-content h3,
  .featured-item-card .item-content h3,
  .featured-item-card .related-product-info h3,
  .featured-item-card .featured-item-content h3,
  .featured-item-card .category-item-content h3,
  .featured-item-card .product-content h3,
  .category-item-card .item-content h3,
  .category-item-card .related-product-info h3,
  .category-item-card .featured-item-content h3,
  .category-item-card .category-item-content h3,
  .category-item-card .product-content h3,
  .product-card .item-content h3,
  .product-card .related-product-info h3,
  .product-card .featured-item-content h3,
  .product-card .category-item-content h3,
  .product-card .product-content h3 {
    font-size: var(--font-size-md);
  }
  .item-card .item-content .item-description,
  .item-card .item-content .related-product-info p,
  .item-card .item-content .featured-item-description,
  .item-card .item-content .category-item-description,
  .item-card .item-content .product-description,
  .item-card .related-product-info .item-description,
  .item-card .related-product-info .related-product-info p,
  .item-card .related-product-info .featured-item-description,
  .item-card .related-product-info .category-item-description,
  .item-card .related-product-info .product-description,
  .item-card .featured-item-content .item-description,
  .item-card .featured-item-content .related-product-info p,
  .item-card .featured-item-content .featured-item-description,
  .item-card .featured-item-content .category-item-description,
  .item-card .featured-item-content .product-description,
  .item-card .category-item-content .item-description,
  .item-card .category-item-content .related-product-info p,
  .item-card .category-item-content .featured-item-description,
  .item-card .category-item-content .category-item-description,
  .item-card .category-item-content .product-description,
  .item-card .product-content .item-description,
  .item-card .product-content .related-product-info p,
  .item-card .product-content .featured-item-description,
  .item-card .product-content .category-item-description,
  .item-card .product-content .product-description,
  .related-product-card .item-content .item-description,
  .related-product-card .item-content .related-product-info p,
  .related-product-card .item-content .featured-item-description,
  .related-product-card .item-content .category-item-description,
  .related-product-card .item-content .product-description,
  .related-product-card .related-product-info .item-description,
  .related-product-card .related-product-info .related-product-info p,
  .related-product-card .related-product-info .featured-item-description,
  .related-product-card .related-product-info .category-item-description,
  .related-product-card .related-product-info .product-description,
  .related-product-card .featured-item-content .item-description,
  .related-product-card .featured-item-content .related-product-info p,
  .related-product-card .featured-item-content .featured-item-description,
  .related-product-card .featured-item-content .category-item-description,
  .related-product-card .featured-item-content .product-description,
  .related-product-card .category-item-content .item-description,
  .related-product-card .category-item-content .related-product-info p,
  .related-product-card .category-item-content .featured-item-description,
  .related-product-card .category-item-content .category-item-description,
  .related-product-card .category-item-content .product-description,
  .related-product-card .product-content .item-description,
  .related-product-card .product-content .related-product-info p,
  .related-product-card .product-content .featured-item-description,
  .related-product-card .product-content .category-item-description,
  .related-product-card .product-content .product-description,
  .featured-item-card .item-content .item-description,
  .featured-item-card .item-content .related-product-info p,
  .featured-item-card .item-content .featured-item-description,
  .featured-item-card .item-content .category-item-description,
  .featured-item-card .item-content .product-description,
  .featured-item-card .related-product-info .item-description,
  .featured-item-card .related-product-info .related-product-info p,
  .featured-item-card .related-product-info .featured-item-description,
  .featured-item-card .related-product-info .category-item-description,
  .featured-item-card .related-product-info .product-description,
  .featured-item-card .featured-item-content .item-description,
  .featured-item-card .featured-item-content .related-product-info p,
  .featured-item-card .featured-item-content .featured-item-description,
  .featured-item-card .featured-item-content .category-item-description,
  .featured-item-card .featured-item-content .product-description,
  .featured-item-card .category-item-content .item-description,
  .featured-item-card .category-item-content .related-product-info p,
  .featured-item-card .category-item-content .featured-item-description,
  .featured-item-card .category-item-content .category-item-description,
  .featured-item-card .category-item-content .product-description,
  .featured-item-card .product-content .item-description,
  .featured-item-card .product-content .related-product-info p,
  .featured-item-card .product-content .featured-item-description,
  .featured-item-card .product-content .category-item-description,
  .featured-item-card .product-content .product-description,
  .category-item-card .item-content .item-description,
  .category-item-card .item-content .related-product-info p,
  .category-item-card .item-content .featured-item-description,
  .category-item-card .item-content .category-item-description,
  .category-item-card .item-content .product-description,
  .category-item-card .related-product-info .item-description,
  .category-item-card .related-product-info .related-product-info p,
  .category-item-card .related-product-info .featured-item-description,
  .category-item-card .related-product-info .category-item-description,
  .category-item-card .related-product-info .product-description,
  .category-item-card .featured-item-content .item-description,
  .category-item-card .featured-item-content .related-product-info p,
  .category-item-card .featured-item-content .featured-item-description,
  .category-item-card .featured-item-content .category-item-description,
  .category-item-card .featured-item-content .product-description,
  .category-item-card .category-item-content .item-description,
  .category-item-card .category-item-content .related-product-info p,
  .category-item-card .category-item-content .featured-item-description,
  .category-item-card .category-item-content .category-item-description,
  .category-item-card .category-item-content .product-description,
  .category-item-card .product-content .item-description,
  .category-item-card .product-content .related-product-info p,
  .category-item-card .product-content .featured-item-description,
  .category-item-card .product-content .category-item-description,
  .category-item-card .product-content .product-description,
  .product-card .item-content .item-description,
  .product-card .item-content .related-product-info p,
  .product-card .item-content .featured-item-description,
  .product-card .item-content .category-item-description,
  .product-card .item-content .product-description,
  .product-card .related-product-info .item-description,
  .product-card .related-product-info .related-product-info p,
  .product-card .related-product-info .featured-item-description,
  .product-card .related-product-info .category-item-description,
  .product-card .related-product-info .product-description,
  .product-card .featured-item-content .item-description,
  .product-card .featured-item-content .related-product-info p,
  .product-card .featured-item-content .featured-item-description,
  .product-card .featured-item-content .category-item-description,
  .product-card .featured-item-content .product-description,
  .product-card .category-item-content .item-description,
  .product-card .category-item-content .related-product-info p,
  .product-card .category-item-content .featured-item-description,
  .product-card .category-item-content .category-item-description,
  .product-card .category-item-content .product-description,
  .product-card .product-content .item-description,
  .product-card .product-content .related-product-info p,
  .product-card .product-content .featured-item-description,
  .product-card .product-content .category-item-description,
  .product-card .product-content .product-description {
    -webkit-line-clamp: 2;
  }
  .btn, .submit-btn,
  .form-btn, .newsletter-btn, .auth-btn, .filter-btn, .slider-btn, .see-more-btn, .category-btn, .featured-items .see-more-btn-container .see-more-btn, .error-message .retry-btn, .search-btn {
    padding: clamp(0.625rem, 2vw, 0.875rem) clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
  }
  .btn-icon, .slider-btn {
    min-width: 40px;
    min-height: 40px;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .footer .social-links {
    gap: var(--spacing-sm);
  }
  .footer .social-links a {
    width: 40px;
    height: 40px;
  }
}
/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-md) !important;
  }
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero {
    padding: clamp(2rem, 8vh, 4rem) var(--spacing-md);
    min-height: 55vh;
  }
  .hero .hero-content .logo-main h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  .hero .hero-content .logo-main p {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }
  .hero .hero-content .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .hero .hero-content .hero-actions .hero-btn {
    width: auto;
    max-width: none;
  }
  .page-header {
    padding: clamp(2rem, 8vh, 4rem) var(--spacing-md);
  }
  .page-header h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .page-header p {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  .items-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) !important;
  }
  .item-card,
  .related-product-card,
  .featured-item-card,
  .category-item-card,
  .product-card {
    min-height: 280px;
  }
  .item-card .item-image,
  .item-card .related-product-image,
  .item-card .featured-item-image,
  .item-card .category-item-image,
  .item-card .product-image,
  .related-product-card .item-image,
  .related-product-card .related-product-image,
  .related-product-card .featured-item-image,
  .related-product-card .category-item-image,
  .related-product-card .product-image,
  .featured-item-card .item-image,
  .featured-item-card .related-product-image,
  .featured-item-card .featured-item-image,
  .featured-item-card .category-item-image,
  .featured-item-card .product-image,
  .category-item-card .item-image,
  .category-item-card .related-product-image,
  .category-item-card .featured-item-image,
  .category-item-card .category-item-image,
  .category-item-card .product-image,
  .product-card .item-image,
  .product-card .related-product-image,
  .product-card .featured-item-image,
  .product-card .category-item-image,
  .product-card .product-image {
    height: 120px;
  }
  .item-card .item-content,
  .item-card .related-product-info,
  .item-card .featured-item-content,
  .item-card .category-item-content,
  .item-card .product-content,
  .related-product-card .item-content,
  .related-product-card .related-product-info,
  .related-product-card .featured-item-content,
  .related-product-card .category-item-content,
  .related-product-card .product-content,
  .featured-item-card .item-content,
  .featured-item-card .related-product-info,
  .featured-item-card .featured-item-content,
  .featured-item-card .category-item-content,
  .featured-item-card .product-content,
  .category-item-card .item-content,
  .category-item-card .related-product-info,
  .category-item-card .featured-item-content,
  .category-item-card .category-item-content,
  .category-item-card .product-content,
  .product-card .item-content,
  .product-card .related-product-info,
  .product-card .featured-item-content,
  .product-card .category-item-content,
  .product-card .product-content {
    padding: var(--spacing-sm);
  }
  .item-card .item-content h3,
  .item-card .related-product-info h3,
  .item-card .featured-item-content h3,
  .item-card .category-item-content h3,
  .item-card .product-content h3,
  .related-product-card .item-content h3,
  .related-product-card .related-product-info h3,
  .related-product-card .featured-item-content h3,
  .related-product-card .category-item-content h3,
  .related-product-card .product-content h3,
  .featured-item-card .item-content h3,
  .featured-item-card .related-product-info h3,
  .featured-item-card .featured-item-content h3,
  .featured-item-card .category-item-content h3,
  .featured-item-card .product-content h3,
  .category-item-card .item-content h3,
  .category-item-card .related-product-info h3,
  .category-item-card .featured-item-content h3,
  .category-item-card .category-item-content h3,
  .category-item-card .product-content h3,
  .product-card .item-content h3,
  .product-card .related-product-info h3,
  .product-card .featured-item-content h3,
  .product-card .category-item-content h3,
  .product-card .product-content h3 {
    font-size: var(--font-size-md);
  }
  .item-card .item-content .item-description,
  .item-card .item-content .related-product-info p,
  .item-card .item-content .featured-item-description,
  .item-card .item-content .category-item-description,
  .item-card .item-content .product-description,
  .item-card .related-product-info .item-description,
  .item-card .related-product-info .related-product-info p,
  .item-card .related-product-info .featured-item-description,
  .item-card .related-product-info .category-item-description,
  .item-card .related-product-info .product-description,
  .item-card .featured-item-content .item-description,
  .item-card .featured-item-content .related-product-info p,
  .item-card .featured-item-content .featured-item-description,
  .item-card .featured-item-content .category-item-description,
  .item-card .featured-item-content .product-description,
  .item-card .category-item-content .item-description,
  .item-card .category-item-content .related-product-info p,
  .item-card .category-item-content .featured-item-description,
  .item-card .category-item-content .category-item-description,
  .item-card .category-item-content .product-description,
  .item-card .product-content .item-description,
  .item-card .product-content .related-product-info p,
  .item-card .product-content .featured-item-description,
  .item-card .product-content .category-item-description,
  .item-card .product-content .product-description,
  .related-product-card .item-content .item-description,
  .related-product-card .item-content .related-product-info p,
  .related-product-card .item-content .featured-item-description,
  .related-product-card .item-content .category-item-description,
  .related-product-card .item-content .product-description,
  .related-product-card .related-product-info .item-description,
  .related-product-card .related-product-info .related-product-info p,
  .related-product-card .related-product-info .featured-item-description,
  .related-product-card .related-product-info .category-item-description,
  .related-product-card .related-product-info .product-description,
  .related-product-card .featured-item-content .item-description,
  .related-product-card .featured-item-content .related-product-info p,
  .related-product-card .featured-item-content .featured-item-description,
  .related-product-card .featured-item-content .category-item-description,
  .related-product-card .featured-item-content .product-description,
  .related-product-card .category-item-content .item-description,
  .related-product-card .category-item-content .related-product-info p,
  .related-product-card .category-item-content .featured-item-description,
  .related-product-card .category-item-content .category-item-description,
  .related-product-card .category-item-content .product-description,
  .related-product-card .product-content .item-description,
  .related-product-card .product-content .related-product-info p,
  .related-product-card .product-content .featured-item-description,
  .related-product-card .product-content .category-item-description,
  .related-product-card .product-content .product-description,
  .featured-item-card .item-content .item-description,
  .featured-item-card .item-content .related-product-info p,
  .featured-item-card .item-content .featured-item-description,
  .featured-item-card .item-content .category-item-description,
  .featured-item-card .item-content .product-description,
  .featured-item-card .related-product-info .item-description,
  .featured-item-card .related-product-info .related-product-info p,
  .featured-item-card .related-product-info .featured-item-description,
  .featured-item-card .related-product-info .category-item-description,
  .featured-item-card .related-product-info .product-description,
  .featured-item-card .featured-item-content .item-description,
  .featured-item-card .featured-item-content .related-product-info p,
  .featured-item-card .featured-item-content .featured-item-description,
  .featured-item-card .featured-item-content .category-item-description,
  .featured-item-card .featured-item-content .product-description,
  .featured-item-card .category-item-content .item-description,
  .featured-item-card .category-item-content .related-product-info p,
  .featured-item-card .category-item-content .featured-item-description,
  .featured-item-card .category-item-content .category-item-description,
  .featured-item-card .category-item-content .product-description,
  .featured-item-card .product-content .item-description,
  .featured-item-card .product-content .related-product-info p,
  .featured-item-card .product-content .featured-item-description,
  .featured-item-card .product-content .category-item-description,
  .featured-item-card .product-content .product-description,
  .category-item-card .item-content .item-description,
  .category-item-card .item-content .related-product-info p,
  .category-item-card .item-content .featured-item-description,
  .category-item-card .item-content .category-item-description,
  .category-item-card .item-content .product-description,
  .category-item-card .related-product-info .item-description,
  .category-item-card .related-product-info .related-product-info p,
  .category-item-card .related-product-info .featured-item-description,
  .category-item-card .related-product-info .category-item-description,
  .category-item-card .related-product-info .product-description,
  .category-item-card .featured-item-content .item-description,
  .category-item-card .featured-item-content .related-product-info p,
  .category-item-card .featured-item-content .featured-item-description,
  .category-item-card .featured-item-content .category-item-description,
  .category-item-card .featured-item-content .product-description,
  .category-item-card .category-item-content .item-description,
  .category-item-card .category-item-content .related-product-info p,
  .category-item-card .category-item-content .featured-item-description,
  .category-item-card .category-item-content .category-item-description,
  .category-item-card .category-item-content .product-description,
  .category-item-card .product-content .item-description,
  .category-item-card .product-content .related-product-info p,
  .category-item-card .product-content .featured-item-description,
  .category-item-card .product-content .category-item-description,
  .category-item-card .product-content .product-description,
  .product-card .item-content .item-description,
  .product-card .item-content .related-product-info p,
  .product-card .item-content .featured-item-description,
  .product-card .item-content .category-item-description,
  .product-card .item-content .product-description,
  .product-card .related-product-info .item-description,
  .product-card .related-product-info .related-product-info p,
  .product-card .related-product-info .featured-item-description,
  .product-card .related-product-info .category-item-description,
  .product-card .related-product-info .product-description,
  .product-card .featured-item-content .item-description,
  .product-card .featured-item-content .related-product-info p,
  .product-card .featured-item-content .featured-item-description,
  .product-card .featured-item-content .category-item-description,
  .product-card .featured-item-content .product-description,
  .product-card .category-item-content .item-description,
  .product-card .category-item-content .related-product-info p,
  .product-card .category-item-content .featured-item-description,
  .product-card .category-item-content .category-item-description,
  .product-card .category-item-content .product-description,
  .product-card .product-content .item-description,
  .product-card .product-content .related-product-info p,
  .product-card .product-content .featured-item-description,
  .product-card .product-content .category-item-description,
  .product-card .product-content .product-description {
    -webkit-line-clamp: 2;
  }
  .btn, .submit-btn,
  .form-btn, .newsletter-btn, .auth-btn, .filter-btn, .slider-btn, .see-more-btn, .category-btn, .featured-items .see-more-btn-container .see-more-btn, .error-message .retry-btn, .search-btn {
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1.25rem, 3.5vw, 1.75rem);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .product-container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .product-image {
    margin-bottom: 0;
  }
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  .footer .social-links {
    gap: var(--spacing-lg);
  }
  .footer .social-links a {
    width: 50px;
    height: 50px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid.form-grid-2, .form-grid.form-grid-3, .form-grid.form-grid-4 {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  .form-row .form-group {
    margin-bottom: var(--spacing-sm);
  }
  .reservation-form,
  .contact-form,
  .form-container {
    padding: clamp(1.5rem, 4vw, 2rem);
    margin: 0 var(--spacing-sm);
  }
}
/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .related-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
  }
  .footer .footer-logo {
    grid-column: 1;
  }
  .footer .footer-contact {
    margin-top: var(--spacing-lg);
  }
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .items-grid {
    grid-template-columns: repeat(250px, 1fr);
  }
  .related-items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Extra Extra Large Devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
/* Print Styles */
@media print {
  .mobile-nav,
  .hero-actions,
  .slider-btn,
  .social-links,
  .cta-section {
    display: none !important;
  }
  .hero {
    background: none !important;
    color: black !important;
    min-height: auto;
    padding: 2rem 0;
  }
  .page-header {
    background: none !important;
    color: black !important;
    padding: 2rem 0;
  }
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  .item-card,
  .related-item,
  .product-info {
    border: 1px solid #ccc !important;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}
/* High DPI Displays */
@media (min-resolution: 192dpi) {
  .logo h1 img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}/*# sourceMappingURL=style.css.map */