/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Color Palette */
:root {
  /* Primary Green Colors */
  --primary-green: #29a366;
  --primary-green-light: #3bc77a;
  --primary-green-dark: #1f8a52;
  --primary-green-lighter: #4dd18a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #29a366 0%, #3bc77a 100%);
  --gradient-hero: linear-gradient(135deg, #29a366 0%, #3bc77a 50%, #4dd18a 100%);
  --gradient-contact: linear-gradient(135deg, #1f8a52 0%, #29a366 100%);

  /* Text Colors */
  --text-primary: #2d3748;
  --text-secondary: #718096;
  --text-light: #a0aec0;
  --text-white: #ffffff;

  /* Background Colors */
  --background: #ffffff;
  --background-light: #f7fafc;
  --background-gray: #edf2f7;

  /* Shadow and Border */
  --shadow: rgba(41, 163, 102, 0.15);
  --shadow-light: rgba(41, 163, 102, 0.08);
  --shadow-dark: rgba(41, 163, 102, 0.25);
  --border-light: #e2e8f0;

  /* Typography */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 3.75rem;
  /* 60px */

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  --spacing-2xl: 3rem;
  /* 48px */
  --spacing-3xl: 4rem;
  /* 64px */

  /* Border Radius */
  --radius-sm: 0.25rem;
  /* 4px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 0.75rem;
  /* 12px */
  --radius-xl: 1rem;
  /* 16px */
  --radius-2xl: 1.5rem;
  /* 24px */

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Construction Order Modal Styles */
.light-construction-order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: all var(--transition-normal);
  padding: var(--spacing-lg);
}

.light-construction-order-modal.active {
  opacity: 1;
}

.light-construction-order-modal.closing {
  opacity: 0;
}

.light-construction-order-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.light-construction-order-modal .modal-content {
  position: relative;
  background: var(--background);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
}

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

.light-construction-order-modal .modal-close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  background: var(--background);
  border: 2px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  z-index: 1;
  font-size: var(--text-lg);
}

.light-construction-order-modal .modal-close:hover {
  background: var(--primary-green);
  color: var(--text-white);
  border-color: var(--primary-green);
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px var(--shadow);
}

.light-construction-modal-body {
  padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
}

.light-construction-modal-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.light-construction-modal-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  font-family: var(--font-heading);
}

.light-construction-modal-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.5;
}

.light-construction-order-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.light-construction-form-group {
  position: relative;
}

.light-construction-form-group label {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  font-size: var(--text-sm);
  font-family: var(--font-primary);
}

.light-construction-form-group input[type="text"],
.light-construction-form-group input[type="tel"],
.light-construction-form-group input[type="email"],
.light-construction-form-group textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--background);
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.light-construction-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.light-construction-form-group input:focus,
.light-construction-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  background: var(--background-light);
}

.light-construction-form-group input::placeholder,
.light-construction-form-group textarea::placeholder {
  color: var(--text-light);
  font-size: var(--text-sm);
}

.light-construction-checkbox-group {
  margin-top: var(--spacing-lg);
}

.light-construction-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  cursor: pointer;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-secondary);
  font-family: var(--font-primary);
}

.light-construction-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.light-construction-checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: var(--background);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  flex-shrink: 0;
  margin-top: 2px;
}

.light-construction-checkbox-label:hover input ~ .light-construction-checkmark {
  border-color: var(--primary-green);
  background-color: var(--background-light);
}

.light-construction-checkbox-label input:checked ~ .light-construction-checkmark {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.light-construction-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.light-construction-checkbox-label input:checked ~ .light-construction-checkmark:after {
  display: block;
}

.light-construction-checkbox-label .light-construction-checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--text-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.light-construction-form-actions {
  margin-top: var(--spacing-xl);
}

.light-construction-submit-btn {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.light-construction-submit-btn:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-dark);
}

.light-construction-submit-btn:active {
  transform: translateY(0);
}

.light-construction-submit-btn:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.light-construction-success-message {
  text-align: center;
  padding: 40px 20px;
}

.light-construction-success-message .success-icon {
  width: 80px;
  height: 80px;
  background: #29a366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
  font-weight: bold;
}

.light-construction-success-message h4 {
  font-size: 24px;
  color: #2c5530;
  margin-bottom: 10px;
  font-weight: 700;
}

.light-construction-success-message p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.light-construction-form-group.error input,
.light-construction-form-group.error textarea {
  border-color: #e74c3c;
  background: #fdf2f2;
}

.light-construction-form-group.error .error-message {
  display: block;
}

/* Адаптивные стили для модального окна заказа световых конструкций */
@media (max-width: 768px) {
  .light-construction-order-modal {
    padding: var(--spacing-md);
  }
  
  .light-construction-order-modal .modal-content {
    width: 95%;
    margin: var(--spacing-lg);
    max-height: calc(100vh - 40px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
  }
  
  .light-construction-modal-body {
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
  }
  
  .light-construction-modal-title {
    font-size: var(--text-xl);
    line-height: 1.3;
  }
  
  .light-construction-modal-subtitle {
    font-size: var(--text-sm);
    margin-top: var(--spacing-sm);
  }
  
  .light-construction-order-form {
    gap: var(--spacing-md);
  }
  
  .light-construction-form-group input[type="text"],
  .light-construction-form-group input[type="tel"],
  .light-construction-form-group input[type="email"],
  .light-construction-form-group textarea {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--text-base);
    border-radius: var(--radius-md);
  }
  
  .light-construction-submit-btn {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--text-sm);
  }
  
  .light-construction-checkbox-label {
    font-size: var(--text-sm);
    gap: var(--spacing-sm);
  }
  
  .light-construction-checkmark {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
  
  .light-construction-checkbox-label input[type="checkbox"]:checked + .light-construction-checkmark::after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }
}

