
     * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
	
  header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;

  position: relative; /* обязательно! */
  z-index: 10;    /* поднимает меню над слайдером */
}

.header-container {
 display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
     height: 50px;
	 
}


   body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

	.logo,
	h1, h2, h3 {
	font-family: 'Montserrat', sans-serif;

	}

    .top-bar {
      background-color: #616161;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
	  
    }

    .top-bar a {
      color: white;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;

    }
.logo {
  flex-shrink: 0;
    position: absolute;
    left: 20px;
    top: 58%;
    transform: translateY(-50%);
    z-index: 9999;
}
.logo img {
  height: 47px;
  object-fit: contain;
}
.main-menu {
  margin: 0 auto; /* центрирует flex-элемент */
  display: flex;
  gap: 30px; /* отступы между пунктами меню */
  justify-content: center;
}

    .menu-item {
      position: relative;
    }

    .menu-link {
    cursor: pointer;
    padding: 10px;
    display: inline-block;
    letter-spacing: 2px;
    font-size: small;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
	}

    .menu-link::after {
      content: '\25BC';
      font-size: 12px;
      color: #333;
    }

    .submenu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) scaleY(0);
      transform-origin: top center;
      display: flex;
      justify-content: center;
      gap: 20px;
      background: white;
      padding: 20px;
      border-radius: 10px;
      opacity: 0;
      visibility: hidden;
      transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 1000;
    }
	.submenu-card {
  width: 235px;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.submenu-card:hover {
  transform: scale(1.05);
}

.submenu-title {
  width: 100%;
    text-align: center;
    padding: 5px 0px;
    background-color: rgb(0 0 0 / 12%);
    color: #706767;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}


    .menu-item.active .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) scaleY(1);
	  width: 1973px;
    }

    .submenu img {
      width: 235px;
      height: 360px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
	 .cart {
      flex: 1 1 100px;
      text-align: right;
    }

  .prod_cen{
	      text-align: center;
  }
.product-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid #fff;
  z-index: 999;
  padding: 14px;
  position: relative;
  text-align: center;
  font-size: 12px;
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform, opacity;
}

.product-icons.sticky-visible {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  opacity: 1;
  display: flex !important;
}

.product-icons.sticky-hidden {
  transform: translateY(-100%);
  opacity: 0;
}


    
    .product-icon:hover {
      transform: scale(1.1);
    }

    .product-icon img {
    height: 30px;
    }
	.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: -75px;
    z-index: 1; /* ← подняли выше */
}


.slide {
  width: 100%;
  height: 100%; /* растягивается по .hero-slider */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}


.slide-content {
    position: absolute;
    bottom: 160px;
    left: 30px;
    color: white;
    max-width: 300px;
    z-index: 2;
}
.slide-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.slide-button {
  background: white;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index:999;
  opacity: 0.8;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}

.product-card {
  flex: 1 1 calc(33.333% - 30px);
  background-color: #f8f6f2;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}


.product-card img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.product-info {
  font-family: sans-serif;
}
.product-name {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}

.product-category {
  font-size: 14px;
  color: #888;
}
.cms{
	width: 100%;
    margin: 100px 0;
}
.h4z {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 60px;
	font-size: 24px;
}
.image-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 80px auto;
  max-width: 1920px;
  padding: 0 20px;
}

.image-card {
  width: 905px;
  height: 735px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  transition: border-radius 0.6s ease;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, border-radius 0.6s ease;
  border-radius: 30px;
}

.image-card:hover img {
  transform: scale(1.1);
  border-radius: 60px;
}

.image-card:hover {
  border-radius: 60px;
}
.image-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2f2f2;
  color: #333;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 20px;
  transition: background 0.3s ease;
  z-index: 2;
}
.image-link:hover {
  background-color: #ddd;
}
.collection-link-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.collection-link {
  color: #000;
  background-color: transparent;
  padding: 12px 30px;
  font-size: 16px;

  text-decoration: none;
  transition: all 0.3s ease;
}

.collection-link:hover {
  color: #c9a24b;

}
.site-footer {
  background-color: #f5f2ed;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  gap: 40px;
}

.newsletter-form {
  flex: 1;
  max-width: 300px;
}

.newsletter-form h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.newsletter-form p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
}

.newsletter-form input {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  background-color: #eae6df;
  margin-bottom: 10px;
}

.newsletter-form button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background-color: #000;
}

.footer-logo img {
  width: 120px;
}

.footer-right {
  flex: 1;
  max-width: 300px;
  text-align: right;
}

.footer-right h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-right p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
}

