:root {
  --primary: #FF6B35;
  --primary-dark: #E85A2A;
  --secondary: #004E89;
  --accent: #FFD23F;
  --dark: #0F172A;
  --dark-soft: #1E293B;
  --gray: #F8F9FA;
  --light: #FFFFFF;
  --text: #2D3748;
  --text-light: #718096;
  --border: #E2E8F0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
  --glow-primary: rgba(255, 107, 53, 0.4);
  --glow-secondary: rgba(0, 78, 137, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 78, 137, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(255, 210, 63, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px var(--glow-primary));
}

.logo-icon {
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--glow-primary);
}

.nav-link:hover {
  color: var(--light);
  text-shadow: 0 0 20px var(--glow-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-call {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px var(--glow-primary), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-call:hover::before {
  left: 100%;
}

.btn-call:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 32px var(--glow-primary), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 78, 137, 0.15) 0%, transparent 50%);
  z-index: -1;
  animation: backgroundShift 15s ease infinite alternate;
}

@keyframes backgroundShift {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--light);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s backwards, glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 8px 32px var(--glow-primary), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--light) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.3s backwards, gradientShift 5s ease infinite;
  text-shadow: 0 0 80px var(--glow-primary);
  filter: drop-shadow(0 0 30px var(--glow-primary));
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease 0.5s backwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 32px var(--glow-primary), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 48px var(--glow-primary), inset 0 2px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0.2;
}

.btn-secondary:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--glow-primary);
  transform: translateY(-3px) scale(1.05);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: gradientShift 3s ease infinite;
  filter: drop-shadow(0 0 20px var(--glow-primary));
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 53, 0.15);
  backdrop-filter: blur(10px);
  color: var(--primary);
  border-radius: 30px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px var(--glow-primary);
  animation: glow 3s ease-in-out infinite;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Catalog Section */
.catalog {
  padding: 6rem 0;
  background: var(--dark-soft);
  position: relative;
}

.catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Search Bar */
.catalog-search-bar {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  font-size: 1.5rem;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

.catalog-search-input {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 4.5rem;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--light);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.catalog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.catalog-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--glow-primary), 0 0 0 4px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* Catalog Tabs */
.catalog-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.catalog-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.catalog-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
  transition: left 0.5s ease;
}

.catalog-tab:hover::before {
  left: 100%;
}

.catalog-tab:hover {
  border-color: rgba(255, 107, 53, 0.5);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.catalog-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: var(--light);
  box-shadow: 0 8px 32px var(--glow-primary);
}

.tab-icon {
  font-size: 1.2rem;
  animation: iconFloat 3s ease-in-out infinite;
}

.catalog-tab.active .tab-icon {
  animation: iconBounce 2s ease-in-out infinite;
}

/* Catalog Content */
.catalog-content {
  transition: all 0.3s ease;
}

.catalog-category {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.5s ease backwards;
}

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

.catalog-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.catalog-category-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientSlide 3s ease infinite;
}

.catalog-category-header:hover::before {
  opacity: 1;
}

.catalog-category-header:hover {
  background: rgba(255, 107, 53, 0.05);
}

.category-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.category-icon {
  font-size: 3rem;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.category-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  margin: 0;
}

.category-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.category-toggle {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
  font-size: 1.2rem;
}

.category-toggle:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.1);
}

.toggle-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.catalog-category.open .toggle-icon {
  transform: rotate(180deg);
}

.catalog-category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 2rem;
}

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

/* Subcategory */
.catalog-subcategory {
  margin-bottom: 2.5rem;
}

.catalog-subcategory:last-child {
  margin-bottom: 0;
}

.subcategory-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Items Grid */
.catalog-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.catalog-item-card {
  position: relative;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(20px);
}

.catalog-item-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.catalog-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.catalog-item-card:hover::before {
  transform: scaleX(1);
}

.catalog-item-card:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-primary);
}