@media (max-width: 480px) {
  .light-construction-order-modal {
    padding: var(--spacing-sm);
  }
  
  .light-construction-order-modal .modal-content {
    width: 100%;
    height: auto;
    max-height: 100vh;
    margin: 0;
    padding: var(--spacing-md);
  }
  
  .light-construction-modal-body {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  }
  
  .modal-close {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  
  .light-construction-modal-title {
    font-size: var(--text-lg);
    line-height: 1.2;
  }
  
  .light-construction-modal-subtitle {
    font-size: var(--text-xs);
    margin-top: var(--spacing-xs);
  }
  
  .light-construction-order-form {
    gap: var(--spacing-sm);
  }
  
  .light-construction-form-group label {
    font-size: var(--text-xs);
    margin-bottom: var(--spacing-xs);
  }
  
  .light-construction-form-group input[type="text"],
  .light-construction-form-group input[type="tel"],
  .light-construction-form-group input[type="email"],
  .light-construction-form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
  }
  
  .light-construction-checkbox-group {
    margin-top: var(--spacing-sm);
  }
  
  .light-construction-checkbox-label {
    font-size: var(--text-xs);
    gap: var(--spacing-sm);
    line-height: 1.4;
  }
  
  .light-construction-checkmark {
    width: 24px !important;
    height: 24px !important;
    border-width: 2px;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
  
  .light-construction-checkbox-label input[type="checkbox"]:checked + .light-construction-checkmark::after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }
  
  .light-construction-submit-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
  }
  
  .light-construction-form-actions {
    margin-top: var(--spacing-md);
  }
  
  .light-construction-success-message {
    font-size: var(--text-sm);
    padding: var(--spacing-sm);
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
}

h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
}

h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
}

h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
}

h5 {
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
}

h6 {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Links */
a {
  color: var(--primary-green);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-green-dark);
  text-decoration: underline;
}

/* Lists */
ul,
ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

li {
  margin-bottom: var(--spacing-xs);
  color: var(--text-secondary);
}

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

/* Buttons Base Styles */
button {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: none;
}

button:focus {
  box-shadow: 0 0 0 3px rgba(41, 163, 102, 0.2);
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: var(--spacing-md) var(--spacing-xl);
  font-weight: var(--font-semibold);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-dark);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background: var(--background);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: calc(var(--spacing-md) - 2px) calc(var(--spacing-xl) - 2px);
  font-weight: var(--font-medium);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--text-white);
}

