* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: 'SF Pro Text', 'SF Pro Display', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif; 
  background: #fff; 
  color: #1a1a1a; 
  overflow-x: hidden; 
  font-weight: 400; 
  font-size: 16px; 
  letter-spacing: 0.005em; 
}
.container { max-width: 1370px; margin: 0 auto; padding: 0 24px; }

/* Анимации */
.fade-in, .fade-in-up { opacity: 0; }
.fade-in.is-visible { animation: fadeIn 1.5s ease-in-out forwards; }
.fade-in-up.is-visible { animation: fadeInUp 0.6s ease-out forwards; }
@keyframes fadeIn { 
  from { opacity: 0; transform: translateY(24px); } 
  to { opacity: 1; transform: translateY(0); } 
}
@keyframes fadeInUp { 
  from { opacity: 0; transform: translateY(20px); } 
  to { opacity: 1; transform: translateY(0); } 
}
.fade-in-delay-1.is-visible { animation-delay: 0.2s; }
.fade-in-delay-2.is-visible { animation-delay: 0.4s; }
.fade-in-delay-3.is-visible { animation-delay: 0.6s; }

/* Типографика */
h1, h2, h3, h4 { 
  font-family: 'SF Pro Display', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif; 
  font-weight: 500; 
  letter-spacing: 0.01em; 
}
h1 { font-size: 48px; line-height: 1.1; margin-bottom: 16px; }
h2 { font-size: 36px; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 24px; line-height: 1.2; margin-bottom: 16px; }
h4 { font-size: 20px; line-height: 1.25; margin-bottom: 16px; }
p { font-size: 16px; line-height: 1.5; color: #374151; }

/* Навигация */
nav {
  position: fixed; top: 0; width: 100%; background: #fff; z-index: 1000; padding: 16px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 32px; transition: transform 0.3s ease-in-out; }
.logo-img:hover { transform: scale(1.03); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: #1a1a1a; text-decoration: none; font-size: 16px; font-weight: 400; 
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out; position: relative;
}
.nav-links a:hover, .nav-links a.active, .nav-links a:focus {
  color: #f4b6c2; transform: scale(1.03); outline: 2px solid #f4b6c2; outline-offset: 2px;
}
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: #f4b6c2;
}
.nav-mobile-toggle { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-mobile-toggle svg { width: 24px; height: 24px; transition: filter 0.3s ease-in-out; }
.nav-mobile-toggle:hover svg, .nav-mobile-toggle:focus svg { filter: brightness(1.2); }
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(10px); z-index: 1001;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-direction: column; justify-content: center; align-items: center; gap: 16px;
}
.nav-mobile.active { transform: translateX(0); }
.nav-mobile a {
  color: #fff; text-decoration: none; font-size: 20px; font-weight: 400; padding: 16px 32px;
  border-radius: 12px; width: 80%; max-width: 400px; text-align: center;
  background: rgba(255, 255, 255, 0.1); transition: background 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, outline 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); position: relative; overflow: hidden;
}
.nav-mobile a:hover, .nav-mobile a:focus {
  background: #f4b6c2; transform: scale(1.03); box-shadow: 0 4px 12px rgba(244, 182, 194, 0.3); outline: 2px solid #fff; outline-offset: 2px;
}
.nav-mobile a::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.3), transparent 70%);
  transition: left 0.5s ease-in-out;
}
.nav-mobile a:hover::before, .nav-mobile a:focus::before { left: 100%; }
.nav-mobile-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: #fff; font-size: 24px; cursor: pointer; transition: color 0.3s ease-in-out;
}
.nav-mobile-close:hover, .nav-mobile-close:focus { color: #f4b6c2; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-mobile { display: flex; }
  .nav-mobile a { font-size: 18px; }
}
@media (max-width: 480px) {
  .nav-mobile a { font-size: 16px; padding: 12px 24px; }
}

/* Слайдер */
.slider {
  width: 1370px; height: 471px; position: relative; overflow: hidden; margin: 80px auto 0; padding-top: 80px;
}
.slider img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;
  opacity: 0; transition: opacity 0.8s ease-in-out;
}
.slider img.active { opacity: 1; }
.parallax {
  background-attachment: fixed; background-position: center; background-size: cover;
  transform: translateY(0); transition: transform 0.1s linear;
}
@media (max-width: 1370px) {
  .slider { width: 100%; height: auto; aspect-ratio: 1370 / 471; }
  .slider img { width: 100%; height: 100%; }
}
@media (max-width: 768px) {
  .slider { margin: 64px auto 0; padding-top: 64px; }
}

/* Попап для изображений */
.popup {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1002;
  justify-content: center; align-items: center;
}
.popup.active { display: flex; }
.popup img {
  width: 83.33%; max-width: 1142px; height: auto; max-height: calc(100vh * 5/6);
  object-fit: contain; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.popup-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  cursor: pointer; font-size: 24px; color: #1a1a1a; transition: color 0.3s ease-in-out;
}
.popup-close:hover, .popup-close:focus { color: #f4b6c2; outline: 2px solid #f4b6c2; outline-offset: 2px; }
@media (max-width: 768px) {
  .popup img { width: 90%; }
}

/* Герой-секция */
.hero {
  background: linear-gradient(180deg, #fafafa 0%, rgba(244, 182, 194, 0.1) 100%);
  padding: 80px 0 64px; text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 48px; }
.hero p { font-size: 20px; margin-bottom: 32px; }
.button-cta {
  display: inline-block; background: #f4b6c2; color: white;
  padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 500; text-decoration: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, outline 0.3s ease-in-out; position: relative; overflow: hidden;
}
.button-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.3), transparent 70%);
  transition: left 0.5s ease-in-out;
}
.button-cta:hover::before, .button-cta:focus::before { left: 100%; }
.button-cta:hover, .button-cta:focus {
  transform: scale(1.03); box-shadow: 0 4px 12px rgba(244, 182, 194, 0.3); outline: 2px solid #fff; outline-offset: 2px;
}
@media (max-width: 768px) {
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .button-cta { padding: 12px 24px; font-size: 14px; }
}