.catalog-item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.6rem;
  background: linear-gradient(135deg, var(--accent), #FFC107);
  color: var(--dark);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 210, 63, 0.6);
  animation: badgePulse 2s ease-in-out infinite;
}

.item-size {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.item-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.item-label {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.item-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.item-note {
  font-size: 0.8rem;
  color: rgba(255, 210, 63, 0.9);
  padding: 0.5rem;
  background: rgba(255, 210, 63, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.item-price {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 0.5rem;
}

.item-order-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--secondary), #003666);
  color: var(--light);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--glow-secondary);
  position: relative;
  overflow: hidden;
}

.item-order-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;
}

.item-order-btn:hover::before {
  left: 100%;
}

.item-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow-secondary);
  filter: brightness(1.2);
}

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

.item-order-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Search Highlight */
.search-highlight {
  background: linear-gradient(135deg, var(--accent), #FFC107);
  color: var(--dark);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  font-weight: 700;
}

/* Empty State */
.catalog-empty {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.5s ease;
}

.empty-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: iconFloat 3s ease-in-out infinite;
}

.catalog-empty h3 {
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.catalog-empty p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Order Modal */
.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.order-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.order-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.order-modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  backdrop-filter: blur(20px);
  padding: 3rem 2.5rem;
  border-radius: 30px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--glow-primary);
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.order-modal.active .order-modal-content {
  transform: scale(1) translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-modal-close:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.order-modal-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: iconBounce 2s ease-in-out infinite;
}

.order-modal-content h3 {
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.order-item-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-size {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.order-material {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.order-price {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.order-message {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.order-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.order-btn-call,
.order-btn-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.order-btn-call {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  box-shadow: 0 8px 32px var(--glow-primary);
}

.order-btn-call:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px var(--glow-primary);
}

.order-btn-email {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.order-btn-email:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 32px var(--glow-primary);
}

/* Popular Products - Carousel */
.popular-carousel-wrapper {
  position: relative;
  width: 100%;
}

.popular-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.popular-grid::-webkit-scrollbar {
  display: none;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--light);
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px var(--glow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px var(--glow-primary);
  border-color: var(--accent);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: -24px;
}

.carousel-btn-next {
  right: -24px;
}

.popular-category {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.popular-category:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-primary);
  transform: translateY(-5px) scale(1.02);
}

.popular-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.popular-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popular-item-card {
  background: rgba(15, 23, 42, 0.5);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  transition: all 0.3s ease;
}

.popular-item-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary);
  transform: translateX(5px);
}

.popular-item-card.highlight {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 210, 63, 0.2));
  border-color: var(--accent);
}

.popular-size {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  flex: 1;
  min-width: 140px;
}

.popular-material {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

.popular-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .popular-category {
    min-width: calc(100vw - 80px);
  }

  .popular-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .popular-size {
    min-width: 100%;
  }
}

/* Products */
.products {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

.product-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover::after {
  width: 500px;
  height: 500px;
  opacity: 0.1;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-primary);
  border-color: rgba(255, 107, 53, 0.5);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-3deg); }
  75% { transform: translateY(-5px) rotate(3deg); }
}

.product-card:hover .product-icon {
  transform: scale(1.2) rotate(10deg) translateY(-10px);
  filter: drop-shadow(0 8px 24px var(--glow-primary));
  animation: none;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  background: linear-gradient(135deg, var(--accent), #FFC107);
  color: var(--dark);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 210, 63, 0.6);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(255, 210, 63, 0.6); }
  50% { transform: scale(1.1); box-shadow: 0 6px 24px rgba(255, 210, 63, 0.8); }
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--accent);
  text-shadow: 0 0 20px var(--glow-primary);
}

.product-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-order {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--secondary), #003666);
  color: var(--light);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--glow-secondary);
  position: relative;
  overflow: hidden;
  z-index: 10;
  pointer-events: auto;
}

