:root {
  --main-bg: #ffffff;
  --text: #1a1a1a;
  --gold: #af9463;
  --grey: #f2f2f2;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--main-bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding-bottom: 110px;
  position: relative;
}

/* --- Header --- */
header {
  padding: 30px 20px;
  text-align: center;
  letter-spacing: 5px;
  border-bottom: 1px solid #f0f0f0;
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- Hero --- */
.hero {
  text-align: center;
  padding: 20px;
}

.hero-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.1;
}

.hero img {
  width: 100%;
  border-radius: 2px;
}

/* --- Price Section --- */
.price-section {
  padding: 40px 20px;
  text-align: center;
  background: #fafafa;
  margin: 20px 0;
}

.old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: #999;
  display: block;
  letter-spacing: 1px;
}

.new-price {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--text);
  display: block;
  margin-top: -5px;
}

.price-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
}

/* --- Lifestyle Section --- */
.lifestyle {
  padding: 0;
}

.lifestyle-img {
  width: 100%;
  display: block;
}

.lifestyle-text {
  padding: 40px 30px;
  text-align: left;
}

.lifestyle-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}

.lifestyle-text p {
  font-size: 14px;
  color: #666;
  font-weight: 300;
}

/* --- Dual Strap Feature --- */
.straps {
  background: var(--text);
  color: #fff;
  padding: 50px 30px;
  text-align: center;
}

.straps h2 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 25px;
}

.straps img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
  filter: grayscale(0.2);
}

.straps-desc {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* --- Technical Details --- */
.details {
  padding: 50px 30px;
}

.details h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-row span:last-child {
  font-weight: 600;
  color: #000;
}

/* --- REVIEWS SLIDER (PREMIUM) --- */
.reviews-wrap {
  padding: 60px 0;
  background: #fdfbf7;
}

.reviews-wrap h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 40px;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 30px 30px 30px;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
}

.slider::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 85%;
  background: #fff;
  padding: 35px;
  scroll-snap-align: center;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.rev-user {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rev-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  grayscale: 0.5;
  border: 1px solid #eee;
}

.rev-name {
  font-size: 14px;
  font-weight: 600;
  display: block;
  letter-spacing: 1px;
}

.rev-city {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
}

.stars {
  color: var(--gold);
  font-size: 9px;
  margin-top: 5px;
  letter-spacing: 2px;
}

.rev-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* --- Sticky Footer --- */
.footer-action {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-top: 1px solid #f5f5f5;
  max-width: 500px;
  margin: auto;
}

.btn {
  background: var(--text);
  color: white;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 22px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  width: 100%;
  transition: 0.4s;
}

.btn:active {
  background: var(--gold);
  transform: scale(0.98);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-inner {
  background: #fff;
  padding: 40px;
  width: 85%;
  border-radius: 0;
  text-align: center;
  max-width: 500px;
}

input {
  width: 100%;
  padding: 18px;
  margin: 12px 0;
  border: 1px solid #eee;
  background: #fafafa;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

footer {
  padding: 40px 20px;
  text-align: center;
  font-size: 10px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 1px solid #f9f9f9;
}

/* --- ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ BAGUETTE NOIR --- */

/* Стили для слайдера */
.slider {
  cursor: grab;
  scroll-behavior: smooth;
}

.slider.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* Премиальные точки пагинации */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.dot.active {
  background-color: var(--gold, #af9463);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(175, 148, 99, 0.3);
}

/* Премиальный футер */
.premium-footer {
  padding: 50px 30px;
  background: #fcfcfc;
  border-top: 1px solid #f0f0f0;
  font-size: 11px;
  color: #666;
  text-transform: none;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.premium-footer .footer-brand {
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: var(--gold, #af9463);
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.premium-footer .footer-company {
  font-weight: 600;
  color: #333;
  font-size: 12px;
  margin-bottom: 5px;
}

.premium-footer .footer-details {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.premium-footer .footer-contact {
  margin: 15px 0;
}

.premium-footer a {
  color: var(--gold, #af9463);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.premium-footer a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.premium-footer .footer-links {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.premium-footer .footer-link {
  color: #999;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.premium-footer .footer-link:hover {
  color: var(--gold, #af9463);
}

/* Стили для ошибки валидации */
.field-error {
  max-width: 400px;
  color: #b03a2e;
  margin: 10px 0;
  font-size: 11px;
  line-height: 1.4;
  text-align: left;
  background: #fff5f5;
  padding: 10px 15px;
  border-left: 3px solid #b03a2e;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

/* Дополнительные премиальные штрихи */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

/* --- БЛОК КОМПЛЕКТАЦИИ (в стиле технических данных) --- */
.complectation {
  padding: 20px 30px;
  background: #fcfcfc;
  margin: 20px 0;
}

.complectation h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text);
}

.complectation-img {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.complectation-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.complectation-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.complectation-item:last-child {
  border-bottom: none;
}

.complectation-icon {
  font-size: 24px;
  min-width: 40px;
  text-align: center;
  color: var(--gold);
}

.complectation-text {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* --- КАРУСЕЛЬ ДЛЯ ТРАНСФОРМАЦИИ СТИЛЯ --- */
.straps-carousel {
  background: var(--text);
  color: #fff;
  padding: 50px 30px;
  text-align: center;
}

.straps-carousel h2 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 25px;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
}

.carousel-track.active {
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
}

.carousel-slide img {
  width: 100%;
  border-radius: 5px;
  filter: grayscale(0.2);
  display: block;
  pointer-events: none; /* Чтобы не мешало свайпу */
}

/* Точки навигации */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--gold);
  transform: scale(1.2);
}

.straps-desc {
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 20px;
}

/* Кнопка после отзывов (не фиксированная) */
.reviews-action {
    padding: 25px;
    background: #ffffff;
    max-width: 500px;
    margin: 0 auto 20px auto;
}

.reviews-action .btn {
    background: var(--text);
    color: white;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 22px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    width: 100%;
    transition: 0.4s;
}

.reviews-action .btn:active {
    background: var(--gold);
    transform: scale(0.98);
}