/* Почему заказывать нужно у нас */
.why-us {
  padding: 80px 0; background: #fff; text-align: center;
}
.why-us-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; margin-top: 48px;
}
.why-us-card {
  background: linear-gradient(180deg, #fff, #f9fafb); border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.why-us-card:hover {
  transform: translateY(-8px); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.why-us-card h3 { font-size: 24px; }
.why-us-card p { font-size: 16px; }
@media (max-width: 768px) {
  .why-us { padding: 64px 0; }
  .why-us h2 { font-size: 28px; }
  .why-us p { font-size: 14px; }
  .why-us-card { padding: 16px; }
  .why-us-card h3 { font-size: 20px; }
  .why-us-card p { font-size: 14px; }
}

/* 4 шага для заказа */
.order-steps {
  padding: 80px 0; background: #fafafa; text-align: center;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; margin-top: 48px;
}
.step-card {
  background: linear-gradient(180deg, #fff, #f9fafb); border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; position: relative;
}
.step-card:hover {
  transform: translateY(-8px); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.step-card .step-number {
  display: inline-block; width: 40px; height: 40px; line-height: 40px; background: #f4b6c2;
  color: #fff; border-radius: 50%; font-size: 20px; font-weight: 500; margin-bottom: 16px;
}
.step-card h3 { font-size: 24px; }
.step-card p { font-size: 16px; }
@media (max-width: 768px) {
  .order-steps { padding: 64px 0; }
  .order-steps h2 { font-size: 28px; }
  .order-steps p { font-size: 14px; }
  .step-card { padding: 16px; }
  .step-card h3 { font-size: 20px; }
  .step-card p { font-size: 14px; }
}

/* Продукты */
.products { background: #fafafa; padding: 80px 0; }
.products h2 { font-size: 36px; text-align: center; }
.products p { font-size: 16px; text-align: center; margin-bottom: 48px; }
.products h3 { font-size: 24px; color: #f4b6c2; margin: 32px 0 24px; }
.products h3 + h3 { border-top: 1px solid #e5e7eb; padding-top: 32px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.product-card {
  background: linear-gradient(180deg, #fff, #f9fafb); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 320px; object-fit: cover; }
.product-card-content { padding: 24px; }
.product-card h4 { font-size: 20px; }
.product-card p { font-size: 16px; margin-bottom: 16px; }
.product-details { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.price-tag { background: white; border: 2px solid #f4b6c2; color: #f4b6c2; padding: 8px 16px; border-radius: 12px; font-weight: 500; animation: fadeInUp 0.6s ease-out; }
.product-meta { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; }
.product-meta svg { width: 16px; height: 16px; fill: #f4b6c2; }
@media (max-width: 768px) {
  .products { padding: 64px 0; }
  .products h2 { font-size: 28px; }
  .products p { font-size: 14px; }
  .products h3 { font-size: 20px; }
  .product-card img { height: 240px; }
  .product-card-content { padding: 16px; }
  .product-card h4 { font-size: 18px; }
  .product-card p { font-size: 14px; }
}

/* Отзывы */
.reviews { padding: 80px 0; background: white; }
.reviews h2 { font-size: 36px; text-align: center; }
.reviews p { font-size: 16px; }
.review-slider { position: relative; overflow: hidden; max-width: 600px; margin: 0 auto; }
.review-card {
  background: white; padding: 24px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center; opacity: 0; position: absolute; width: 100%; transition: opacity 0.8s ease-in-out;
}
.review-card.active { opacity: 1; position: relative; }
.review-card p { font-size: 16px; margin-bottom: 16px; }
.review-card span { font-size: 16px; font-weight: 500; color: #1a1a1a; }
@media (max-width: 768px) {
  .reviews { padding: 64px 0; }
  .reviews h2 { font-size: 28px; }
  .review-card { padding: 16px; }
  .review-card p { font-size: 14px; }
  .review-card span { font-size: 14px; }
}

/* Каталоги */
.catalogs { padding: 80px 0; background: #fafafa; text-align: center; }
.catalogs h2 { font-size: 36px; }
.catalogs .button-cta { margin: 0 16px; }
@media (max-width: 768px) {
  .catalogs { padding: 64px 0; }
  .catalogs h2 { font-size: 28px; }
  .catalogs .button-cta { margin: 8px 0; display: inline-block; }
}

/* CTA */
.cta { padding: 80px 0; background: #fafafa; text-align: center; }
.cta h2 { font-size: 36px; }
@media (max-width: 768px) {
  .cta { padding: 64px 0; }
  .cta h2 { font-size: 28px; }
}

/* Футер */
footer { background: #1a1a1a; color: #fff; padding: 48px 0; text-align: center; }
footer .logo-img { height: 32px; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; }
.footer-links a { transition: transform 0.3s ease-in-out; }
.footer-links img { width: 24px; height: 24px; }
.footer-links a:hover, .footer-links a:focus { transform: scale(1.1); outline: 2px solid #f4b6c2; outline-offset: 2px; }
.footer-info { font-size: 14px; margin-bottom: 16px; color: #d1d5db; }
.footer-site a { color: #f4b6c2; text-decoration: none; font-size: 14px; }
.footer-site a:hover, .footer-site a:focus { text-decoration: underline; outline: 2px solid #f4b6c2; outline-offset: 2px; }
footer p { font-size: 14px; color: #d1d5db; }
@media (max-width: 768px) {
  .footer-links { gap: 12px; }
}