.btn-order::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-order:hover::before {
  left: 100%;
}

.btn-order:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px var(--glow-secondary);
  filter: brightness(1.2);
}

/* About */
.about {
  padding: 6rem 0;
  background: var(--dark-soft);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.about-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 1.5rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-features {
  list-style: none;
  margin-top: 2rem;
}

.about-features li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 0;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.about-features li:hover {
  color: var(--accent);
  transform: translateX(10px);
  text-shadow: 0 0 20px var(--glow-primary);
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 60px var(--glow-primary);
  text-align: center;
  transform: rotate(-3deg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

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

.about-card:hover {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 80px var(--glow-primary);
}

.about-card-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: iconBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

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

.about-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.about-card-desc {
  font-size: 1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Contact */
.contact {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  animation: gradientSlide 3s ease infinite;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-primary);
  border-color: rgba(255, 107, 53, 0.5);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: iconFloat 3s ease-in-out infinite;
}

.contact-card:hover .contact-icon {
  animation: iconBounce 0.6s ease;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1rem;
}

.contact-card a {
  display: block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--accent);
  text-shadow: 0 0 20px var(--glow-primary);
  transform: translateX(5px);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.text-muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::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;
}

.social-link:hover::before {
  left: 100%;
}

.social-link svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px var(--glow-primary);
  border-color: var(--primary);
}

.social-link:hover svg {
  transform: scale(1.2) rotate(5deg);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-color: #e6683c;
  box-shadow: 0 8px 24px rgba(230, 104, 60, 0.6);
}

/* Floating Messengers */
.messengers-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.messengers-float.visible {
  opacity: 1;
  transform: translateY(0);
}

.messengers-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  box-shadow: 0 8px 32px var(--glow-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: visible;
}

.messengers-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px var(--glow-primary);
}

.messengers-toggle:active {
  transform: scale(0.95);
}

.toggle-icon {
  width: 28px;
  height: 28px;
  color: var(--light);
  position: absolute;
  transition: all 0.3s ease;
}

.toggle-icon-chat {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.toggle-icon-close {
  opacity: 0;
  transform: rotate(180deg) scale(0);
}

.messengers-float.open .toggle-icon-chat {
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

.messengers-float.open .toggle-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.messenger-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--accent), #FFC107);
  color: var(--dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 3px solid var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

.messengers-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.messengers-float.open .messengers-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.messengers-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
}

.messengers-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  margin: 0 0 0.5rem 0;
}

.messengers-header p {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.messenger-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.messenger-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: currentColor;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.messenger-link:hover::before {
  transform: scaleY(1);
}

.messenger-link:last-child {
  border-bottom: none;
}

.messenger-link:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 2rem;
}

.messenger-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.messenger-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.messenger-link:hover .messenger-icon svg {
  transform: scale(1.2) rotate(5deg);
}

.messenger-link.viber .messenger-icon {
  background: rgba(135, 94, 168, 0.2);
  color: #875EA8;
}

.messenger-link.viber:hover .messenger-icon {
  background: #875EA8;
  color: white;
  box-shadow: 0 4px 16px rgba(135, 94, 168, 0.6);
}

.messenger-link.whatsapp .messenger-icon {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
}

.messenger-link.whatsapp:hover .messenger-icon {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.6);
}

.messenger-link.telegram .messenger-icon {
  background: rgba(42, 171, 238, 0.2);
  color: #2AABEE;
}

.messenger-link.telegram:hover .messenger-icon {
  background: #2AABEE;
  color: white;
  box-shadow: 0 4px 16px rgba(42, 171, 238, 0.6);
}