/* Form Elements */
input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: var(--spacing-md);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--background);
  color: var(--text-primary);
  transition: var(--transition-normal);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(41, 163, 102, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

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

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

.mt-0 {
  margin-top: 0;
}

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

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

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

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

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

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

/* Text Colors */
.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-light {
  color: var(--text-light);
}

.text-white {
  color: var(--text-white);
}

.text-green {
  color: var(--primary-green);
}

/* Background Colors */
.bg-white {
  background-color: var(--background);
}

.bg-light {
  background-color: var(--background-light);
}

.bg-green {
  background: var(--gradient-primary);
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 2px 4px var(--shadow-light);
}

.shadow {
  box-shadow: 0 4px 12px var(--shadow);
}

.shadow-lg {
  box-shadow: 0 8px 24px var(--shadow-dark);
}

/* ===== GLASS MORPHISM NAVIGATION ===== */
.navbar {
  position: fixed;
  top: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  max-width: 1500px;
  width: calc(100% - var(--spacing-2xl));
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgb(255 255 255 / 63%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .nav-logo .logo-text {
  color: var(--primary-green);
  text-shadow: none;
}

.navbar.scrolled .nav-link {
  color: rgba(45, 55, 72, 0.9);
  text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary-green-dark);
  background: rgba(41, 163, 102, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(41, 163, 102, 0.2);
}

.navbar.scrolled .nav-link.active {
  color: var(--primary-green-dark);
  background: rgba(41, 163, 102, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(41, 163, 102, 0.3);
  font-weight: var(--font-semibold);
}



.navbar.scrolled .phone-link {
  color: rgba(45, 55, 72, 0.9);
  text-shadow: none;
  background: rgba(41, 163, 102, 0.12);
  border-color: rgba(41, 163, 102, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled .phone-link:hover {
  background: rgba(41, 163, 102, 0.2);
  color: var(--primary-green-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled .social-btn {
  color: rgba(45, 55, 72, 0.9);
  background: rgba(41, 163, 102, 0.12);
  border-color: rgba(41, 163, 102, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled .social-btn:hover {
  color: var(--primary-green-dark);
  background: rgba(41, 163, 102, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled .hamburger .bar {
  background: var(--text-primary);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--spacing-xl);
  min-width: 0;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-logo .logo-image {
  height: 6.nav-link0px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-lg);
  flex-shrink: 0;
}

.nav-link {
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition-normal);
  position: relative;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  font-size: var(--text-sm);
  display: inline-block;
  vertical-align: top;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: var(--font-semibold);
}



/* Contact Info & Social Buttons */
.nav-contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: var(--font-medium);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.phone-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
}

.phone-icon svg {
  width: 18px;
  height: 18px;
  color: inherit;
}

.phone-number {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  white-space: nowrap;
}

.nav-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-normal);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.3);
}

.social-btn.telegram:hover {
  background: rgba(0, 136, 204, 0.2);
  border-color: rgba(0, 136, 204, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION WITH PARALLAX ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffa8a8 100%);
  background-image: url('../images/hero/4fc6ba14-a57d-532c-8023-eb514cb836ef.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
}

/* Parallax Elements */
.parallax-element {
  position: absolute;
  will-change: transform;
}

.parallax-balls-left {
  left: -30%;
  top: 0%;
  width: 100%;
  height: 100%;
}

.parallax-tree-right {
  right: -25%;
  top: -5%;
  width: 100%;
  height: 110%;
}

/* Hero Balls */
.hero-ball {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 500px;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
  animation: floatBall 8s ease-in-out infinite;
  transition: transform 0.3s ease-out;
}

.ball-1 {
  top: 5%;
  left: 20%;
  max-width: 680px;
  animation-delay: 0s;
}

.ball-2 {
  top: 45%;
  left: 0%;
  max-width: 420px;
  animation-delay: 2s;
}

.ball-3 {
  top: 70%;
  left: 30%;
  max-width: 350px;
  animation-delay: 4s;
}

/* Hero Tree */
.hero-tree {
  position: absolute;
  top: -5%;
  right: 10%;
  width: 100%;
  height: auto;
  max-width: 800px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
  animation: floatTree 10s ease-in-out infinite;
  transition: transform 0.3s ease-out;
}

/* Hero Badges */
.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: #ff6b6b;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: floatBadge 6s ease-in-out infinite;
  z-index: 3;
}

.badge-top {
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.badge-left {
  top: 40%;
  left: 8%;
  animation-delay: 2s;
}

.badge-right {
  top: 30%;
  right: 8%;
  animation-delay: 4s;
}

/* Animations */
@keyframes floatBall {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}

@keyframes floatTree {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Parallax scroll animations */
@keyframes parallaxGrow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: var(--spacing-3xl) var(--spacing-lg) 0;
  animation: fadeInUp 1s ease-out;
}

.hero-text {
  color: var(--text-white);
}

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: normal;
  margin-bottom: var(--spacing-lg);
  color: var(--text-white);
  line-height: 1.2;

}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: var(--font-medium);
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: var(--spacing-2xl);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-button {
  background: var(--text-white);
  color: var(--primary-green);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(41, 163, 102, 0.1), transparent);
  transition: var(--transition-slow);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  color: #2ab05b;
}

.cta-button:active {
  transform: translateY(-1px);
}

.button-arrow {
  font-size: var(--text-xl);
  transition: var(--transition-normal);
}

.cta-button:hover .button-arrow {
  transform: translateX(4px);
}

/* Slide down animation for closing */
@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
}

/* Fade out animation */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide up animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Fade in up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 
SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
  padding: var(--spacing-3xl) 0;
  background: var(--background-light);
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(41, 163, 102, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(41, 163, 102, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.advantages-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.advantage-row {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.advantage-card {
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

/* Стеклянные текстовые карточки */
.advantage-card.glass-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(41, 163, 102, 0.3);
  padding: 20px;
  text-align: left;
}



/* Фото карточки */
/* Изолированные стили для фото карточек в секции Advantages */
.advantage-card.advantage-photo-card {
  border: none;
  background: none;
  padding: 0;
}

.advantage-card.advantage-photo-card .advantage-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Изолированные стили для data-advantage-tilt */
[data-advantage-tilt] {
  transform-origin: center center !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform !important;
}

/* Агрессивное скрытие стандартного курсора */
* {
    cursor: none !important;
}

*:hover {
    cursor: none !important;
}

*:active {
    cursor: none !important;
}

*:focus {
    cursor: none !important;
}

*::before, *::after {
    cursor: none !important;
}

html {
    cursor: none !important;
}

body {
    cursor: none !important;
}

/* Специфичные селекторы для всех возможных элементов */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, input, textarea, select,
main, section, nav, aside, header, footer {
    cursor: none !important;
}

/* Дополнительные состояния */
a:hover, a:active, a:focus,
button:hover, button:active, button:focus,
input:hover, input:active, input:focus,
textarea:hover, textarea:active, textarea:focus,
select:hover, select:active, select:focus {
    cursor: none !important;
}

/* Для всех интерактивных элементов */
[role="button"], [role="link"], [role="menuitem"], [role="tab"],
.btn, .button, .link, .clickable, .interactive {
    cursor: none !important;
}

/* Для всех элементов с обработчиками событий */
[onclick], [onmouseover], [onmouseout], [onmousedown], [onmouseup] {
    cursor: none !important;
}

/* Стили для кастомного курсора */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease-out;
  transform-origin: center;
}

.custom-cursor.hover {
  transform: scale(1.2);
}

.custom-cursor.click {
  transform: scale(0.8);
}

.advantage-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.advantage-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: var(--text-3xl);
  box-shadow: 0 6px 20px rgba(41, 163, 102, 0.2);
  position: relative;
  overflow: hidden;
}

.advantage-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 50%;
}

.advantage-icon .icon {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.advantage-title {
  font-size: 2.3rem;
  font-weight: 900;
  ;
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
}

.advantage-description {
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Enhanced section header for advantages */
.advantages .section-header {
  position: relative;
  z-index: 2;
}

.advantages .section-title {
  position: relative;
}

.advantages .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ===== CHRISTMAS ORNAMENTS SECTION ===== */
/* ===== CHRISTMAS ORNAMENTS SECTION ===== */
.christmas-ornaments {
  padding: var(--spacing-3xl) 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.christmas-ornaments::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(41, 163, 102, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(41, 163, 102, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Enhanced section header for christmas ornaments */
.christmas-ornaments .section-header {
  position: relative;
  z-index: 2;
  text-align: center;
}

.christmas-ornaments .section-title {
  position: relative;
  color: var(--text-primary);
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.christmas-ornaments .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.christmas-ornaments .section-subtitle {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Feature sections with glassmorphism effect */
.ornament-feature-section {
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(41, 163, 102, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--spacing-2xl);
  box-shadow: 
    0 8px 32px rgba(41, 163, 102, 0.1),
    0 2px 8px rgba(255, 255, 255, 0.1) inset;
  transition: all var(--transition-normal);
  overflow: hidden;
  border: 1px solid #38c177;
}

.ornament-feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(41, 163, 102, 0.02) 0%, 
    rgba(59, 199, 122, 0.01) 50%, 
    rgba(77, 209, 138, 0.02) 100%);
  pointer-events: none;
  z-index: -1;
}

.ornament-feature-section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 16px 48px rgba(41, 163, 102, 0.15),
    0 4px 12px rgba(255, 255, 255, 0.15) inset;
  border: 1px solid rgba(41, 163, 102, 0.3);
}

.ornament-feature-section:last-of-type {
  margin-bottom: 0;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ornament-feature-section.reverse .feature-content {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 0;
}

.feature-image {
  flex: 0 0 400px;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 
    0 12px 40px rgba(41, 163, 102, 0.15),
    0 2px 8px rgba(255, 255, 255, 0.1) inset;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.feature-image img:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 
    0 20px 60px rgba(41, 163, 102, 0.25),
    0 4px 12px rgba(255, 255, 255, 0.15) inset;
  border: 1px solid rgba(41, 163, 102, 0.2);
}

.feature-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.feature-description {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
}

.benefit-icon {
  font-size: var(--text-lg);
  flex-shrink: 0;
}

/* SVG Icon Styles - Улучшенные стили для новых иконок */
.svg-icon {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
  display: inline-block;
  vertical-align: middle;
  transition: all var(--transition-normal);
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(41, 163, 102, 0.2));
  flex-shrink: 0;
}

.benefit-icon .svg-icon {
  width: 3rem; /* 32px */
  height: 3rem; /* 32px */
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.08) 0%, rgba(59, 199, 122, 0.04) 100%);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  border: 1px solid rgba(41, 163, 102, 0.15);
  backdrop-filter: blur(8px);
}

.cta-icon .svg-icon {
  width: 4rem; /* 24px */
  height: 4rem; /* 24px */
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.06) 0%, rgba(59, 199, 122, 0.03) 100%);
  border-radius: var(--radius-sm);
  padding: 0.375rem;
  border: 1px solid rgba(41, 163, 102, 0.1);
}

/* Улучшенные эффекты наведения для SVG иконок */
.benefit:hover .svg-icon,
.cta-benefit:hover .svg-icon {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(41, 163, 102, 0.3));
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.15) 0%, rgba(59, 199, 122, 0.08) 100%);
  border: 1px solid rgba(41, 163, 102, 0.3);
  color: var(--primary-color);
}

/* Плавная анимация пульсации для иконок */
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
}