.discover-btn {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.discover-btn:hover {
  background-color: #000;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: #777;
}

.footer-links a {
  margin-right: 20px;
  color: #777;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-socials a img {
  width: 20px;
  margin-left: 10px;
}
/* Общие стили для формы подписки */
:root {
  --primary-color: #007BFF; /* Основной цвет (синий) */
  --secondary-color: #6C757D; /* Вторичный цвет (серый) */
  --background-color: #F8F9FA; /* Фон страницы */
  --well-background: #FFFFFF; /* Фон блока .well */
  --text-color: #333333; /* Цвет текста */
  --error-color: #DC3545; /* Цвет ошибок */
  --success-color: #28A745; /* Цвет успеха */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 0.375rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Стили для блока .well */
.well {

  padding: 2rem;
  margin-bottom: 2rem;
}

/* Стили для формы */
.form-horizontal {
  max-width: 600px;
  margin: 0 auto;
}

/* Стили для группы формы */
.form-group {
  margin-bottom: 1.5rem;
}

/* Метка */
.control-label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
  padding-top: 0.5rem;
}

/* Поле ввода */
.form-control {
  border: 1px solid #CED4DA;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

/* Плейсхолдер */
.form-control::placeholder {
  color: #6C757D;
  opacity: 0.7;
}

/* Ошибки валидации */
.form-group.has-error .form-control {
  border-color: var(--error-color);
}

.form-group.has-error .control-label {
  color: var(--error-color);
}

.form-group.has-error .help-block {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Обязательное поле */
.form-group.required .control-label:after {
  content: '*';
  color: var(--error-color);
  margin-left: 0.25rem;
}

/* Кнопка */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-1px);
}

.btn-primary .glyphicon {
  margin-right: 0.5rem;
}

/* Сообщения формы */
.form-messages {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.form-messages .error {
  color: var(--error-color);
}

.form-messages .success {
  color: var(--success-color);
}
/* === Секция с коллекциями === */
.image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}
/* === Уникальная секция: коллекции === */
.collections-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}

/* === Карточка коллекции === */
.collection-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* === Обёртка изображения === */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* === Оверлей: весь контент поверх изображения === */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 20px 80px;
  box-sizing: border-box;
  color: #fff;
  z-index: 2;
}

/* === Текст и кнопка === */
.card-content {
  text-align: center;
  width: 100%;
  max-width: 90%;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.card-text {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Кнопка внизу, но в потоке (не поверх текста) === */
.btn-bottom {
  display: inline-block;
  padding: 12px 30px;
  background-color: #f2f2f2;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.btn-bottom:hover {
  background-color: #ddd;
  transform: scale(1.05);
}
 .seria-item {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  .seria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .seria-item .absolute {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seria-item h2 {
    font-size: 4rem; /* 64px */
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .seria-item p {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    max-width: 800px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  }


	@media screen and (max-width: 1024px) {
  .product-card {
    flex: 1 1 48%;
  }
}
@media (max-width: 768px) {
.card-overlay {
    padding: 30px 15px 70px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .btn-bottom {
    font-size: 15px;
    padding: 10px 24px;
  }.collections-showcase {
    padding: 30px 15px;
    gap: 16px;
  }

  .collection-card {
    max-width: 100%;
  }

  .card-img-wrapper {
    height: 260px;
  }

 

  .image-link {
    font-size: 15px;
    padding: 10px 24px;
  }
 
	.control-label {
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .col-sm-offset-2 {
    margin-left: 0;
  }
.header-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 10px 15px;
	background:#fff;
  }
   .logo {
    position: static; /* отключаем absolute */
    transform: none;
    margin-bottom: 10px; /* отступ от меню */
    align-self: center;
  }
      header {
        flex-direction: column;
        align-items: stretch;
      }
.main-menu {
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    z-index: 1;
  }

  .menu-item {
    flex: 0 1 auto;
    text-align: center;
  }
.product-icons{
margin-top: 0px;
    padding: 2px;
	gap: 50px;
}


  .submenu {
    position: static;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease, opacity 0.3s ease, height 0.3s ease;
  }

  .menu-item.active .submenu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 15px 10px;
  }

  .submenu img {
    width: 90%;
    height: auto;
    max-width: 300px;
	}
	.hero-slider {
    height: 70vh; /* например, 70% высоты на мобилке */
  }
  .hero-slider::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* например, 16:9 пропорция, можно подогнать */
  }
  .slide-bg{
      top: 35px;
  }
  .slide-content{

   bottom: 44px;
        text-align: center;
  }

/* Адаптивность */

 @media (max-width: 640px) {
    .seria-item h2 {
      font-size: 2.5rem;
      padding: 0 1rem;
    }
    
    .seria-item p {
      font-size: 1rem;
      padding: 0 1rem;
    }
  }
@media (max-width: 600px) {

  .h4z {
    font-size: 20px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

.product-grid {
    flex-direction: column;
    padding: 0 15px;
  }


  .product-card {
    flex: 1 1 100%;
  }
  .image-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
  }

  .image-card {
    width: 100%;
    max-width: 90vw;
    height: auto;
    border-radius: 20px;
  }

  .image-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .image-card:hover img {
    border-radius: 40px;
  }

  .image-link {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 15px;
  }
   .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right,
  .newsletter-form {
    max-width: 100%;
  }

  .footer-right {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-links a {
    display: block;
    margin: 5px 0;
  }

}

@media screen and (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
.product_viewer {
    height: 320px;
  }

  .titleSlide {
    font-size: 18px;
  }

  .pM {
    font-size: 12px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
   .card-overlay {
    padding: 25px 12px 60px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-text {
    font-size: 0.85rem;
  }

  .btn-bottom {
    font-size: 14px;
    padding: 9px 20px;
  }

  .image-link {
    font-size: 14px;
    padding: 9px 20px;
  }
 
 
}