.messenger-link span {
  font-weight: 600;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 3rem 0 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 80%;
    max-width: 280px;
    background: var(--dark-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    box-shadow: 4px 0 12px var(--shadow);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 0.75rem 0;
    color: var(--light);
  }

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

  .burger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

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

  /* Products Responsive */
  .products {
    padding: 4rem 0;
  }

  /* Catalog Responsive */
  .catalog-tabs {
    gap: 0.5rem;
    padding: 0;
  }

  .catalog-tab {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .tab-text {
    display: inline;
    font-size: 0.8rem;
  }

  .catalog-tab .tab-icon {
    font-size: 1.5rem;
  }

  .catalog-category-header {
    padding: 1.5rem;
  }

  .category-header-left {
    gap: 1rem;
  }

  .category-icon {
    font-size: 2rem;
  }

  .category-title {
    font-size: 1.2rem;
  }

  .category-description {
    font-size: 0.8rem;
  }

  .catalog-category-content {
    padding: 0 1rem;
  }

  .catalog-category.open .catalog-category-content {
    padding: 0 1rem 1rem;
  }

  .catalog-items-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .subcategory-title {
    font-size: 1.1rem;
  }

  .order-modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }

  .order-buttons {
    flex-direction: column;
  }

  .order-btn-call,
  .order-btn-email {
    width: 100%;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }

  /* fix overflow from rotated about-cards */
  .about-image .about-card {
    transform: none !important;
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .about-card-title {
    font-size: 1.2rem;
    word-wrap: break-word;
  }

  .about-card-desc {
    font-size: 0.9rem;
    word-wrap: break-word;
    line-height: 1.4;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  /* Messengers Responsive */
  .messengers-float {
    bottom: 1rem;
    right: 1rem;
  }

  .messengers-toggle {
    width: 56px;
    height: 56px;
  }

  .toggle-icon {
    width: 24px;
    height: 24px;
  }

  .messenger-badge {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }

  .messengers-menu {
    width: calc(100vw - 2rem);
    max-width: 320px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  /* Products Mobile */
  .products {
    padding: 3rem 0;
  }

  .popular-carousel-wrapper {
    margin: 0 -1rem;
  }

  .popular-category {
    min-width: calc(100vw - 60px);
    padding: 1.25rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Messengers Mobile */
  .messengers-float {
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .messengers-toggle {
    width: 52px;
    height: 52px;
  }

  .messengers-menu {
    bottom: 70px;
    right: 50%;
    transform: translateX(50%) translateY(20px) scale(0.9);
    width: calc(100vw - 1.5rem);
    max-width: none;
  }

  .messengers-float.open .messengers-menu {
    transform: translateX(50%) translateY(0) scale(1);
  }

  .social-links {
    justify-content: center;
  }
}

.order-extra {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.order-highlight {
  color: var(--accent);
  font-weight: 700;
  margin: 1rem 0;
  font-size: 1.1rem;
}

/* Box Types Info */
.box-types {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
}

.box-types::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1),transparent);
}

.box-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}

.box-type-card {
  background: rgba(30,41,59,0.5);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
  box-shadow:0 8px 32px rgba(0,0,0,0.3);
  overflow:hidden;
  transition:all .4s cubic-bezier(0.175,0.885,0.32,1.275);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.box-type-card:hover {
  transform:translateY(-12px) scale(1.04);
  box-shadow:0 24px 72px rgba(0,0,0,0.5),0 0 48px var(--glow-primary);
  border-color:rgba(255,107,53,0.4);
}

.box-type-img {
  width:100%;
  height:auto;
  max-height:320px;
  object-fit:contain;
  background:rgba(0,0,0,0.15);
  display:block;
  padding:1.5rem;
}

.box-type-title {
  font-size:1.35rem;
  font-weight:800;
  color:var(--accent);
  margin:1rem 1.5rem 0.5rem;
  text-align:center;
}

.box-type-desc {
  color:rgba(255,255,255,0.8);
  font-size:1rem;
  line-height:1.7;
  margin:0 1.5rem 2rem;
  text-align:center;
}
@media(max-width:768px){
  .box-type-img{max-height:240px; padding:1rem;}
}