.svg-icon:hover {
  animation: iconPulse 1.5s infinite ease-in-out;
}

.benefit-text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* CTA section */
.ornament-cta-section {
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.05) 0%, rgba(59, 199, 122, 0.05) 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  text-align: center;
  border: 1px solid rgba(41, 163, 102, 0.1);
  position: relative;
  overflow: hidden;
}

.ornament-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.02) 0%, rgba(59, 199, 122, 0.02) 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.cta-description {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.cta-icon {
  font-size: var(--text-lg);
}



/* Legacy styles for backward compatibility */
.ornaments-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.ornament-row {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.ornament-card {
  background: var(--background);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: 0 8px 32px rgba(41, 163, 102, 0.08);
  border: 1px solid rgba(41, 163, 102, 0.1);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 320px;
  max-width: 450px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ornament-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.02) 0%, rgba(59, 199, 122, 0.02) 100%);
  pointer-events: none;
}

.ornament-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(41, 163, 102, 0.15);
  border-color: rgba(41, 163, 102, 0.2);
}

.ornament-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  font-size: var(--text-2xl);
  box-shadow: 0 6px 20px rgba(41, 163, 102, 0.2);
  position: relative;
  overflow: hidden;
}

.ornament-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 50%;
}

.ornament-icon .icon {
  position: relative;
  z-index: 1;
  color: var(--text-white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ornament-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.ornament-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--text-base);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.ornament-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ornament-features li {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

.ornament-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-green);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
}

.ornament-features li:last-child {
  margin-bottom: 0;
}

/* Photo card for ornaments section */
.ornament-card.ornament-photo-card {
  padding: 0;
  background: none;
  border: none;
  box-shadow: 0 8px 32px rgba(41, 163, 102, 0.12);
  min-height: 300px;
}

.ornament-card.ornament-photo-card .ornament-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  min-height: 300px;
}

.ornament-card.ornament-photo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(41, 163, 102, 0.2);
}

/* ===== CATALOG SECTION ===== */
.catalog {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(41, 163, 102, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(41, 163, 102, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Category Section */
.category-section {
  margin-bottom: var(--spacing-3xl);
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-header {
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.category-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.category-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.tree-card {
  background: var(--background);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(41, 163, 102, 0.08);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  border: 3px solid #38c07571 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tree-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(41, 163, 102, 0.05), transparent);
  transition: var(--transition-slow);
  z-index: 1;
}

.tree-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.tree-image {
  position: relative;
  height: 400px;
  padding: var(--spacing-md);
  background: var(--background-light);
}

.tree-image::after {
  content: '';
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  bottom: var(--spacing-md);
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-normal);
  border-radius: var(--radius-lg);
}

.tree-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.tree-info {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
  background: var(--background);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tree-name {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.tree-specs {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
}

.tree-specs li {
  padding: var(--spacing-xs) 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.4;
}

.tree-price {
font-weight: 800;
    font-size: 1.5rem;
    color: #38c076;
  margin-bottom: var(--spacing-lg);
}

.tree-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.tree-bottom .tree-price {
  margin-bottom: 0;
}

.order-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  transform: translateY(0);
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow);
}

.order-btn:active {
  transform: translateY(-1px);
  transition: all 0.1s ease;
}

/* Enhanced section header for catalog */
.catalog .section-header {
  position: relative;
  z-index: 2;
}

.catalog .section-title {
  position: relative;
}

.catalog .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ===== WHY US SECTION ===== */
.why-us {
  padding: var(--spacing-3xl) 0;
  background: var(--background-light);
}

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

.mission-description {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-description p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

.reason-item {
  background: var(--background);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition-normal);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.reason-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Reason Number */
.reason-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  line-height: 1;
  display: block;
}

.reason-item.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reason-title {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.reason-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CALCULATION SECTION ===== */
.calculation {
  padding: 80px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.calculation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="snowflakes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="12" cy="8" r="0.3" fill="rgba(255,255,255,0.08)"/><circle cx="18" cy="15" r="0.4" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23snowflakes)"/></svg>') repeat;
  opacity: 0.3;
  pointer-events: none;
}

.calculation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.calculation-text {
  color: var(--text-white);
}

.calculation-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-white);
}

.calculation-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.calculation-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calculation-form .form-group {
  position: relative;
}

.calculation-form input,
.calculation-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 1rem;
  font-family: var(--font-primary);
  background: var(--background);
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
}

.calculation-form textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 100px;
  padding-top: 16px;
}

.calculation-form input:focus,
.calculation-form textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(41, 163, 102, 0.1);
  transform: translateY(-2px);
}

.calculation-form input::placeholder,
.calculation-form textarea::placeholder {
  color: var(--text-secondary);
  font-weight: 400;
}

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

.country-flag {
  position: absolute;
  left: 20px;
  font-size: 1.2rem;
  z-index: 3;
}

.phone-group input {
  padding-left: 55px;
}

.calculation-btn {
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(41, 163, 102, 0.3);
}

.calculation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(41, 163, 102, 0.4);
  background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
}

.calculation-btn:active {
  transform: translateY(-1px);
}

.calculation-btn span {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .calculation {
    padding: 60px 0;
  }
  
  .calculation-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .calculation-title {
    font-size: 2rem;
  }
  
  .calculation-subtitle {
    font-size: 1rem;
  }
  
  .calculation-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .calculation-title {
    font-size: 1.75rem;
  }
  
  .calculation-form-wrapper {
    padding: 25px 15px;
  }
  
  .calculation-form input,
  .calculation-form textarea {
    padding: 14px 18px;
  }
  
  .phone-group input {
    padding-left: 50px;
  }
  
  .calculation-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--spacing-3xl) 0;
  position: relative;
  background: var(--background-light);
  overflow: hidden;
}

.faq::before,
.faq::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.faq::before {
  top: 10%;
  left: 25px;
}

