:root {
  --primary-color: #2c5f7a;
  --primary-dark: #1e4356;
  --primary-light: #4a8fb0;
  --secondary-color: #d4af37;
  --secondary-dark: #b8961f;
  --accent-color: #e74c3c;
  --success-color: #27ae60;
  --text-dark: #1a1a1a;
  --text-medium: #4a5568;
  --text-light: #718096;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

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

.nav-menu a {
  color: var(--text-medium);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.btn-contact {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  border-bottom: none !important;
}

.btn-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-white);
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.hero {
  background: linear-gradient(135deg, rgba(44, 95, 122, 0.95), rgba(74, 143, 176, 0.95)), url('https://images.pexels.com/photos/1983037/pexels-photo-1983037.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 6rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  animation: fadeIn 1s ease;
}

.services {
  padding: 5rem 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

.service-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-medium);
}

.why-us {
  padding: 5rem 0;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-us-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.why-us-text h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.features-list {
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--text-medium);
}

.features-list svg {
  color: var(--success-color);
  flex-shrink: 0;
}

.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 5rem 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-col svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  animation: slideUp 0.5s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.btn-link:hover {
  opacity: 0.8;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.catalog {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.catalog-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.catalog-image {
  height: 250px;
  overflow: hidden;
}

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

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

.catalog-content {
  padding: 1.5rem;
}

.catalog-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.catalog-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.catalog-rating span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.catalog-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.product-detail {
  padding: 3rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.back-link:hover {
  text-decoration: underline;
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.product-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

#main-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-thumbnails img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
  border-color: var(--primary-color);
  opacity: 0.8;
}

.product-info h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--secondary-color);
}

.rating-text {
  color: var(--text-medium);
}

.product-description h2 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.product-description h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-medium);
}

.feature-list svg {
  color: var(--success-color);
  flex-shrink: 0;
  margin-top: 4px;
}

.product-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.testimonials-section {
  padding: 3rem 0;
  background: var(--bg-light);
  margin: 4rem -20px 0;
  padding: 4rem 20px;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  color: var(--text-dark);
  margin: 0;
}

.testimonial-card p {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.about-content {
  padding: 4rem 0;
}

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

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.mv-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.mv-icon {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mv-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-medium);
}

.values {
  margin-bottom: 4rem;
}

.values h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

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

.value-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

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

.value-card svg {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.team-section {
  margin-bottom: 4rem;
}

.team-section h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.team-member img {
  width: 100%;
  max-width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.team-member h4 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: var(--primary-color);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.stat-card {
  color: var(--bg-white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

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

.contact-info h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--primary-color);
}

.contact-method h4 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-method a {
  color: var(--primary-color);
  font-weight: 600;
}

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

.contact-method p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.working-hours {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
}

.working-hours h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.working-hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-medium);
}

.working-hours ul li:last-child {
  border-bottom: none;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 122, 0.1);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label span {
  color: var(--text-medium);
  font-size: 0.95rem;
  font-weight: 400;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-content {
  padding: 3rem 0;
}

.legal-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
  flex-wrap: wrap;
}

.legal-nav a {
  color: var(--text-medium);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
}

.legal-nav a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.legal-section h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section h4 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 1rem 0;
}

.legal-section ul li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.legal-section p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.success-page {
  padding: 5rem 0;
  min-height: 70vh;
}

.success-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  animation: scaleIn 0.5s ease;
}

.success-content h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-message {
  color: var(--text-medium);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

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

.info-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.info-card svg {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.success-contact {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.success-contact h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-methods-success {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 968px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    align-items: flex-start;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

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

  .hero-image {
    display: none;
  }

  .why-us-content {
    grid-template-columns: 1fr;
  }

  .product-main {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

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

  .mission-vision {
    grid-template-columns: 1fr;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

  .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .success-info {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }
}
