* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* РОЛЛЕР (бегущая строка) */
.top-roller {
  background: #cabf21;
  color: white;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid #ff8a7a;
}

.roller-content {
  display: flex;
  animation: scrollText 30s linear infinite;
  white-space: nowrap;
}

.roller-item {
  display: inline-block;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.roller-item span {
  margin-right: 10px;
  font-size: 20px;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-roller:hover .roller-content {
  animation-play-state: paused;
}

/* Шапка */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #cabf21;
  letter-spacing: 1px;
}

nav a {
  text-decoration: none;
  color: #333;
  margin-left: 30px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #cabf21;
}

/* Герой секция */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 40px;
  margin: 20px auto 0;
  max-width: 1200px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  width: 100%;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-content button {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  background: #cabf21;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255,111,97,0.3);
}

.hero-content button:hover {
  background: #ff8a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,111,97,0.4);
}

/* Градиентный слайдер */
.gradient-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.gradient-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s;
}

.gradient-slide.active {
  opacity: 1;
}
.gradient-slider,
.gradient-slide {
  border-radius: 40px;
}

/* Общие стили секций */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #cabf21;
  margin: 15px auto 0;
}

/* О нас */
.about {
  text-align: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  padding: 20px 40px;
  background: #f0f0f0;
  border-radius: 50px;
  font-weight: 500;
  color: #555;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Каталог */
.catalog {
  background: #f5f5f5;
  border-radius: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 15px;
  margin-bottom: 20px;
  background: #f9f9f9;
  padding: 10px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #333;
}

.card p {
  font-size: 20px;
  font-weight: 700;
  color: #cabf21;
  margin-bottom: 20px;
}

.card button {
  padding: 14px 30px;
  background: #cabf21;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.card button:hover {
  background: #ff8a7a;
  transform: scale(1.05);
}

/* Доставка */
.delivery {
  text-align: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.delivery p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Отзывы */
.reviews {
  background: linear-gradient(135deg, #c5902c 0%, #d1ba3a 100%);
  color: white;
  border-radius: 30px;
}

.reviews h2 {
  color: white;
}

.reviews h2:after {
  background: white;
}

.review-slider {
  text-align: center;
  min-height: 100px;
  position: relative;
}

.review {
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  display: none;
  padding: 20px;
}

.review.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* НОВЫЕ БЛОКИ */
.benefits-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Блок 1: Примерка */
.fitting-block {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.fitting-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #cabf21, #ffb347, #cabf21);
}

.fitting-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.fitting-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fff0ed 0%, #ffe6e2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 10px 20px rgba(255,111,97,0.2);
}

.fitting-text {
  flex: 1;
}

.fitting-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.fitting-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.fitting-badge {
  background: #cabf21;
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(255,111,97,0.3);
}

/* Блок 2: Бренд + Накидки */
.brand-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.brand-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-card.main {
  background: linear-gradient(135deg, #cabf21 0%, #ff8a7a 50%, #ffb347 100%);
  color: white;
}

.brand-card.main h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: white;
}

.brand-card.main h2:after {
  display: none;
}

.brand-card.main p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.6;
}

.brand-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffd700;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 5px;
}

.edition-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.edition-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.edition-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.edition-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.edition-tag {
  background: linear-gradient(135deg, #cabf21, #ff8a7a);
  color: white;
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255,111,97,0.3);
}

/* Блок 3: Кнопка каталога */
.catalog-block {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #cabf21, #ff8a7a);
  color: white;
  border: none;
  border-radius: 60px;
  padding: 20px 60px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255,111,97,0.4);
  position: relative;
  overflow: hidden;
}

.catalog-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.catalog-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,111,97,0.6);
}

.catalog-button:hover::before {
  left: 100%;
}

.catalog-button span {
  font-size: 32px;
}

.catalog-description {
  margin-top: 30px;
  font-size: 18px;
  color: #666;
}

.catalog-description strong {
  color: #cabf21;
}

/* Блок 4: Оплата */
.payment-block {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.payment-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.payment-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  transition: transform 0.3s;
}

.card-icon:hover {
  transform: translateY(-5px);
}

.card-icon.visa {
  color: #1A1F71;
}

.card-icon.mastercard {
  color: #EB001B;
}

.card-icon.mir {
  color: #4CB543;
}

.payment-info {
  flex: 1;
}

.payment-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.payment-info p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.payment-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-feature {
  background: #f0f0f0;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-feature span {
  color: #cabf21;
}

/* ФОРМА ЗАКАЗА КАК НА ФОТО */
.order-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.order-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Левая колонка - форма */
.order-form {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.order-form h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #cabf21;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #555;
  font-size: 15px;
}

.form-group .note {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  margin-left: 5px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
  background: #f9f9f9;
}

.form-control:focus {
  outline: none;
  border-color: #cabf21;
  background: white;
  box-shadow: 0 0 0 3px rgba(255,111,97,0.1);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

/* Тип доставки */
.delivery-type {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.delivery-option {
  flex: 1;
  padding: 15px;
  text-align: center;
  background: #f0f0f0;
  border-radius: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.delivery-option.active {
  background: #cabf21;
  color: white;
  border-color: #ff8a7a;
}

/* Адрес */
.address-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.address-details .form-group label {
  font-size: 13px;
  margin-bottom: 5px;
}

/* Правая колонка - корзина */
.order-cart {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.order-cart h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #cabf21;
  font-weight: 600;
}

.cart-items {
  margin-bottom: 25px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: 600;
  flex: 1;
}

.item-price {
  font-weight: 600;
  color: #cabf21;
  margin: 0 15px;
}

.remove-item {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.remove-item:hover {
  color: #cabf21;
  background: #fff0ed;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 2px solid #e0e0e0;
  font-size: 18px;
  font-weight: 600;
}

.total-price {
  color: #cabf21;
  font-size: 24px;
}

.order-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #cabf21, #cabf21);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255,111,97,0.3);
  margin-top: 20px;
}

.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,111,97,0.4);
}

/* Подвал */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 50px 20px;
  border-radius: 30px 30px 0 0;
  margin-top: 40px;
}

footer h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

footer p {
  margin: 10px 0;
  font-size: 16px;
  opacity: 0.9;
}

/* Анимация появления */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 15px;
  }
  
  nav a {
    margin: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .features {
    gap: 20px;
  }
  
  .feature {
    padding: 15px 25px;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .card img {
    height: 200px;
  }
  
  .brand-block {
    grid-template-columns: 1fr;
  }
  
  .fitting-content {
    flex-direction: column;
    text-align: center;
  }
  
  .payment-content {
    flex-direction: column;
    text-align: center;
  }
  
  .catalog-button {
    padding: 15px 40px;
    font-size: 20px;
  }
  
  .catalog-button span {
    font-size: 24px;
  }
  
  .order-layout {
    grid-template-columns: 1fr;
  }
  
  .order-cart {
    position: static;
  }
  
  .delivery-type {
    flex-direction: column;
  }
  
  .address-details {
    grid-template-columns: 1fr;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo img {
  width: 90px;
  height: 90px;
}