@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@400;500;600;700&display=swap');
@import 'variables.css';
/* === SKELETON LOADERS === */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(240, 240, 240, 0.8) 0%,
    rgba(224, 224, 224, 0.8) 20%,
    rgba(240, 240, 240, 0.8) 40%,
    rgba(240, 240, 240, 0.8) 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.skeleton-product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  margin-bottom: 1rem;
}

.skeleton-product-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.skeleton-product-image {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 12px;
}

.skeleton-product-info {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-title { height: 24px; width: 70%; }
.skeleton-description { height: 16px; width: 100%; }
.skeleton-description-short { height: 16px; width: 80%; }
.skeleton-price { height: 32px; width: 100px; margin-top: auto; }
.skeleton-badge { height: 24px; width: 80px; }

.skeleton-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(245, 245, 245, 0.5);
}

.skeleton-qty { height: 40px; width: 100px; }
.skeleton-button { flex: 1; min-width: 200px; height: 48px; border-radius: 14px; }
.skeleton-gallery-item { aspect-ratio: 1; border-radius: 32px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); }

/* === EMPTY STATES === */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 2px dashed rgba(255, 69, 69, 0.2);
  border-radius: 32px;
  margin: 2rem 0;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: var(--font-size-2xl);
  color: var(--neutral-charcoal);
  margin-bottom: 1rem;
}

.empty-state p {
  color: var(--neutral-warm-grey);
  margin-bottom: 2rem;
  font-size: var(--font-size-lg);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--neutral-warm-grey);
  background-color: transparent;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  line-height: var(--line-height-tight);
  color: var(--neutral-charcoal);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

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

a {
  color: var(--primary-red-dark);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover { color: var(--primary-red-light); }

/* === LAYOUT === */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.navbar-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo-img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-base);
}

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

.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

section {
  padding: var(--spacing-4xl) 0;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 1rem 2.5rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(255, 69, 69, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255, 69, 69, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #2B2B2B;
  border: 2px solid rgba(255, 69, 69, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #FF4545;
  color: #FF4545;
  box-shadow: 0 12px 40px rgba(255, 69, 69, 0.2);
}

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-sm);
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all var(--transition-base);
  border-radius: 0 0 32px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: transform var(--transition-base);
}

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

.navbar-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
}

.navbar-menu a {
  font-weight: var(--font-weight-medium);
  color: var(--neutral-charcoal);
  transition: all var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--primary-red-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--neutral-charcoal);
  transition: all var(--transition-base);
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-2xl);
  font-weight: var(--font-weight-medium);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-2xl);
}

.hero-buttons .btn {
  min-width: 180px;
  font-size: var(--font-size-lg);
  padding: var(--spacing-lg) var(--spacing-2xl);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-red-dark);
  border-color: var(--white);
}

/* === PAGE HEADER === */
.page-header {
  padding: var(--spacing-4xl) 0 var(--spacing-3xl);
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(250, 250, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(248, 248, 248, 0.95) 100%);
  backdrop-filter: blur(20px);
  color: #2B2B2B;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 69, 69, 0.06) 0%, transparent 60%);
}

.page-header h1 {
  color: #2B2B2B;
  margin-bottom: var(--spacing-sm);
  position: relative;
  font-weight: 900;
  letter-spacing: -1px;
  z-index: 1;
}

.page-header p {
  font-size: var(--font-size-lg);
  opacity: 0.95;
  position: relative;
  color: #2B2B2B;
  z-index: 1;
}