.faq::after {
  bottom: 10%;
  right: 25px;
  width: 150px;
  height: 150px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 var(--spacing-md);
  box-sizing: border-box;
}

.faq-item {
  background: var(--background);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition-normal);
  max-width: 100%;
  box-sizing: border-box;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  padding: var(--spacing-xl);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background: var(--background-light);
}

.faq-item.active .faq-question {
  background: var(--background-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-question h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin: 0;
  word-wrap: break-word;
  hyphens: auto;
  max-width: calc(100% - 50px);
}

.faq-icon {
  font-size: var(--text-2xl);
  color: var(--primary-green);
  font-weight: var(--font-bold);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(41, 163, 102, 0.1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-green);
  color: var(--text-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  padding: 0 var(--spacing-xl);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--spacing-xl) var(--spacing-xl);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  padding-top: var(--spacing-md);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf9 100%);
  position: relative;
  overflow: hidden;
}
.contact-header-container{
  margin-top: 40px;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(41, 163, 102, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(41, 163, 102, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.contact-shape-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.08), rgba(34, 197, 94, 0.05));
  border-radius: 50% 40% 60% 30%;
  animation: float 20s ease-in-out infinite;
  backdrop-filter: blur(1px);
}

.contact-shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -8%;
  left: -5%;
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.06), rgba(34, 197, 94, 0.04));
  border-radius: 40% 60% 30% 50%;
  animation: float 18s ease-in-out infinite reverse;
  backdrop-filter: blur(1px);
}

.contact-shape-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.05), rgba(34, 197, 94, 0.03));
  border-radius: 60% 30% 50% 40%;
  animation: float 25s ease-in-out infinite;
  backdrop-filter: blur(1px);
}

/* Section Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #29a366, #22c55e);
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(41, 163, 102, 0.1);
  box-shadow: 
    0 8px 32px rgba(41, 163, 102, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 120px;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(41, 163, 102, 0.05), transparent);
  transition: all 0.6s ease;
  z-index: 1;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 163, 102, 0.2);
  box-shadow: 
    0 16px 48px rgba(41, 163, 102, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-card:hover::before {
  left: 100%;
}

/* Contact Card Icons */
.contact-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #29a366, #22c55e);
  border-radius: 16px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(41, 163, 102, 0.25);
  position: relative;
  z-index: 2;
  font-size: 24px;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 12px 32px rgba(41, 163, 102, 0.35);
}

/* Contact Card Content */
.contact-card-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
  line-height: 1.3;
}

.contact-card-link {
  color: #29a366;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
}

.contact-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #29a366, #22c55e);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.contact-card-link:hover {
  color: #22c55e;
  transform: translateX(2px);
}

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

.contact-card-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Schedule Card Specific Styles */
.contact-card-schedule p {
  margin: 0 0 6px 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

.contact-card-schedule .weekend {
  color: #999;
  font-style: italic;
  font-weight: 400;
}

/* Address Card Specific Styles */
.contact-card-address p {
  margin: 0 0 6px 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

.contact-card-address .postal-code {
  color: #999;
  font-size: 0.9rem;
}

/* Map Section */
.contact-map-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.map-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.3;
}

.map-description {
  color: #ededed;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 12px 40px rgba(41, 163, 102, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(41, 163, 102, 0.1);
  backdrop-filter: blur(20px);
  background: white;
  height: 400px;
}

.map-container:hover {
  box-shadow: 
    0 20px 60px rgba(41, 163, 102, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(41, 163, 102, 0.2);
}

#yandex-map {
  border-radius: 19px;
  width: 100%;
  height: 100%;
}

/* Map Overlay */
.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(41, 163, 102, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
  max-width: 280px;
}

.map-overlay:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.map-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-info-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #29a366, #22c55e);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
  font-size: 16px;
}

.map-info-text {
  flex: 1;
}

.map-info-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.map-info-address {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--background);
  border-radius: var(--radius-2xl);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  background: none;
  border: none;
  font-size: var(--text-2xl);
  color: #37c076;
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-normal);
  background: #ffffff;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--background-light);
  color: var(--text-primary);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-2xl);
}

.modal-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.modal-form h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 163, 102, 0.1);
}

.error-message {
  display: none;
  color: #e53e3e;
  font-size: var(--text-sm);
  margin-top: var(--spacing-xs);
  font-weight: var(--font-medium);
  animation: fadeInError 0.3s ease-out;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
  background-color: rgba(229, 62, 62, 0.02);
}

.form-group input.valid,
.form-group textarea.valid {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(41, 163, 102, 0.1);
  background-color: rgba(41, 163, 102, 0.02);
}

.form-group input.valid+.error-message::after,
.form-group textarea.valid+.error-message::after {
  content: '✓ Поле заполнено корректно';
  color: var(--primary-green);
  font-size: var(--text-sm);
  display: block;
  margin-top: var(--spacing-xs);
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: var(--spacing-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all var(--transition-normal);
  transform: translateY(0);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.submit-btn:active {
  transform: translateY(-1px);
  transition: all 0.1s ease;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn .btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
}

.success-message {
  text-align: center;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, #f0f9f6 0%, #e6f7ed 100%);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary-green-light);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
}

.success-message h4 {
  color: var(--primary-green);
  margin-bottom: var(--spacing-md);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
}

.success-message p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: var(--text-base);
}

/* Global Error Message */
.error-message-global {
  background: #fed7d7;
  border: 1px solid #feb2b2;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  animation: slideInError 0.3s ease-out;
}

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

.error-icon {
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.error-text {
  color: #c53030;
  font-weight: var(--font-medium);
  flex-grow: 1;
}

.error-close {
  background: none;
  border: none;
  color: #c53030;
  font-size: var(--text-lg);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.error-close:hover {
  background: rgba(197, 48, 48, 0.1);
}

@keyframes slideInError {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MESSENGER BUTTONS ===== */
.messenger-buttons {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  z-index: 1500;
}

.messenger-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.messenger-list.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.messenger-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: var(--background);
  color: var(--text-primary);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-xl);
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.messenger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.messenger-btn.telegram:hover {
  background: #0088cc;
  color: var(--text-white);
}

.messenger-btn.whatsapp:hover {
  background: #25d366;
  color: var(--text-white);
}

.main-messenger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  font-size: var(--text-xl);
}

.main-messenger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px var(--shadow-dark);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--spacing-3xl) 0;
  background: var(--background-light);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(30px);
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(41, 163, 102, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: var(--spacing-xl);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
  position: relative;
}

.faq-question:hover {
  background: rgba(41, 163, 102, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  transition: var(--transition-normal);
  flex: 1;
  padding-right: var(--spacing-md);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-green);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-secondary);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary-green);
  color: var(--background);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
  background: rgba(41, 163, 102, 0.02);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 var(--spacing-xl) var(--spacing-xl);
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--text-base);
}

