@charset "UTF-8";
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
:root {
  --fs-caption: 1.3rem;
  --fs-meta: 1.4rem;
  --fs-body: 1.6rem;
  --fs-lead: 1.75rem;
  --fs-emph: 2.1rem;
  --fs-h3: 2.4rem;
  --fs-h2: 3.4rem;
  --fs-h1: 4.2rem;
  --fs-display: 5.4rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 600;
  --ff-display: "Playfair Display", serif;
  --ff-ui: "Inter", system-ui, sans-serif;
  --ink: #1d1d1b;
  --ink-soft: #2a2218;
  --ink-muted: #666;
  --surface: #ffffff;
  --surface-soft: #f9f8f6;
  --surface-warm: #fdf9f0;
  --surface-linen: #ebe2cb;
  --surface-stone: #f4f3f0;
  --accent: #ece9e3;
  --accent-hover: #dedbd6;
  --rule: #e5e5e5;
  --rule-soft: rgba(0, 0, 0, 0.08);
  --gold: #B58A2E;
  --ease-premium: cubic-bezier(0.2, 1, 0.3, 1);
  --r-0: 0;
  --r-sm: 2px;
  --r-md: 4px;
  --r-pill: 999px;
  --r-round: 50%;
  --r-sheet: 10px;
  --shadow-1: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-2: 0 14px 36px rgba(0, 0, 0, 0.12);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;
}

.btn-classic {
  background-color: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-premium), border-color 0.25s var(--ease-premium);
  display: inline-block;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 200px;
}
.btn-classic:hover, .btn-classic:focus-visible {
  background-color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-premium), color 0.25s var(--ease-premium);
  display: inline-block;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 200px;
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background-color: var(--ink);
  color: #fff;
}

.section {
  margin: 130px 0px;
}
@media only screen and (max-width: 768px) {
  .section {
    margin: 70px 0px;
  }
}

.category-container {
  margin-top: -10px;
}
.category-container .col-sm-6 {
  padding: 0px;
}

.hero-section {
  margin: 0px -7.5px 30px -7.5px;
  color: #fff;
  background-color: #a9b4c7;
}
.hero-section h3 {
  margin-bottom: 20px;
}
.hero-section .hero-section-text {
  padding: 50px 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .hero-section .hero-section-image,
  .hero-section .hero-section-text {
    flex: 1;
  }
}

.hero-container {
  display: flex;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
@media only screen and (min-width: 768px) {
  .hero-container {
    min-height: 600px;
  }
}
.hero-container .hero-text {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.hero-container form input {
  border: 0px;
  min-width: 250px;
  background-color: rgba(249, 249, 249, 0.6823529412) !important;
}
.hero-container form button {
  border: 0px;
  margin-left: 10px;
}
.hero-container form input[type=text] {
  color: black;
}

.hero-image {
  z-index: -1;
  position: absolute;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .hero-image {
    width: 100% !important;
    height: auto;
  }
}

.last {
  margin-bottom: 0px;
  background: #ece9e3;
}
.last .hero-section-text {
  color: #333;
}

@media only screen and (min-width: 768px) {
  .faq-header-wrapper {
    display: none;
  }
}

.custom-card-title {
  font-weight: bold;
}

.card-product-price {
  display: flex;
}

.reviews-average-rating {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    aspect-ratio: 1/1;
  }
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 0 1rem;
  width: 100%;
}
.hero .hero-text .line1 {
  font-size: 2.4rem;
  font-weight: 300;
  max-width: 90vw;
  margin: 0 auto;
}
.hero .hero-text .line2 {
  font-size: 5rem;
  font-weight: bold;
  margin-top: 0.2em;
  max-width: 90vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero .hero-text .line1 {
    font-size: 3.4rem;
  }
  .hero .hero-text .line2 {
    font-size: 7rem;
  }
}

.hero-adria {
  --bg-image: url("/static/graphics/home/new-collection.webp");
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  color: #ffffff;
  background: center/cover no-repeat var(--bg-image);
}
.hero-adria::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.25) 0%, rgba(10, 12, 14, 0.35) 40%, rgba(10, 12, 14, 0.45) 100%);
  z-index: -1;
}

.hero-adria__inner {
  width: min(100% - 2 * clamp(16px, 3vw, 48px), 1280px);
  margin-inline: auto;
  padding: clamp(16px, 3vw, 48px);
  text-align: center;
}

.hero-adria__eyebrow {
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: clamp(8px, 1.2vw, 12px);
}

.hero-adria__title {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
  font-size: clamp(40px, 6vw, 80px);
  margin: 0 0 clamp(20px, 2vw, 28px) 0;
}

.hero-adria__cta {
  display: inline-block;
  background-color: black;
  color: white;
  font-family: "Playfair Display", serif;
  border-radius: var(--r-sm);
  padding: clamp(10px, 1.5vw, 14px) clamp(18px, 2.1vw, 24px);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1;
  /* transition: transform .18s ease, background .18s ease; */
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.hero-adria__cta:hover {
  /*
  background: $btn-bg-hover; 
  transform: translateY(-1px);
  */
  background-color: black;
  color: white;
  transform: scale(1.05);
}
.hero-adria__cta:active {
  transform: translateY(0);
}
.hero-adria__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.categories {
  padding: 80px 0;
  background: #f8f8f8;
}
.categories__header {
  text-align: center;
  margin-bottom: 50px;
}
.categories__title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px;
}
.categories__subtitle {
  font-size: 18px;
  color: #000000;
  opacity: 0.75;
  margin: 0;
}
.categories__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.categories__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #000000;
  background: #ddd;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.categories__card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}
.categories__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.82);
  transition: filter 0.35s ease;
}
.categories__card:hover .categories__card-bg {
  filter: brightness(0.95);
}
.categories__content {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}
.categories__name {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: #000000;
}
.categories__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #000000;
  opacity: 0.8;
}

.signature-collection {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("/static/graphics/home/signature.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.signature-collection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  z-index: 1;
}
.signature-collection .signature-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 2rem;
  color: #ffffff;
}
.signature-collection .signature-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.signature-collection .signature-content .primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .signature-collection {
    min-height: 60vh;
  }
  .signature-collection .signature-content {
    padding: 0 1.5rem;
  }
  .signature-collection .signature-content h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
  .signature-collection .signature-content p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

/*# sourceMappingURL=home.css.map */