/* === FILTER BAR === */
.filter-section {
  padding: var(--spacing-xl) 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(50px);
  position: sticky;
  top: 60px;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.filter-bar {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-weight: 600;
  color: #4A4A4A;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--font-size-sm);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 69, 69, 0.3);
  color: #FF4545;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 69, 69, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, #FF4545, #cc0000);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 69, 69, 0.3);
}

/* === PRODUCTS GRID === */
.products-section {
  padding: var(--spacing-3xl) 0;
  background: transparent;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
}

.product-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(50px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-slow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(255, 69, 69, 0.15);
  border-color: rgba(255, 69, 69, 0.3);
  background: rgba(255, 255, 255, 0.6);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: rgba(245, 245, 245, 0.5);
  position: relative;
  border-radius: 32px 32px 0 0;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,69,69,0.1) 0%, rgba(204,0,0,0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-image::before {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(2deg);
}

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

.product-name {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
  color: var(--neutral-charcoal);
  font-weight: var(--font-weight-bold);
  transition: color var(--transition-base);
}

.product-card:hover .product-name {
  color: var(--primary-red-dark);
}

.product-description {
  font-size: var(--font-size-base);
  color: var(--neutral-warm-grey);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 2px solid rgba(245, 245, 245, 0.5);
}

.product-price {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === GALLERY === */
.gallery-section {
  padding: var(--spacing-3xl) 0;
  background: transparent;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(255, 69, 69, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: var(--spacing-xl);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--white);
  margin: 0;
  font-size: var(--font-size-xl);
}

/* === NEWSLETTER === */
.newsletter-section {
  padding: var(--spacing-4xl) 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 69, 69, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  animation: float 15s ease-in-out infinite;
}

.newsletter-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.newsletter-box h2 {
  color: #2B2B2B;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
}

.newsletter-box p {
  color: #4A4A4A;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.newsletter-form input {
  flex: 1;
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #2B2B2B;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #FF4545;
  background: white;
}

/* === FORMS === */
.form-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: var(--spacing-3xl);
  max-width: 1100px;
  margin: 0 auto;
}

.custom-order-form,
.contact-form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: var(--spacing-3xl);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.form-section {
  margin-bottom: var(--spacing-3xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 2px solid rgba(245, 245, 245, 0.5);
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
  color: var(--primary-red-dark);
  position: relative;
  padding-left: var(--spacing-md);
}

.form-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.form-group label {
  display: block;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--neutral-charcoal);
  font-size: var(--font-size-base);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF4545;
  background: white;
  box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.1);
}

.form-group small {
  display: block;
  margin-top: var(--spacing-sm);
  color: var(--neutral-warm-grey);
  font-size: var(--font-size-sm);
}

.form-actions {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.form-note {
  margin-top: var(--spacing-md);
  color: var(--neutral-warm-grey);
  font-size: var(--font-size-sm);
}

.order-info-box,
.contact-info {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 69, 69, 0.2);
  padding: var(--spacing-2xl);
  border-radius: 32px;
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 32px rgba(255, 69, 69, 0.1);
}

.order-info-box h3,
.contact-info h3 {
  color: var(--primary-red-dark);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-xl);
}

