/* --- Мова ліворуч від меню на мобільних --- */
@media (max-width: 900px) {
  .nav-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.2rem;
  }
  .nav-lang-mobile {
    display: block;
    margin-right: 0;
    order: 1;
  }
  .nav-toggle {
    order: 2;
  }
  .nav-menu {
    order: 3;
  }
  /* Приховати кнопку мови в меню */
  .nav-menu .nav-lang-item {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .nav-lang-mobile {
    display: none !important;
  }
}
/* --- Мова ліворуч від меню на мобільних --- */
@media (max-width: 900px) {
  .nav-wrapper {
    display: flex;
    align-items: center;
  }
  .nav-lang-item {
    order: 1;
    margin-right: 0.1em;
  }
  .nav-toggle {
    order: 2;
  }
  .nav-menu {
    order: 3;
  }
}
/* Language Switcher */

/* Language Switcher (btn-primary style) */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.08);
}

/* Кнопка перемикача мови як пункт меню */
.nav-link-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0 0.1em;
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

/* Filigrana Studio - Main Stylesheet */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button {
  font-family: inherit;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 300;
  color: #2d3436;
  line-height: 1.6;
  background-color: #ffffff;
}

body.aside-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: 0.18em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.logo {
  display: block;
  width: 150px;
  height: 50px;
  background: url("../assets/icons/logo/logo1.webp") no-repeat center center;
  background-size: contain;
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.navbar .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.navbar .nav-menu a:not(.btn) {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.navbar .nav-menu a:not(.btn):hover {
  background: linear-gradient(90deg, #966429, rgba(48, 32, 13, 0.79));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu-logo {
  display: none;
}

.navbar .nav-menu-cta {
  display: none;
}

.navbar .nav-menu-cta .btn {
  white-space: nowrap;
}

.navbar .nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: url("../assets/icons/Group.png") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
  line-height: 1.6;
  vertical-align: middle;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  border: none;
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #966429, rgba(48, 32, 13, 0.79));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(48, 32, 13, 0.35);
}

/* Hero Section */
.hero {
  background: url("../assets/icons/img/MARK8889-Edit (2).webp") no-repeat center
    center;
  background-size: cover;
  color: #ffffff;
  padding: 160px 0 100px;
  text-align: center;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero .hero-content {
  max-width: 600px;
}

.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideInDown 0.8s ease-out;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 769px) {
  .hero .hero-content p {
    position: absolute;
    top: calc(7rem + 10rem);
    right: 1.2rem;
    max-width: 36ch;
    margin: 0;
    text-align: right;
  }
}

.hero .hero-content .btn {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #ffffff;
}

.about h2,
.about h1 {
  font-size: 2.5rem;
  margin-bottom: 5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about .about-content + .about-content {
  margin-top: 4rem;
}

.about .about-content--reverse .about-photo {
  order: 2;
}

.about .about-content--reverse .about-text {
  order: 1;
}

.about .about-content .about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.about .about-content .about-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  min-height: 280px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  color: #000;
  margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
}

.portfolio h2,
.portfolio h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #2d3436;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-item {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: none;
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item h3 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #ffffff;
  font-size: 1.8rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
  z-index: 1;
}

.portfolio-item h4 {
  position: absolute;
  bottom: 0.75rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  z-index: 1;
}

.portfolio-item p {
  padding: 0 1.5rem 1rem;
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.portfolio-item::before {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: pre;
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio-item:hover::before,
.portfolio-item:focus-visible::before {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.portfolio-item[data-lang="no"]::before {
  content: "lære mer   →";
}

.portfolio-item[data-lang="en"]::before {
  content: "learn more   →";
}

.portfolio-wrapper {
  display: flex;
  flex-direction: column;
}

.portfolio-wrapper:nth-child(1) {
  order: 4;
}

.portfolio-wrapper:nth-child(2) {
  order: 2;
}

.portfolio-wrapper:nth-child(3) {
  order: 3;
}

.portfolio-wrapper:nth-child(4) {
  order: 1;
}

.portfolio-wrapper:nth-child(5) {
  order: 6;
}

.portfolio-wrapper:nth-child(6) {
  order: 5;
}

.faq-list {
  margin-top: 1.5rem;
  padding: 0 0 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  padding: 0.75rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  color: #2d3436;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #ffffff;
}

.product-aside {
  position: fixed;
  inset: 0;
  z-index: 240;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.product-aside.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-aside.is-open .product-aside__panel {
  transform: translateX(0);
}

.product-aside__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 9, 2, 0.38);
  border: 0;
  cursor: pointer;
}

.product-aside__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  background: linear-gradient(180deg, #fffdf8 0%, #f7f1e8 100%);
  box-shadow: -12px 0 40px rgba(48, 32, 13, 0.22);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.2rem 1.5rem;
}

.product-aside__back {
  background: transparent;
  border: 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.45rem;
  color: #2d3436;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  width: 100%;
  cursor: pointer;
  margin-bottom: 1rem;
}

.product-aside__back span:last-child {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.product-aside__logo {
  width: 104px;
  height: 36px;
}

.product-aside__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.product-aside__content img {
  width: 100%;
  height: min(42vh, 320px);
  object-fit: cover;
  border-radius: 12px;
}

.product-aside__content h3 {
  font-size: 1.9rem;
  letter-spacing: 0.14em;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-aside__content p {
  color: #5f5750;
  font-size: 1rem;
  max-width: 36ch;
  position: relative;
}

@media (min-width: 769px) {
  .hero .hero-content {
    min-height: 300px;
    padding-top: 9rem;
  }
}

.product-aside__content .product-aside__lead {
  max-width: 44ch;
}

.product-aside__content .pedikyr-price-list {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 769px) {
  .hero .hero-content h1 {
    position: absolute;
    top: 7rem;
    right: 0;
    margin-bottom: 0;
    text-align: right;
  }
}

.product-aside__content .pedikyr-price-item {
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(150, 100, 41, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.product-aside__content .pedikyr-price-item h4 {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  color: #30200d;
}

.product-aside__content .pedikyr-price-item p {
  font-size: 0.9rem;
  color: #5f5750;
  margin-bottom: 0.6rem;
  max-width: 100%;
}

.product-aside__content .pedikyr-price-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #30200d;
  font-weight: 500;
}

.pedikyr-price-item__badge {
  position: absolute;
  top: -0.1rem;
  right: 0.5rem;
  background: rgba(150, 100, 41, 0.88);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 0.8rem;
}

.product-aside__content .btn {
  margin-top: auto;
  text-align: center;
  color: #ffffff;
}

.product-aside__content .btn:visited {
  color: #ffffff;
}

.promo-alert {
  position: fixed;
  inset: 0;
  z-index: 260;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.promo-alert.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.promo-alert-open {
  overflow: hidden;
}

.promo-alert__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: rgba(15, 9, 2, 0.5);
  cursor: pointer;
}

.promo-alert__panel {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 2rem));
  max-height: min(88vh, 780px);
  margin: clamp(1rem, 4vh, 2rem) auto;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(150, 100, 41, 0.22);
  background: linear-gradient(180deg, #fffdf8 0%, #f7f1e8 100%);
  box-shadow: 0 24px 55px rgba(48, 32, 13, 0.28);
  padding: 1.2rem;
}

.promo-alert__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 3;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  color: #5f5750;
  cursor: pointer;
}

.promo-alert h3 {
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-alert__lead {
  color: #5f5750;
  margin-bottom: 0.9rem;
}

.promo-alert__list {
  display: grid;
  gap: 0.85rem;
}

.promo-alert__item {
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(150, 100, 41, 0.2);
  background: rgba(255, 255, 255, 0.74);
}

.promo-alert__image {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.65rem;
  display: block;
}

@media (min-width: 768px) {
  .promo-alert__image {
    max-height: 360px;
  }
}

.promo-alert__item h4 {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #30200d;
}

.promo-alert__item p {
  font-size: 0.9rem;
  color: #5f5750;
  margin-bottom: 0.5rem;
  max-width: 100%;
}

.promo-alert__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #30200d;
  font-weight: 500;
}

.promo-alert .btn {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.promo-alert .btn:visited {
  color: #ffffff;
}

.services h2,
.services h1 {
  font-size: 2.5rem;
  margin-bottom: 5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shop Section */
.shop-section {
  padding: 80px 0;
  background-color: #faf9f7;
}

.shop-section h2,
.shop-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-section__intro {
  text-align: center;
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Filter buttons */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.shop-filter-btn {
  background: #fff;
  border: 1.5px solid #e0d8cf;
  border-radius: 2rem;
  padding: 0.45rem 1.2rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5a4a3a;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0.04em;
}

.shop-filter-btn:hover,
.shop-filter-btn--active {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.85), #966429);
  color: #fff;
  border-color: transparent;
}

/* Product grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Product card */
.shop-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.shop-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.shop-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.shop-card:hover .shop-card__img-wrap img {
  transform: scale(1.04);
}

.shop-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(150, 100, 41, 0.88);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 1rem;
}

/* Gift card variant */
.shop-card__img-wrap--gift {
  background: linear-gradient(135deg, #f9f0e3, #e8d5b0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card__gift-icon {
  font-size: 4rem;
  line-height: 1;
}

/* Card body */
.shop-card__body {
  padding: 1.2rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.shop-card__body p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.shop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.shop-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #966429;
}

.btn--sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* Shop product cards inside aside panel */
.shop-product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.shop-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.shop-product-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.shop-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-product-card--no-image {
  border: 1px solid rgba(150, 100, 41, 0.2);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0) 45%
    ),
    #fff;
}

.shop-product-card__img-wrap--decor {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1rem;
  background:
    linear-gradient(140deg, rgba(150, 100, 41, 0.88), rgba(191, 146, 87, 0.88)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.shop-product-card__decor-kicker {
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a5a20;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
}

.shop-product-card__decor-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-product-card__info {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-product-card__info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.shop-product-card__info p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.6rem;
}

.shop-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.shop-product-card__price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #966429;
}

.shop-product-card__time {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-product-cards {
    grid-template-columns: 1fr;
  }

  .shop-card__body {
    padding: 0.9rem 0.9rem 1rem;
  }
}

@media (max-width: 400px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-section h2,
.faq-section h1 {
  font-size: 2.5rem;
  margin-bottom: 5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-section-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-section-item {
  border-bottom: 1px solid #eee;
}

.faq-section-item:last-child {
  border-bottom: none;
}

.faq-section-item summary {
  padding: 1rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 400;
  color: #2d3436;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-section-item summary::-webkit-details-marker {
  display: none;
}

.faq-section-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-section-item[open] summary::after {
  content: "−";
}

.faq-section-item p {
  padding: 0 0 1rem;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.blogg-intro {
  margin-bottom: 2rem;
}

.blogg-carousel {
  position: relative;
  margin: 0 auto 4rem;
  padding: 0.5rem 0 0;
}

.blogg-carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blogg-carousel__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a5a20;
}

.blogg-carousel__controls {
  display: flex;
  gap: 0.6rem;
}

.blogg-carousel__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(150, 100, 41, 0.2);
  border-radius: 999px;
  background: #fffdf8;
  color: #30200d;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.blogg-carousel__arrow:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(48, 32, 13, 0.12);
}

.blogg-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.blogg-carousel__viewport::before,
.blogg-carousel__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(10vw, 96px);
  z-index: 2;
  pointer-events: none;
}

.blogg-carousel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.blogg-carousel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.blogg-carousel__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.3rem 0.2rem 0.6rem;
  animation: bloggCarouselScroll 34s linear infinite;
}

.blogg-carousel:hover .blogg-carousel__track {
  animation-play-state: paused;
}

.blogg-carousel--manual .blogg-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.blogg-carousel--manual .blogg-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.blogg-carousel--manual .blogg-carousel__track {
  animation: none;
}

.blogg-carousel--manual .blogg-carousel__viewport::before,
.blogg-carousel--manual .blogg-carousel__viewport::after {
  display: none;
}

.blogg-carousel--manual .blogg-card[aria-hidden="true"] {
  display: none;
}

.blogg-card {
  display: block;
  width: min(82vw, 320px);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(150, 100, 41, 0.14);
  box-shadow: 0 14px 40px rgba(48, 32, 13, 0.08);
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.blogg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(48, 32, 13, 0.14);
}

.blogg-card[aria-hidden="true"] {
  pointer-events: none;
}

.blogg-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.blogg-card__body {
  padding: 1rem 1rem 1.1rem;
}

.blogg-card__kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(150, 100, 41, 0.12);
  color: #8a5a20;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blogg-card h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
  color: #30200d;
  letter-spacing: 0.05em;
}

.blogg-card p {
  font-size: 0.92rem;
  color: #5f5750;
  line-height: 1.55;
}

.blogg-article {
  max-width: 920px;
}

.blogg-article__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(150, 100, 41, 0.12);
  color: #8a5a20;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blogg-article__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 auto 2rem;
  box-shadow: 0 18px 42px rgba(48, 32, 13, 0.12);
}

.blogg-article__content {
  max-width: 760px;
  margin: 0 auto;
}

.blogg-article__content h2 {
  margin: 2rem 0 0.9rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blogg-article__content p,
.blogg-article__content li {
  font-size: 1rem;
  line-height: 1.8;
  color: #4f463f;
}

.blogg-article__content ul {
  margin: 0.8rem 0 0 1.2rem;
}

.blogg-article__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

@keyframes bloggCarouselScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact h2,
.contact h1 {
  font-size: 2.5rem;
  margin-bottom: 5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 1.05rem;
  color: #2d3436;
}

.contact-info-item a:hover {
  color: #000;
}

.contact-info-item--follow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.contact-info-item--follow h3 {
  margin-bottom: 0;
}

.contact-info-item--follow .footer-credits {
  margin-top: 0.15rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__topic {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(150, 100, 41, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem 0.3rem 0.6rem;
  background: rgba(150, 100, 41, 0.07);
  border: 1px solid rgba(150, 100, 41, 0.22);
  border-radius: 1rem;
  margin-bottom: -0.25rem;
}

.contact-form__topic::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(150, 100, 41, 0.75);
  flex-shrink: 0;
}

.contact-form .studio-signal-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #30200d;
  box-shadow: 0 0 10px rgba(48, 32, 13, 0.2);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.contact-form .field-error {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: #b42318;
}

.contact-form .form-status {
  min-height: 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form .form-status:empty {
  display: none;
}

.contact-form .form-status--success {
  background-color: rgba(6, 95, 70, 0.08);
  color: #065f46;
  border: 1px solid rgba(6, 95, 70, 0.18);
}

.contact-form .form-status--error {
  background-color: rgba(180, 35, 24, 0.08);
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.18);
}

.contact-form button {
  align-self: stretch;
}

/* Footer */

.footer {
  background-color: #ffffff;
  color: #2d3436;
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer-credits {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: #2d3436;
}

.footer-credits a {
  color: #2d3436;
  text-decoration: none;
  background: none;
  transition:
    color 0.2s,
    background 0.2s,
    -webkit-text-fill-color 0.2s;
}

.footer-credits a:hover {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: inherit;
  text-decoration: none;
}

.contact-info a {
  color: #2d3436;
  text-decoration: none;
  background: none;
  transition:
    color 0.2s,
    background 0.2s,
    -webkit-text-fill-color 0.2s;
}

.contact-info a:hover {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: inherit;
  text-decoration: none;
}

.footer-credits a:hover {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: inherit;
  text-decoration: none;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 821px) {
  .navbar .nav-menu-cta {
    display: block;
  }

  .navbar .nav-menu-cta .btn {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .hero .hero-content .hero-booking-btn {
    display: none;
  }
}

/* AI Chat Widget */
.ai-chat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.ai-chat.ai-chat--visible {
  opacity: 1;
  pointer-events: auto;
}

.ai-chat__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 6px 24px rgba(48, 32, 13, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.ai-chat__toggle:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 10px 30px rgba(48, 32, 13, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.ai-chat__toggle-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.ai-chat__panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(48, 32, 13, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.25s ease-out;
}

.ai-chat__panel[hidden] {
  display: none;
}

.ai-chat__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.ai-chat__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.ai-chat__messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ai-chat__message {
  max-width: 85%;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ai-chat__message p {
  margin: 0;
}

.ai-chat__message--bot {
  align-self: flex-start;
  background: #f5f0ea;
  color: #30200d;
  border-bottom-left-radius: 4px;
}

.ai-chat__message--user {
  align-self: flex-end;
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.ai-chat__message--loading p::after {
  content: "…";
  animation: pulse 1s infinite;
}

.ai-chat__form {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(150, 100, 41, 0.15);
}

.ai-chat__input {
  flex: 1;
  border: 1px solid rgba(150, 100, 41, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.ai-chat__input:focus {
  border-color: #966429;
}

.ai-chat__send {
  background: linear-gradient(90deg, rgba(48, 32, 13, 0.79), #966429);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ai-chat__send:hover {
  opacity: 0.85;
}

.ai-chat__send:disabled {
  opacity: 0.5;
  cursor: default;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about .about-content {
    grid-template-columns: 1fr;
  }

  .about .about-content--reverse .about-photo,
  .about .about-content--reverse .about-text {
    order: initial;
  }

  .navbar .nav-wrapper {
    position: relative;
  }

  .navbar .nav-toggle {
    display: block;
  }

  .navbar .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background-color: #ffffff;
    z-index: 999;
    padding: 2rem;
  }

  .navbar .nav-menu.is-open {
    display: flex;
  }

  .nav-menu-logo {
    display: block;
    position: absolute;
    top: 1rem;
    left: 20px;
  }

  .nav-menu-logo .logo {
    width: 150px;
    height: 50px;
  }

  .navbar .nav-menu a {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }

  .navbar .nav-toggle {
    z-index: 1000;
  }

  .navbar .nav-toggle.is-open {
    background-image: url("../assets/icons/VectorX.png");
  }

  .container {
    padding: 0 15px;
  }

  .promo-alert__panel {
    width: calc(100% - 1.2rem);
    margin: 0.6rem auto;
    max-height: calc(100dvh - 1.2rem);
    padding: 1rem 0.85rem;
  }

  .promo-alert h3 {
    font-size: 1.25rem;
    margin-right: 1.8rem;
  }

  .promo-alert__meta {
    flex-direction: column;
    gap: 0.15rem;
  }

  h1,
  h2 {
    font-size: 1.8rem !important;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero {
    position: relative;
    padding: 80px 0 100px;
  }

  .hero .hero-content {
    padding-bottom: 22vh;
  }

  .hero .hero-content .btn-primary {
    position: absolute;
    left: 50%;
    bottom: 15%;
    width: min(88vw, 320px);
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: none;
    transform: translateX(-50%);
  }

  .hero .hero-content .btn-primary:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blogg-carousel {
    margin-bottom: 3rem;
  }

  .blogg-carousel__header {
    align-items: flex-start;
  }

  .blogg-carousel__track {
    animation-duration: 28s;
  }

  .blogg-card {
    width: min(86vw, 280px);
  }

  .blogg-card img {
    height: 180px;
  }

  .blogg-article__image {
    max-height: 320px;
    margin-bottom: 1.5rem;
  }

  .blogg-article__content h2 {
    font-size: 1.2rem;
  }

  .blogg-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
  }

  .blogg-carousel__viewport::-webkit-scrollbar {
    display: none;
  }

  .blogg-carousel__viewport::before,
  .blogg-carousel__viewport::after {
    display: none;
  }

  .blogg-carousel__track {
    animation: none;
  }

  .blogg-card[aria-hidden="true"] {
    display: none;
  }

  .shop-product-cards {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}