/* Decorative elements for FAQ */
.faq::before,
.faq::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.1), rgba(41, 163, 102, 0.05));
  z-index: 1;
}

.faq::before {
  top: 10%;
  left: 25px;
}

.faq::after {
  bottom: 10%;
  right: 25px;
  width: 150px;
  height: 150px;
}

/* 
===== CONTACT SECTION ===== */
.contact {
  position: relative;
  background: var(--gradient-contact);
  padding: var(--spacing-4xl) 0;
  overflow: hidden;
  color: var(--background);
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.contact-shape-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50% 30% 60% 40%;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.contact-shape-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 40% 60% 30% 50%;
  transform: rotate(-30deg);
  animation: float 6s ease-in-out infinite reverse;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

#yandex-map {
  border-radius: var(--radius-xl);
}

.contact-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-md);
  color: var(--background);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--spacing-3xl);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-medium);
}

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

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: var(--text-3xl);
  flex-shrink: 0;
}

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

.contact-details h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-xs);
  color: var(--background);
}

.contact-details p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-link {
  color: var(--background);
  text-decoration: none;
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  transition: var(--transition-normal);
  position: relative;
}

.contact-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--background);
  transition: var(--transition-normal);
}

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

/* ===== FOOTER ===== */
/* ===== FOOTER STYLES ===== */
.footer {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.footer-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  z-index: 1;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.footer-logo .logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(41, 163, 102, 0.3));
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  font-size: var(--text-base);
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--background);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform var(--transition-normal);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--primary-green);
  box-shadow: 0 6px 20px var(--shadow);
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover svg {
  color: var(--text-white);
  position: relative;
  z-index: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.column-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.column-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
  padding: var(--spacing-xs) 0;
  position: relative;
  display: inline-block;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.footer-link:hover {
  color: var(--primary-green);
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.contact-icon {
  width: 35px;
  height: 35px;
  background: var(--background-light);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon {
  background: var(--primary-green);
  color: var(--text-white);
  transform: scale(1.1);
}

.contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
  font-weight: var(--font-medium);
}

.contact-link:hover {
  color: var(--primary-green);
}

.contact-text {
  color: var(--text-secondary);
  font-weight: var(--font-medium);
}

.footer-bottom {
  background: var(--background);
  border-top: 1px solid var(--border-light);
  padding: var(--spacing-xl) 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.copyright {
  color: var(--text-secondary);
  margin: 0;
  font-size: var(--text-sm);
}

.company-details-footer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.company-details-footer p {
  color: var(--text-secondary);
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.4;
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-xl);
}

.footer-bottom-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
}

.footer-bottom-link:hover {
  color: var(--primary-green);
}

/* Footer responsive styles */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .footer-wave {
    top: -40px;
    height: 40px;
  }
  
  .footer-logo {
    justify-content: center;
    text-align: center;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: var(--text-xl);
  }
  
  .footer-description {
    text-align: center;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon {
    width: 30px;
    height: 30px;
  }
}

/* ====
= FLOATING MESSENGER BUTTONS ===== */
.messenger-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-md);
}

.messenger-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.messenger-list.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.messenger-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--background);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  white-space: nowrap;
  border: 2px solid transparent;
}

.messenger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-dark);
  border-color: var(--primary-green);
}

.messenger-btn.telegram:hover {
  background: #0088cc;
  color: var(--text-white);
}

.messenger-btn.whatsapp:hover {
  background: #25d366;
  color: var(--text-white);
}

.messenger-icon {
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.messenger-label {
  font-family: var(--font-primary);
}

.main-messenger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-messenger-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px var(--shadow-dark);
}

.main-messenger-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.main-messenger-btn .messenger-icon {
  font-size: var(--text-2xl);
  color: var(--text-white);
  transition: transform 0.3s ease;
  z-index: 1;
}

.main-messenger-btn.active .messenger-icon {
  transform: rotate(45deg);
}

/* Pulse animation for main button */
.main-messenger-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.7;
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .messenger-buttons {
    bottom: 20px;
    right: 20px;
  }

  .main-messenger-btn {
    width: 50px;
    height: 50px;
  }

  .main-messenger-btn .messenger-icon {
    font-size: var(--text-xl);
  }

  .messenger-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--text-xs);
  }

  .messenger-label {
    display: none;
  }
}

/* ===== PRODUCT MODAL STYLES ===== */

/* Modal overlay */
/* ===== PRODUCT MODAL STYLES ===== */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal content container */
.product-modal .modal-content {
  background: var(--background);
  border-radius: var(--radius-xl);
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

/* Close button */
.product-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.product-modal .modal-close:hover {
  background: var(--background);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Modal body */
.product-modal .modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

/* Product image section */
.modal-image-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Product Swiper Slider */
.product-swiper {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
}

.product-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-swiper .swiper-slide img:hover {
  transform: scale(1.02);
}

/* Swiper Navigation */
.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: -20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-swiper .swiper-button-next:after,
.product-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.product-swiper .swiper-button-next:hover,
.product-swiper .swiper-button-prev:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Swiper Pagination */
.product-swiper .swiper-pagination {
  bottom: 15px;
}

.product-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.product-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Legacy image styles for backward compatibility */
.modal-product-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.modal-product-image:hover {
  transform: scale(1.02);
}

/* Product info section */
.modal-info-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 90vh;
  position: relative;
}

/* Product title */
.modal-product-title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
}