.order-info-box ol {
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.order-info-box li {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
  color: var(--neutral-charcoal);
}

.payment-info {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* === ABOUT PAGE === */
.about-section {
  padding: var(--spacing-4xl) 0;
  background: transparent;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text,
.about-values,
.about-process {
  margin-bottom: var(--spacing-4xl);
}

.about-text h2,
.about-values h2,
.about-process h2 {
  font-size: var(--font-size-3xl);
  color: var(--primary-red-dark);
  margin-bottom: var(--spacing-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.value-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: var(--spacing-2xl);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 69, 69, 0.3);
  box-shadow: 0 20px 60px rgba(255, 69, 69, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.value-card h3 {
  color: var(--primary-red-dark);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
}

.about-process ol {
  padding-left: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.about-process li {
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-lg);
}

.about-process li strong {
  color: var(--primary-red-dark);
}

/* === CONTACT PAGE === */
.contact-section {
  padding: var(--spacing-4xl) 0;
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-3xl);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-method {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 69, 69, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 69, 69, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255, 69, 69, 0.1);
}

.contact-method h3 {
  color: var(--primary-red-dark);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-xl);
}

.contact-method p {
  color: var(--neutral-warm-grey);
  margin-bottom: var(--spacing-md);
}

.whatsapp-btn {
  margin-top: var(--spacing-md);
  width: 100%;
}

/* === FOOTER === */
.footer {
  background: rgba(43, 43, 43, 0.95);
  backdrop-filter: blur(20px);
  color: var(--neutral-light-grey);
  padding: var(--spacing-2xl) 0;
  text-align: center;
  margin-top: var(--spacing-4xl);
  border-top: 4px solid;
  border-image: var(--gradient-primary) 1;
}

.footer p {
  margin: 0;
  font-size: var(--font-size-sm);
}

html {
  height: 100%;
}

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

main {
  flex: 1 0 auto;
  min-height: calc(100vh - 200px);
}

.footer {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
}

/* Ensure sections have minimum height */
.products-section,
.gallery-section {
  min-height: 50vh;
  padding-bottom: 4rem;
}

.newsletter-section {
  padding: 4rem 0;
}

/* Prevent background bleed */
body::before {
  max-width: 100vw;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* === LOADING STATE === */
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--spacing-4xl);
  color: var(--neutral-warm-grey);
  font-size: var(--font-size-lg);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .form-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .order-info-box,
  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  h1 { font-size: var(--font-size-3xl); }
  h2 { font-size: var(--font-size-2xl); }
  .navbar-logo-img { height: 40px; }
  section { padding: var(--spacing-2xl) 0; }
  
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 0 1rem;
    box-shadow: none;
    gap: 0.75rem;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    border-radius: 0 0 32px 32px;
    max-height: 0;
    padding: 0 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .navbar-menu.active {
    max-height: 500px;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
  }

  .navbar-menu li {
    width: 100%;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .navbar-menu.active li {
    transform: translateY(0);
    opacity: 1;
  }

  .navbar-menu.active li:nth-child(1) { transition-delay: 0.05s; }
  .navbar-menu.active li:nth-child(2) { transition-delay: 0.1s; }
  .navbar-menu.active li:nth-child(3) { transition-delay: 0.15s; }
  .navbar-menu.active li:nth-child(4) { transition-delay: 0.2s; }
  .navbar-menu.active li:nth-child(5) { transition-delay: 0.25s; }
  .navbar-menu.active li:nth-child(6) { transition-delay: 0.3s; }

  .navbar-menu a {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    text-align: center;
    font-weight: 600;
    color: #2B2B2B;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-menu a::after {
    display: none;
  }

  .navbar-menu a:hover,
  .navbar-menu a:active {
    background: rgba(255, 69, 69, 0.95);
    color: white;
    border-color: #FF4545;
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 69, 69, 0.3);
  }
  
  .menu-toggle { display: flex; }
  .hero-buttons { flex-direction: column; align-items: center; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }
  .newsletter-form { flex-direction: column; gap: 1rem; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .filter-bar { flex-direction: row; flex-wrap: wrap; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .page-header { padding: var(--spacing-2xl) 0 var(--spacing-xl); }
  .filter-section { position: relative; top: 0; }
}
.navbar-menu.active {
  background: rgba(255, 255, 255, 0.3) !important; /* Semi-transparent white for glassmorphism */
  backdrop-filter: blur(20px) !important; /* Blur effect to show wood background through */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Optional subtle shadow for depth */
}

/* === ANIMATIONS === */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

.product-card,
.gallery-item,
.value-card {
  animation: scaleIn 0.6s ease-out;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: rgba(245, 245, 245, 0.5); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-red-dark); }

/* === SELECTION === */
::selection { background: var(--primary-red-light); color: var(--white); }
::-moz-selection { background: var(--primary-red-light); color: var(--white); }

/* === FEATURED SECTION === */
.featured-section {
  padding: var(--spacing-4xl) 0;
  background: transparent;
}

.featured-section h2 {
  font-size: var(--font-size-4xl);
  color: var(--neutral-charcoal);
}

/* === ACCESSIBILITY === */
.btn:focus-visible,
.filter-btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 69, 69, 0.5);
  outline-offset: 2px;
}

* { -webkit-tap-highlight-color: transparent; }

@media (max-width: 768px) {
  .btn, .filter-btn, .navbar-menu a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* === FONT CONSISTENCY === */
h1, h2, h3, h4, h5, h6,
.hero-title,
.page-header h1,
.navbar-logo-text {
  font-family: 'Inter', sans-serif !important;
  font-weight: bold !important;
}

h1, .hero-title, .page-header h1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #FF4545 50%, #1a1a1a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border: 2px solid rgba(255, 69, 69, 0.15);
  border-radius: 32px;
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.has-wood-bg .empty-state {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.empty-state:hover {
  border-color: rgba(255, 69, 69, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.empty-state h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #2B2B2B;
  margin-bottom: 1rem;
  font-weight: 700;
}

.empty-state p {
  color: #4A4A4A;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state .btn {
  margin: 0.5rem;
}

.empty-state-suggest {
  margin-top: 1.5rem !important;
  font-size: 0.95rem !important;
  color: #666 !important;
}

.empty-state-suggest a {
  color: #FF4545;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.empty-state-suggest a:hover {
  color: #cc0000;
  text-decoration: underline;
}

.empty-state-contact {
  margin-top: 1rem !important;
  font-size: 0.9rem !important;
}

.empty-state-contact a {
  color: #FF4545;
  font-weight: 600;
  text-decoration: none;
}

.empty-state-contact a:hover {
  text-decoration: underline;
}

/* Inline empty state (for product pages) */
.empty-state-inline {
  max-width: 700px;
  margin: 3rem auto;
  padding: 3rem 2rem;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .empty-state {
    padding: 3rem 1.5rem;
  }

  .empty-state-icon {
    font-size: 3rem;
  }

  .empty-state .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto;
  }
}
/* FAQ Section */
.faq-section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: transparent;
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2B2B2B;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #4A4A4A;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.has-wood-bg .faq-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.faq-item:hover {
  border-color: rgba(255, 69, 69, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.has-wood-bg .faq-item:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(255, 69, 69, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2B2B2B;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  color: #FF4545;
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: #FF4545;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: #4A4A4A;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .faq-icon {
    font-size: 1.5rem;
  }
}
/* Loading Skeleton Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #e0e0e0 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 8px;
}

.has-wood-bg .skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.5) 20%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background-size: 1000px 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.skeleton-product-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.has-wood-bg .skeleton-product-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.skeleton-product-image {
  width: 100%;
  height: 280px;
  background: #f0f0f0;
}

.skeleton-product-content {
  padding: 1.5rem;
}

.skeleton-title {
  height: 24px;
  width: 70%;
  margin-bottom: 1rem;
}

.skeleton-description {
  height: 16px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.skeleton-description-short {
  height: 16px;
  width: 80%;
  margin-bottom: 1rem;
}

.skeleton-price {
  height: 32px;
  width: 100px;
  margin-bottom: 1rem;
}

.skeleton-button {
  height: 48px;
  width: 100%;
  border-radius: 100px;
}

.skeleton-gallery-item {
  aspect-ratio: 1;
  border-radius: 32px;
  background: white;
  border: 1px solid #e0e0e0;
}

.has-wood-bg .skeleton-gallery-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  padding: 0;
}

/* Make product cards more compact and box-like */
.product-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 69, 69, 0.2);
  border-color: rgba(255, 69, 69, 0.3);
  background: rgba(255, 255, 255, 0.98);
}

/* Adjust product image size */
.product-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #F5F5F5;
  position: relative;
  border-radius: 0;
  flex-shrink: 0;
}

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

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

