@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap');

:root {
  --font-main: "Jost", Arial, sans-serif;
  --ink: #171717;
  --muted: #6d6a66;
  --line: #e7e0d8;
  --paper: #ffffff;
  --soft: #f5f1ed;
  --brown: #a07b58;
  --brown-dark: #7d5d3f;
  --charcoal: #0b0d0e;
}

.wanda-search,
.wanda-side-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.wanda-search input,
.wanda-side-search input {
  width: 150px;
  min-width: 0;
  height: 42px;
  border: 0;
  padding: 0 12px;
  outline: 0;
}

.wanda-search button,
.wanda-side-search button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--brown);
}

.wanda-page-hero {
  padding: 86px 0;
  background: linear-gradient(rgba(8, 10, 11, .66), rgba(8, 10, 11, .66)), url("https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?auto=format&fit=crop&w=1600&q=88") center/cover;
  color: #fff;
}

.wanda-page-hero h1 {
  margin-bottom: 10px;
  color: #fff;
}

.wanda-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.wanda-breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, .45);
}

.wanda-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.wanda-sidebar {
  display: grid;
  gap: 20px;
}

.wanda-sidebar__box {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.wanda-sidebar__box h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.wanda-sidebar__box a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #f0e9e2;
  color: #5f5b55;
  font-weight: 600;
}

.wanda-sidebar__box a:hover,
.wanda-sidebar__box a.is-current {
  color: var(--brown);
}

.wanda-main {
  min-width: 0;
}

.theme-empty {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.theme-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.theme-pagination a,
.theme-pagination span {
  min-width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: #4a453f;
}

.theme-pagination .current,
.theme-pagination a:hover {
  border-color: var(--brown);
  background: var(--brown);
  color: #fff;
}

.wanda-list {
  display: grid;
  gap: 22px;
}

.wanda-list-card {
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.wanda-list-card a {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
}

.wanda-list-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wanda-list-card time,
.wanda-article time {
  display: block;
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
}

.wanda-list-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.wanda-list-card span {
  color: var(--brown);
  font-weight: 800;
}

.theme-prose {
  max-width: 1000px;
  color: #333;
}

.theme-prose img {
  height: auto;
}

.theme-prose p,
.theme-prose li {
  color: #555;
}

.wanda-product-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.wanda-product-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}

.wanda-product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.wanda-product-thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.wanda-product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.wanda-product-summary {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.wanda-detail-section {
  margin-top: 38px;
}

.wanda-article {
  max-width: 980px;
  margin: 0 auto;
}

.wanda-article-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin: 24px 0;
}

.wanda-contact-page {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: 42px;
}

.wanda-contact-form {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
}

.wanda-contact-form form {
  display: grid;
  gap: 14px;
}

.wanda-contact-form input,
.wanda-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  outline: 0;
}

.wanda-contact-form textarea {
  resize: vertical;
}

.wanda-alert {
  margin-bottom: 14px;
  font-weight: 700;
}

.wanda-alert--success {
  color: #0f8f4f;
}

.wanda-alert--error {
  color: #c53030;
}

.theme-search-summary {
  margin-bottom: 24px;
  color: var(--muted);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

p {
  color: var(--muted);
}

.center-head {
  text-align: center;
  margin-bottom: 48px;
}

.center-head h2 {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  font-weight: 700;
}

.btn--brown {
  background: var(--brown);
  color: #fff;
}

.round-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #cbb9a6;
  border-radius: 50%;
  color: var(--brown);
  background: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.top-strip {
  background: #080a0b;
  color: #c9c2ba;
  font-size: 13px;
}

.top-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.top-strip i {
  color: var(--brown);
  margin-right: 7px;
}

.top-strip__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-strip__right i {
  margin-right: 0;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #eee7df;
  position: relative;
  z-index: 20;
  transition: box-shadow .25s ease, transform .25s ease;
}

.site-header.is-fixed .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(15, 12, 9, .12);
}

.site-header.is-fixed {
  padding-bottom: 76px;
}

.navbar__inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 24px;
}

.logo img {
  display: block;
  width: 168px;
  height: 48px;
  object-fit: contain;
}

.logo i {
  color: var(--brown);
  font-size: 30px;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #5f5b55;
  font-size: 15px;
  font-weight: 600;
}

.nav-link,
.nav-submenu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.nav-submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
}

.nav-submenu-toggle i,
.nav-submenu button i {
  font-size: 11px;
}