/* Characteristics section - Minimalist Design */
.product-characteristics {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  overflow-y: auto;
  padding-right: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

/* Height selector */
.height-selector {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.height-selector label {
  font-weight: var(--font-medium);
  color: var(--text-primary);
  font-size: var(--text-base);
}

.height-options {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.height-option {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--background);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  min-width: 60px;
  text-align: center;
}

.height-option:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.height-option.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

/* Diameter info */
.diameter-info {
  padding: var(--spacing-sm) 0;
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.diameter-info span {
  color: var(--text-primary);
  font-weight: var(--font-medium);
}

/* Product specifications */
.product-specs {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  font-size: var(--text-sm);
}

.spec-item span:first-child {
  color: var(--text-secondary);
  font-weight: var(--font-normal);
}

.spec-item span:last-child {
  color: var(--text-primary);
  font-weight: var(--font-medium);
}

/* Product description */
.product-description {
  margin: var(--spacing-lg) 0;
  border-top: 1px solid var(--border-light);
  padding-top: var(--spacing-md);
}

.description-content {
  position: relative;
}

.description-text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-secondary);
  max-height: 4.8em; /* Примерно 3-4 строки */
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: relative;
}

.description-text.expanded {
  max-height: none;
}

.description-text:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.2em;
  background: linear-gradient(transparent, var(--background));
  pointer-events: none;
}

.description-toggle {
  background: none;
  border: none;
  color: var(--primary-green);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  cursor: pointer;
  padding: var(--spacing-xs) 0;
  margin-top: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: color 0.2s ease;
}

.description-toggle:hover {
  color: var(--primary-green-dark);
}

.toggle-icon {
  font-size: var(--text-xs);
  transition: transform 0.3s ease;
}

.description-toggle.expanded .toggle-icon {
  transform: rotate(180deg);
}

/* Order section */
.order-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  position: sticky;
  bottom: 0;
  background: var(--background);
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--border-light);
  z-index: 10;
  margin-bottom: 4rem;
}


.price-display span {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--primary-green);
}
#diameterValue{
  margin-left: 10px;
}

/* Ornament Order Modal Styles */
.ornament-order-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease-out;
}

.ornament-order-modal.closing {
  animation: fadeOut 0.2s ease-in;
}

.ornament-order-modal.closing .modal-content {
  animation: slideDown 0.2s ease-in;
  transform: scale(1);
}

.ornament-order-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.ornament-order-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.ornament-order-modal .modal-content {
  position: relative;
  background: var(--background);
  border-radius: var(--radius-2xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(41, 163, 102, 0.15), 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease-out;
  border: 1px solid rgba(41, 163, 102, 0.1);
  border-radius: 20px;
  transform-origin: center center;
  transform: scale(1);
}

.ornament-order-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--background-light);
  border: 2px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  z-index: 1;
  font-size: var(--text-lg);
}

.ornament-order-modal .modal-close:hover {
  background: var(--primary-green);
  color: var(--text-white);
  border-color: var(--primary-green);
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 12px var(--shadow);
}

.ornament-modal-body {
  padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-xl);
}

.ornament-modal-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.ornament-modal-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  font-family: var(--font-heading);
}

.ornament-modal-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.5;
}

.ornament-order-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.ornament-form-group {
  position: relative;
}

.ornament-form-group label {
  display: block;
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  font-size: var(--text-sm);
  font-family: var(--font-primary);
}

.ornament-form-group input[type="text"],
.ornament-form-group input[type="tel"] {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  transition: all var(--transition-normal);
  background: var(--background);
  color: var(--text-primary);
  box-sizing: border-box;
}

.ornament-form-group input[type="text"]:focus,
.ornament-form-group input[type="tel"]:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--background);
  box-shadow: 0 0 0 3px rgba(41, 163, 102, 0.1);
  transform: translateY(-1px);
}

.ornament-form-group input[type="text"]::placeholder,
.ornament-form-group input[type="tel"]::placeholder {
  color: var(--text-light);
}

.ornament-checkbox-group {
  margin-top: var(--spacing-md);
}

.ornament-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: var(--text-sm);
  line-height: 1.5;
  gap: var(--spacing-md);
  font-family: var(--font-primary);
  min-height: 28px;
}

.ornament-checkbox-label input[type="checkbox"] {
  display: none;
}

.ornament-checkmark {
  width: 24px !important;
  height: 24px !important;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  position: relative;
  flex-shrink: 0 !important;
  transition: all var(--transition-normal);
  background: var(--background);
  margin-top: 2px;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  box-sizing: border-box !important;
  display: block !important;
}
.checkbox-container{
  display: flex !important;
}
.ornament-checkbox-label input[type="checkbox"]:checked + .ornament-checkmark {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.ornament-checkbox-label input[type="checkbox"]:checked + .ornament-checkmark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--text-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ornament-checkbox-text {
  color: var(--text-secondary);
  flex: 1;
}

.ornament-checkbox-text .privacy-link {
  color: var(--primary-green);
  text-decoration: underline;
  transition: color var(--transition-normal);
}

.ornament-checkbox-text .privacy-link:hover {
  color: var(--primary-green-dark);
}

.ornament-form-actions {
  margin-top: var(--spacing-xl);
}

.ornament-submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px var(--shadow);
}

.ornament-submit-btn:hover {
  background: var(--gradient-contact);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-dark);
}

.ornament-submit-btn:active {
  transform: translateY(0);
}

.ornament-submit-btn:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ornament-success-message {
  text-align: center;
  padding: 40px 20px;
}

.ornament-success-message .success-icon {
  width: 80px;
  height: 80px;
  background: #29a366 ;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
  font-weight: bold;
}

.ornament-success-message h4 {
  font-size: 24px;
  color: #2c5530;
  margin-bottom: 10px;
  font-weight: 700;
}

.ornament-success-message p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.ornament-form-group.error input {
  border-color: #e74c3c;
  background: #fdf2f2;
}

.ornament-form-group.error .error-message {
  display: block;
}

/* Адаптивные стили для модального окна заказа игрушек */
@media (max-width: 768px) {
  .ornament-order-modal {
    padding: var(--spacing-md);
  }
  
  .ornament-order-modal .modal-content {
    width: 95%;
    margin: var(--spacing-lg);
    max-height: calc(100vh - 40px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
  }
  
  .ornament-modal-body {
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
  }
  
  .ornament-modal-title {
    font-size: var(--text-xl);
    line-height: 1.3;
  }
  
  .ornament-modal-subtitle {
    font-size: var(--text-sm);
    margin-top: var(--spacing-sm);
  }
  
  .ornament-order-form {
    gap: var(--spacing-md);
  }
  
  .ornament-form-group input[type="text"],
  .ornament-form-group input[type="tel"] {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--text-base);
    border-radius: var(--radius-md);
  }
  
  .ornament-submit-btn {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--text-sm);
  }
  
  .ornament-checkbox-label {
    font-size: var(--text-sm);
    gap: var(--spacing-sm);
  }
  
  .ornament-checkmark {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
  
  .ornament-checkbox-label input[type="checkbox"]:checked + .ornament-checkmark::after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }
}