/* Compact product info */
.product-info {
  padding: 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-name {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #2B2B2B;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Compact footer */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
  gap: 0.5rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FF4545;
}

/* Mobile: 1 column for very small screens */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-image {
    height: 200px;
  }
}

/* Tablet: 2 columns */
@media (min-width: 481px) and (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .product-image {
    height: 160px;
  }
  
  .product-name {
    font-size: 0.9rem;
  }
  
  .product-description {
    font-size: 0.75rem;
  }
}

/* Desktop: 3 columns */
@media (min-width: 769px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

/* Add for select multiple in modal */
select[multiple] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
}

/* General glassy class if needed for other elements */
.glassy-filter {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(40px);
}

/* Modal overrides
#productDetailsModal h2 {
  background: none !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

#productDetailsModal span,
#productDetailsModal p,
#productDetailsModal div {
  color: #FFFFFF !important;
}

#productDetailsModal strong {
  color: #FFFFFF !important;
  font-weight: 600 !important;
}

/* Fix close button - remove any transition delays */
#productDetailsModal button {
  transition: none !important;
}

/* Make modal background lighter (the version you prefer) */
#productDetailsModal > div {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(80px) !important;
  -webkit-backdrop-filter: blur(80px) !important;
}

#productDetailsModal .modal-body {
  background: transparent !important;
}