.nav-links .active,
.nav-link:hover,
.nav-submenu a:hover,
.nav-submenu button:hover {
  color: var(--brown);
}

.nav-item {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 30;
  width: 230px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(15, 12, 9, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.nav-item:hover > .nav-submenu,
.nav-submenu .has-submenu:hover > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu--child {
  top: -10px;
  left: calc(100% + 10px);
}

.nav-submenu li {
  position: relative;
}

.nav-submenu a,
.nav-submenu button {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  color: #5f5b55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.nav-drawer-head,
.nav-backdrop {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions button,
.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #5c5852;
}

.nav-toggle {
  display: none;
  margin-left: auto;
}

.footer {
  background: #090b0c;
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .7fr 1fr;
  gap: 70px;
  padding: 70px 0 56px;
}

.logo--light small,
.footer p,
.footer a {
  color: #a9a8a6;
}

.footer h3 {
  margin-bottom: 22px;
}

.footer a {
  display: block;
  margin: 10px 0;
}

.subscribe {
  margin-top: 28px;
  width: min(360px, 100%);
  display: flex;
  border: 1px solid #282b2c;
}

.subscribe input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #fff;
}

.subscribe button {
  width: 52px;
  border: 0;
  background: transparent;
  color: var(--brown);
}

.footer__bottom {
  min-height: 72px;
  border-top: 1px solid #222526;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8f8d8a;
  font-size: 13px;
}

.footer__bottom div {
  display: flex;
  gap: 9px;
}

.footer__bottom a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  background: #151819;
  color: #fff;
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 26px;
  bottom: 30px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.floating-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-actions__item {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(160, 123, 88, .34);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(16, 13, 10, .16);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.floating-actions__item:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-3px);
}

.floating-actions__item--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.floating-actions__item--whatsapp:hover {
  background: #1fb95a;
}

@media (max-width: 1080px) {
  .top-strip__inner {
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100vh;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: -24px 0 54px rgba(15, 12, 9, .2);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity .25s ease, visibility .25s ease, transform .3s ease;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 58;
    display: block;
    background: rgba(10, 9, 8, .54);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .navbar.open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .navbar.open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-drawer-head {
    min-height: 74px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .nav-drawer-head img {
    width: 132px;
    height: 40px;
    object-fit: contain;
  }

  .nav-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f6f1ec;
    color: var(--brown);
    display: inline-grid;
    place-items: center;
  }

  .nav-link,
  .nav-submenu a,
  .nav-submenu button {
    width: 100%;
    min-height: 48px;
    padding: 13px 20px;
    border-bottom: 1px solid #eee8e1;
    color: #332f2a;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-submenu,
  .nav-submenu--child {
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #fbf8f4;
  }

  .has-submenu.is-open > .nav-submenu {
    display: block;
  }

  .nav-submenu .nav-submenu {
    background: #f3eee8;
  }

  .nav-submenu a,
  .nav-submenu button {
    min-height: 44px;
    padding-left: 34px;
    font-size: 14px;
    font-weight: 600;
  }

  .nav-submenu--child a {
    padding-left: 48px;
    color: #625b53;
  }

  .has-submenu.is-open > button i {
    transform: rotate(180deg);
  }

  .nav-submenu button i,
  .nav-submenu-toggle i {
    transition: transform .2s ease;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .wanda-layout,
  .wanda-product-detail,
  .wanda-contact-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  h2 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .top-strip {
    display: none;
  }

  .navbar__inner {
    height: 64px;
    gap: 14px;
  }

  .site-header.is-fixed {
    padding-bottom: 64px;
  }

  .logo img {
    width: 136px;
    height: 40px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f7f3ef;
  }

  .top-strip__right {
    margin-left: 0;
  }

  .footer__bottom {
    flex-direction: column;
    padding: 22px 0;
    text-align: center;
  }

  .footer__grid {
    gap: 34px;
    padding: 52px 0 42px;
  }

  .floating-actions {
    right: 14px;
    bottom: 18px;
    gap: 8px;
  }

  .floating-actions__item {
    width: 40px;
    height: 40px;
  }

  .wanda-page-hero {
    padding: 54px 0;
  }

  .wanda-list-card a {
    grid-template-columns: 1fr;
  }

  .wanda-list-card img {
    height: 220px;
  }

  .wanda-product-summary,
  .wanda-contact-form,
  .wanda-sidebar__box {
    padding: 20px;
  }
}