@media (max-width: 480px) {
  .ornament-order-modal {
    padding: var(--spacing-sm);
  }
  
  .ornament-order-modal .modal-content {
    width: 100%;
    height: auto;
    max-height: 100vh;
    margin: 0;
    padding: var(--spacing-md);
  }
  
  .ornament-modal-body {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  }
  
  .modal-close {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  
  .ornament-modal-title {
    font-size: var(--text-lg);
    line-height: 1.2;
  }
  
  .ornament-modal-subtitle {
    font-size: var(--text-xs);
    margin-top: var(--spacing-xs);
  }
  
  .ornament-order-form {
    gap: var(--spacing-sm);
  }
  
  .ornament-form-group label {
    font-size: var(--text-xs);
    margin-bottom: var(--spacing-xs);
  }
  
  .ornament-form-group input[type="text"],
  .ornament-form-group input[type="tel"] {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
  }
  
  .ornament-checkbox-group {
    margin-top: var(--spacing-sm);
  }
  
  .ornament-checkbox-label {
    font-size: var(--text-xs);
    gap: var(--spacing-sm);
    line-height: 1.4;
  }
  
  .ornament-checkmark {
    width: 24px !important;
    height: 24px !important;
    border-width: 2px;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    display: block !important;
  }
  
  .ornament-checkbox-label input[type="checkbox"]:checked + .ornament-checkmark::after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }
  
  .ornament-submit-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
  }
  
  .ornament-form-actions {
    margin-top: var(--spacing-md);
  }
  
  .ornament-success-message {
    font-size: var(--text-sm);
    padding: var(--spacing-sm);
  }
}
/* Order button */
.order-btn {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

/* Order form container - Minimalist Design */


/* Order summary */
.order-summary {
  background: var(--background-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--primary-green);
}

.order-summary h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

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

.summary-item span:first-child {
  font-size: var(--text-base);
  color: var(--text-secondary);
  flex: 1;
}

.summary-price {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--primary-green);
}

/* Order form */
.order-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.order-form input,
.order-form textarea {
  padding: var(--spacing-md);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  background: var(--background);
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px var(--shadow-light);
}

.order-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Checkbox styles for order form */
.order-form .checkbox-group {
  margin-top: var(--spacing-md);
}

.order-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: var(--text-sm);
  line-height: 1.5;
  gap: var(--spacing-md);
  font-family: var(--font-primary);
  min-height: 28px;
}

.order-form .checkbox-label input[type="checkbox"] {
  display: none;
}

.order-form .checkmark {
  width: 24px !important;
  height: 24px !important;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  position: relative;
  flex-shrink: 0 !important;
  transition: all var(--transition-normal);
  background: var(--background);
  margin-top: 2px;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  box-sizing: border-box !important;
  display: block !important;
}

.order-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.order-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--text-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.order-form .checkbox-text {
  color: var(--text-secondary);
  flex: 1;
}

.order-form .checkbox-text .privacy-link {
  color: var(--primary-green);
  text-decoration: underline;
  transition: color var(--transition-normal);
}

.order-form .checkbox-text .privacy-link:hover {
  color: var(--primary-green-dark);
}

/* Error styles for order form */
.order-form .form-group.error input {
  border-color: var(--error-color);
}

.order-form .error-message {
  color: var(--error-color);
  font-size: var(--text-xs);
  margin-top: var(--spacing-xs);
  display: none;
}

.order-form .form-group.error .error-message {
  display: block;
}

/* Form actions */
.form-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.btn-secondary {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--background-light);
  color: var(--text-secondary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--border-light);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-primary {
  flex: 2;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

/* Success message */
/* Mobile responsiveness */
@media (max-width: 768px) {
  .product-modal .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .product-modal .modal-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .modal-image-section {
    padding: var(--spacing-lg);
    min-height: 250px;
  }

  .modal-product-image {
    max-width: 280px;
  }

  .modal-info-section {
    padding: var(--spacing-lg);
  }

  .modal-product-title {
    font-size: var(--text-2xl);
  }

  .height-options {
    justify-content: center;
  }

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

  .back-btn,
  .submit-btn {
    flex: none;
  }

  .modal-price .price-value {
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  .product-modal .modal-content {
    width: 98%;
    margin: var(--spacing-sm);
  }

  .modal-image-section,
  .modal-info-section {
    padding: var(--spacing-md);
  }

  .modal-product-title {
    font-size: var(--text-xl);
  }

  .height-option {
    min-width: 50px;
    padding: var(--spacing-xs) var(--spacing-sm);
  }
}

/* ===== ORNAMENTS CATALOG SECTION ===== */
.ornaments-catalog-section {
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}

.catalog-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.catalog-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.catalog-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.catalog-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

.ornament-card {
  background: var(--background);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(41, 163, 102, 0.08);
  border: 1px solid rgba(41, 163, 102, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ornament-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(41, 163, 102, 0.02) 0%, rgba(59, 199, 122, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

.ornament-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(41, 163, 102, 0.15);
  border-color: rgba(41, 163, 102, 0.2);
}

.ornament-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}

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

.ornament-card:hover .ornament-image img {
  transform: scale(1.05);
}

.ornament-info {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ornament-name {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
}

.ornament-order-btn {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.ornament-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: var(--transition-normal);
}

.ornament-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(41, 163, 102, 0.3);
}

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

.ornament-order-btn:active {
  transform: translateY(0);
}

/* Responsive styles for ornaments catalog */
@media (max-width: 768px) {

  
  .ornaments-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
  }
  
  .catalog-title {
    font-size: var(--text-2xl);
  }
  
  .catalog-subtitle {
    font-size: var(--text-base);
  }
  
  .ornament-image {
    height: 200px;
  }
  
  .ornament-info {
    padding: var(--spacing-lg);
  }
  
  .ornament-name {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .ornaments-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .catalog-title {
    font-size: var(--text-xl);
  }
  
  .catalog-subtitle {
    font-size: var(--text-sm);
  }
  
  .ornament-image {
    height: 180px;
  }
  
  .ornament-info {
    padding: var(--spacing-md);
  }
  
  .ornament-name {
    font-size: var(--text-base);
  }
  
  .ornament-order-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
  }
}