@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Old Standard TT';
  src: url('../fonts/oldstandard/OldStandardTT-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Old Standard TT';
  src: url('../fonts/oldstandard/OldStandardTT-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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


p {
  font-size: clamp(15px, 2.5vw, 17px);
  line-height: clamp(26px, 2.5vw, 30px);
  color: var(--gray);
  font-weight: 300;
  font-family: var(--font-1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}


input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pe-50px {
  padding-right: 50px;
}

.px-80 {
  padding: 0 50px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */
:root {
  --font-metropolis: 'Metropolis', sans-serif;
  --font-old-standard: 'Old Standard TT', serif;
  --d-brown: #734818;
  --brown: #72401f;
  --gray: #333333;
  --black: #000000;
  --black-2: #121110;
  --white: #ffffff;
  --white-2: #f8f1e5;
  --home-banner-title-color: var(--white-2);
  --home-banner-subtitle-color: var(--white);
  --footer-bottom-bg: #e8d0a3;
  --scrolltop-bg-start: var(--d-brown);
  --scrolltop-bg-end: var(--brown);
  --scrolltop-bg-hover-start: var(--brown);
  --scrolltop-bg-hover-end: var(--black-2);
  --scrolltop-icon: var(--white-2);
  --scrolltop-ring: var(--footer-bottom-bg);
  --about-card-font-family: var(--font-metropolis);
  --about-card-title-color: var(--d-brown);
  --about-card-description-color: var(--gray);
  --about-card-bg: #fffcf9;
}

::selection {
  background-color: var(--d-brown);
  color: var(--white-2);
  text-shadow: none;
}

/* Scrollbar base */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #d5c3a9;
}

::-webkit-scrollbar-thumb {
  background: var(--d-brown);
  border-radius: 999px;
  border: 2px solid #d5c3a9;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background: var(--brown);
}


/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--d-brown) #d5c3a9;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--d-brown) #d5c3a9;
  scroll-behavior: auto;
}

#team-section {
  scroll-margin-top: 90px;
}



* {
  scrollbar-width: thin;
}

@supports (-ms-overflow-style: none) {
  * {
    -ms-overflow-style: scrollbar;
  }
}


a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  cursor: pointer;
  color: var(--sec-color);
}

body {
  background-color: var(--background) !important;
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--font-1);
  background-color: #f4ecdc;
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.container {
  max-width: 1460px;
  padding-left: 20px;
  padding-right: 20px;
}

#masthead2 {
  background-color: #f4ecdc;
}

/* ================================
   DESKTOP MASTHEAD
================================ */

#masthead {
  background: transparent;
  transition:
    background-color 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#masthead .container {
  position: relative;
}

.masthead-mainbar {
  padding: 14px 0 0;
  background: transparent;
  transition: padding 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.masthead-shell {
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  position: relative;
  transition: min-height 0.8s cubic-bezier(0.22, 1, 0.36, 1), align-items 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.masthead-nav-left {
  justify-self: start;
  padding-top: 25px;
  transition: padding-top 0.8s cubic-bezier(0.22, 1, 0.36, 1), align-self 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#masthead .masthead-nav {
  min-width: auto;
}

#masthead .masthead-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

#masthead .masthead-menu>li {
  position: relative;
}

#masthead .masthead-menu>li::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#masthead .nav>li>a {
  padding: 0;
  font-family: var(--font-metropolis);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  color: var(--brown);
}

#masthead .nav>li>a::after {
  bottom: -5px;
  height: 2px;
  background-color: var(--brown);
}

#masthead .nav>li.menu-item-has-children>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 0;
}

#masthead .nav>li.menu-item-has-children>a .menu-angle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#masthead .nav>li.menu-item-has-children>a .menu-angle i {
  font-size: 14px;
  color: var(--brown);
  transition: color 0.3s ease, transform 0.3s ease;
}

#masthead .nav>li.menu-item-has-children:hover>a .menu-angle i,
#masthead .nav>li.menu-item-has-children:focus-within>a .menu-angle i {
  color: var(--black-2);
  transform: rotate(180deg);
}

#masthead .masthead-menu .sub-menu {
  list-style: none;
  min-width: 165px;
  margin: 12px 0 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  border-radius: 18px;
  overflow: visible;
  background-color: #d5c3a9;
  background-image: linear-gradient(rgba(249, 242, 229, 0.22), rgba(249, 242, 229, 0.22)), var(--masthead-submenu-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 230px;
  box-shadow: 0 20px 30px rgba(27, 17, 10, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#masthead .masthead-menu .sub-menu .sub-menu {
  margin: 0;
  top: 0;
  left: calc(100% + 6px);
  transform: translateX(6px);
}

#masthead .masthead-menu>li:hover>.sub-menu,
#masthead .masthead-menu>li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#masthead .masthead-menu>li:hover::after,
#masthead .masthead-menu>li:focus-within::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#masthead .masthead-menu .sub-menu li {
  position: relative;
  border-bottom: 2px solid #d5c3a9;
}

#masthead .masthead-menu .sub-menu li:last-child {
  border-bottom: 0;
}

#masthead .masthead-menu .sub-menu>li:first-child>a {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

#masthead .masthead-menu .sub-menu>li:last-child>a {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

#masthead .masthead-menu .sub-menu li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 8px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#masthead .masthead-menu .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 8px 15px;
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 1.5vw, 17px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black-2);
  background: transparent;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#masthead .masthead-menu .sub-menu li.menu-item-has-children>a .menu-angle {
  flex: 0 0 auto;
}

#masthead .masthead-menu .sub-menu li.menu-item-has-children>a .menu-angle i {
  font-size: 11px;
}

#masthead .masthead-menu .sub-menu li.menu-item-has-children>a .menu-angle .fa-caret-right {
  font-size: 14px;
}

#masthead .masthead-menu .sub-menu li:hover>a,
#masthead .masthead-menu .sub-menu li:focus-within>a,
#masthead .masthead-menu .sub-menu li.current-menu-item>a,
#masthead .masthead-menu .sub-menu li.current-menu-ancestor>a,
#masthead .masthead-menu .sub-menu li.current-menu-parent>a {
  color: var(--white);
  background-color: var(--d-brown);
}

#masthead .masthead-menu .sub-menu li:hover>a .menu-angle i,
#masthead .masthead-menu .sub-menu li:focus-within>a .menu-angle i,
#masthead .masthead-menu .sub-menu li.current-menu-item>a .menu-angle i,
#masthead .masthead-menu .sub-menu li.current-menu-ancestor>a .menu-angle i,
#masthead .masthead-menu .sub-menu li.current-menu-parent>a .menu-angle i {
  color: var(--white);
}

#masthead .masthead-menu .sub-menu li:hover>.sub-menu,
#masthead .masthead-menu .sub-menu li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

#masthead .masthead-menu .sub-menu li.menu-item-has-children:hover::after,
#masthead .masthead-menu .sub-menu li.menu-item-has-children:focus-within::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#masthead .masthead-menu .sub-menu a::before,
#masthead .masthead-menu .sub-menu a::after {
  display: none;
}

.masthead-logo-wrap {
  --masthead-logo-width: 228px;
  --masthead-logo-height: 296px;
  width: var(--masthead-logo-width);
  height: var(--masthead-logo-height);
  align-self: start;
  justify-self: center;
  position: relative;
  z-index: 3;
  transition: height 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.masthead-logo-panel {
  width: var(--masthead-logo-width);
  height: var(--masthead-logo-height);
  padding: 12px;
  background: #f9f2e5;
  border: 3px solid var(--d-brown);
  box-shadow: 0 18px 28px rgba(63, 35, 8, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center top;
  will-change: transform, box-shadow;
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.masthead-logo-panel .custom-logo-link,
.masthead-logo-panel .custom-logo {
  display: block;
}

.masthead-logo-panel .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s ease,
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.masthead-cta {
  justify-self: end;
  padding-top: 25px;
  transition: padding-top 0.8s cubic-bezier(0.22, 1, 0.36, 1), align-self 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.masthead-discover-btn {
  min-width: 195px;
  min-height: 44px;
  padding: 10px 22px !important;
  font-size: 14px !important;
}

#masthead.scrolled {
  background: rgba(249, 242, 229, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(60, 36, 11, 0.12);
}

#masthead.scrolled .masthead-mainbar {
  padding: 6px 0;
}

#masthead.scrolled .masthead-shell {
  min-height: 64px;
  align-items: center;
}

#masthead.scrolled .masthead-logo-wrap {
  height: calc(var(--masthead-logo-height) * 0.35);
  align-self: center;
}

#masthead.scrolled .masthead-logo-panel {
  transform: translateY(0) scale(0.35);
  box-shadow: 0 14px 24px rgba(63, 35, 8, 0.14);
}

#masthead.scrolled .masthead-logo-panel .custom-logo {
  transform: scale(0.94);
  opacity: 0.98;
  filter: saturate(0.96);
}

#masthead.scrolled .masthead-nav-left,
#masthead.scrolled .masthead-cta {
  padding-top: 0;
  align-self: center;
  transform: translateY(0);
}

#masthead .nav>li>a:hover,
#masthead .nav>li>a:focus-visible {
  color: var(--d-brown);
}

#masthead2 {
  padding: 10px 8px;
  min-height: 82px;
  transition: padding 0.4s cubic-bezier(.4, 0, .2, 1);
}

.logo-wrapper .custom-logo {
  position: relative;
  top: 0;
  width: 80px;
  max-width: 100%;
  height: auto;

  transform: translateY(0) scale(1);
  transform-origin: left top;
  will-change: transform;
  backface-visibility: hidden;

  transition:
    transform 0.5s cubic-bezier(.4, 0, .2, 1),
    width 0.5s cubic-bezier(.4, 0, .2, 1);
}

#masthead2.scrolled {
  padding: 5px 8px;
  box-shadow: 0 4px 10px rgba(63, 63, 63, 0.247);
}

#masthead2.scrolled .custom-logo {
  width: 50px;
  transform: scale(0.99);
}



/* ================================
   MENU LINKS
================================ */

.nav>li>a {
  font-family: var(--font-1);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: color 0.35s ease;
}

.nav>li>a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.4s cubic-bezier(.4, 0, .2, 1),
    background-color 0.35s ease;
  z-index: -1;
}


#masthead.scrolled .nav>li>a:hover,
#masthead.scrolled .nav>li>a:focus-visible,
#masthead.scrolled .nav>li.current-menu-item>a,
#masthead.scrolled .nav>li.current-menu-ancestor>a,
#masthead.scrolled .nav>li.current-menu-parent>a,
#masthead.scrolled .nav>li.current_page_parent>a {
  color: var(--d-brown);
}

.nav>li>a:hover,
.nav>li>a:focus-visible,
.nav>li.current-menu-item>a,
.nav>li.current-menu-ancestor>a,
.nav>li.current-menu-parent>a,
.nav>li.current_page_parent>a {
  color: var(--blue);
}

.nav>li>a:hover::before,
.nav>li>a:focus-visible::before,
.nav>li.current-menu-item>a::before,
.nav>li.current-menu-ancestor>a::before,
.nav>li.current-menu-parent>a::before,
.nav>li.current_page_parent>a::before {
  transform: scaleX(1);
}

/* remove underline effect */
.nav>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.nav>li.current-menu-ancestor>a::after,
.nav>li.current-menu-parent>a::after,
.nav>li.current_page_parent>a::after {
  transform: scaleX(1);
}

.nav>li>a:hover::after,
.nav>li>a:focus-visible::after,
.nav>li.current-menu-item>a::after {
  transform: scaleX(1);
}

/* =========================
   Dropdown Arrow
========================= */

.nav>li.menu-item-has-children {
  position: relative;
}

/* Menu gap */
.menu-gap {
  gap: 2rem;
}


.btn-1 {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* min-width: 270px !important;
  min-height: 56px !important; */
  padding: 10px 25px !important;
  font-family: var(--font-metropolis) !important;
  font-weight: 600 !important;
  font-size: clamp(14px, 2.2vw, 18px) !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  background: var(--d-brown) !important;
  color: var(--white-2) !important;
  border: 2px solid var(--d-brown) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  z-index: 0 !important;
  transition: color 0.3s ease, border-color 0.3s ease !important;
}

/* Ripple */
.btn-1::before {
  content: "" !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  border-radius: 50% !important;
  background: var(--black-2) !important;
  top: var(--y) !important;
  left: var(--x) !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.45s ease, height 0.45s ease !important;
  z-index: -1 !important;
}


/* Expand ripple */
.btn-1:hover::before {
  width: 300% !important;
  height: 300% !important;
}

/* Hover text */
.btn-1:hover {
  color: var(--white) !important;
  border: 2px solid var(--black-2) !important;
}

.btn-2 {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* min-width: 270px !important;
  min-height: 56px !important; */
  padding: 10px 25px !important;
  font-family: var(--font-metropolis) !important;
  font-weight: 700 !important;
  font-size: clamp(14px, 2.2vw, 18px) !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  background: var(--black-2) !important;
  color: var(--white-2) !important;
  border: 2px solid var(--black-2) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  z-index: 0 !important;
  transition: color 0.3s ease, border-color 0.3s ease !important;
}

/* Ripple */
.btn-2::before {
  content: "" !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  border-radius: 50% !important;
  background: var(--brown) !important;
  top: var(--y) !important;
  left: var(--x) !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.45s ease, height 0.45s ease !important;
  z-index: -1 !important;
}


/* Expand ripple */
.btn-2:hover::before {
  width: 300% !important;
  height: 300% !important;
}

/* Hover text */
.btn-2:hover {
  color: var(--white) !important;
  border: 2px solid var(--white-2) !important;
}




/* Global Heading & Paragraph */

.home-banner-section {
  min-height: 100vh;
  padding: 260px 0 120px;
  background-color: var(--brown);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.home-banner-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-banner-title {
  margin-bottom: 34px;
  font-size: 130px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--home-banner-title-color);
  font-weight: 400;
  font-family: var(--font-old-standard);
  text-align: center;
}

.home-banner-subtitle {
  margin-bottom: 36px;
  font-size: 40px;
  line-height: 1.2;
  color: var(--home-banner-subtitle-color);
  font-weight: 500;
  font-family: var(--font-metropolis);
  text-align: center;
}

.home-banner-action {
  display: flex;
  justify-content: center;
}

.home-banner-btn {
  min-width: 210px;
  min-height: 54px;
  padding: 14px 30px !important;
}

.inner-banner-section {
  position: relative;
  min-height: 600px;
  max-height: 600px;
  padding: 0;
  background-color: #c3ad87;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.inner-banner-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 600px;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.inner-banner-title {
  font-size: clamp(33px, 5vw, 72px);
  line-height: clamp(30px, 3vw, 30px);
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-old-standard);
  text-align: center;
}

/* About page style */

.about-page-story-section {
  position: relative;
  padding: 100px 0 120px;
  background-color: #efe4cf;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.about-page-story-heading {
  max-width: 1230px;
  margin: 0 auto 52px;
  text-align: center;
}


.about-page-story-description {
  max-width: 1230px;
  margin: 0 auto;
}

.about-page-story-description h1 {
  margin-bottom: 28px;
  font-family: var(--font-old-standard);
  font-size: clamp(32px, 3.8vw, 80px);
  line-height: clamp(35px, 4vw, 80px);
  font-weight: 700;
  color: #121210;
  text-align: center;
}

.about-page-story-description p {
  font-family: var(--font-old-standard);
  font-size: clamp(20px, 2vw, 36px);
  line-height: clamp(30px, 3.1vw, 48px);
  font-weight: 700;
  color: var(--d-brown);
  text-align: center;
}

.about-page-story-description p+p {
  margin-top: 12px;
}

.about-page-mission-card {
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  filter: drop-shadow(2.5px 4.33px 27px rgba(125, 98, 67, 0.75));
}

.about-page-mission-inner {
  min-height: 720px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-page-mission-title {
  margin-bottom: 22px;
  font-family: var(--font-old-standard);
  font-size: clamp(30px, 2.6vw, 46px);
  line-height: 1.05;
  font-weight: 700;
  color: #8e5b1f;
}

.about-page-mission-description {
  max-width: 55%;
}

.about-page-mission-description h2 {
  font-size: clamp(24px, 2.3vw, 40px);
  line-height: clamp(24px, 2.3vw, 40px);
  color: var(--d-brown);
  font-weight: 700;
  font-family: var(--font-old-standard);
  text-align: center;
  margin-bottom: 20px;
}

.about-page-mission-description h3 {
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: clamp(24px, 2.5vw, 36px);
  color: var(--black-2);
  font-weight: bold;
  font-family: var(--font-metropolis);
  text-align: center;
  margin-bottom: 20px;
}

.about-page-mission-description p,
.about-page-mission-description li {
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: clamp(25px, 2vw, 30px);
  font-weight: 400;
  color: #333333;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-page-mission-description p+p {
  margin-top: 14px;
}

.wearable-history-section {
  position: relative;
  margin-top: 90px;
  padding: 40px 0 10px;
  isolation: isolate;
}

.wearable-history-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--wearable-history-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.wearable-history-shell {
  position: relative;
  z-index: 1;
  max-width: 1230px;
  margin: 0 auto;
}

.wearable-history-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 44px;
  margin-bottom: 34px;
}


.wearable-history-title {
  margin-bottom: 28px;
  font-family: var(--font-old-standard);
  font-size: clamp(32px, 3.5vw, 80px);
  line-height: clamp(35px, 3.5vw, 80px);
  font-weight: 700;
  color: #121210;
  text-align: left;
}

.wearable-history-intro p {
  font-family: var(--font-old-standard);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: clamp(34px, 2.9vw, 48px);
  font-weight: 700;
  color: var(--d-brown);
}

.wearable-history-intro p+p {
  margin-top: 10px;
}

.wearable-history-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 64px;
}

.wearable-history-visual {
  position: relative;
  min-height: 500px;
  margin-top: 40px;
}

.wearable-history-image {
  position: absolute;
  width: 279px;
  height: min(319px, 100%);
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(0px 13px 13.5px rgba(0, 1, 1, 0.55));
}

.wearable-history-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.wearable-history-image-primary {
  top: 200px;
  left: 8px;
  transform: rotate(-25deg);
  z-index: 4;
}

.wearable-history-image-secondary {
  top: -20px;
  left: 140px;
  bottom: auto;
  transform: rotate(20deg);
  z-index: 2;
}

.wearable-history-details p,
.wearable-history-details li {
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: clamp(28px, 2vw, 36px);
  font-weight: 400;
  color: #333333;
}

.wearable-history-details p+p {
  margin-top: 18px;
}

.about-card-section {
  max-width: 1100px;
  margin: 172px auto 0;
}

.about-card-item {
  height: 100%;
  min-height: 100%;
  padding: 30px 25px;
  border-radius: 20px;
  background-color: var(--about-card-bg);
  display: flex;
  flex-direction: column;
  max-width: 360px;
}

.about-card-title {
  margin-bottom: 14px;
  font-family: var(--about-card-font-family);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: clamp(25px, 2vw, 36px);
  font-weight: 700;
  color: var(--about-card-title-color);
}

.about-card-description {
  margin-top: auto;
}

.about-card-description p,
.about-card-description li {
  font-family: var(--about-card-font-family);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: clamp(24px, 1.9vw, 30px);
  font-weight: 400;
  color: var(--about-card-description-color);
}

.about-card-description p+p {
  margin-top: 10px;
}

.ob-404-section {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: linear-gradient(180deg, #152d47 0%, #152d47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.ob-404-layer {
  position: absolute;
  inset: -8%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.15s linear;
}

.ob-404-layer-back {
  background-image: var(--ob404-bg);
}

/* .ob-404-layer-mid {
  background-image: linear-gradient(180deg, rgba(40, 31, 27, 0) 0%, rgba(40, 31, 27, 0.45) 65%, rgba(40, 31, 27, 0.7) 100%);
}

.ob-404-layer-front {
  background-image: radial-gradient(ellipse at bottom center, rgba(16, 14, 13, 0.65) 0%, rgba(16, 14, 13, 0) 56%);
} */



.ob-404-section .container {
  position: relative;
  z-index: 2;
}

.ob-404-card {
  margin: 60px auto;
  max-width: 760px;
  padding: clamp(28px, 4.5vw, 58px);
  background: rgba(255, 253, 245, 0.9);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
  z-index: 10;
  border-radius: 10px;
}

.ob-404-code {
  margin: 0 0 10px;
  font-family: var(--font-old-standard);
  font-size: clamp(60px, 8vw, 120px);
  line-height: 1;
  color: var(--d-brown);
  font-weight: 700;
}

.ob-404-title {
  margin: 0 0 12px;
  font-family: var(--font-old-standard);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  color: var(--black-2);
  font-weight: 700;
}

.ob-404-text {
  margin: 0 auto;
  max-width: 580px;
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.6;
  color: var(--gray);
}

.ob-shop-archive-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ob-shop-archive-section .woocommerce-result-count,
.ob-shop-archive-section .woocommerce-ordering,
.ob-shop-archive-section .product .button,
.ob-shop-archive-section .product .added_to_cart {
  display: none !important;
}

.ob-shop-products-row {
  margin-top: 0;
  padding-left: 0;
  list-style: none;
  --bs-gutter-y: 40px;
}

.ob-shop-products-row>.product {
  margin: 0 !important;
  padding-bottom: 40px;
  float: none;
  text-align: center;
  display: flex;
  justify-content: center;
}

.ob-shop-product-card {
  height: 100%;
  width: 100%;
}

.ob-shop-product-card a {
  text-decoration: none;
}

.ob-shop-product-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ob-shop-product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 330 / 414;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 12px;
  background: rgba(0, 0, 0, 0.04);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ob-shop-product-image {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.woocommerce .ob-shop-product-card span.onsale {
  min-height: auto;
  min-width: auto;
  width: auto;
  height: auto;
  padding: 8px 12px;
  margin: 0;
  top: 12px;
  right: 12px;
  left: auto;
  bottom: auto;
  border-radius: 999px;
  line-height: 1;
  font-size: 14px;
  position: absolute;
  z-index: 2;
}

.ob-shop-product-size-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 70px 16px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.88) 95%, rgba(0, 0, 0, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1;
  box-sizing: border-box;
}

.ob-shop-product-media:hover .ob-shop-product-size-overlay,
.ob-shop-product-media:focus-visible .ob-shop-product-size-overlay {
  opacity: 1;
  transform: translateY(0);
}

.ob-shop-product-size-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
}

.ob-shop-product-size-item {
  min-width: 37px;
  height: 37px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-metropolis);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.ob-shop-product-size-item:hover {
  background: var(--d-brown);
  border-color: var(--d-brown);
  color: var(--white);
}

.ob-shop-product-size-item.is-disabled {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.45);
  cursor: not-allowed;
}

.ob-shop-product-size-item.is-disabled:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.45);
}

.tooltip.ob-stock-tooltip {
  opacity: 1 !important;
}

.tooltip.ob-stock-tooltip .tooltip-inner {
  min-width: 132px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--black-2);
  color: var(--white);
  font-family: var(--font-metropolis);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 10px 24px rgba(26, 31, 39, 0.18);
}

.tooltip.ob-stock-tooltip.bs-tooltip-top .tooltip-arrow::before,
.tooltip.ob-stock-tooltip.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  border-top-color: var(--black-2);
}

.tooltip.ob-stock-tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip.ob-stock-tooltip.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  border-bottom-color: var(--black-2);
}

.tooltip.ob-stock-tooltip.bs-tooltip-start .tooltip-arrow::before,
.tooltip.ob-stock-tooltip.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  border-left-color: var(--black-2);
}

.tooltip.ob-stock-tooltip.bs-tooltip-end .tooltip-arrow::before,
.tooltip.ob-stock-tooltip.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  border-right-color: var(--black-2);
}

.ob-shop-product-card .woocommerce-loop-product__title a,
.ob-shop-product-card h2 {
  margin: 0 0 6px;
  font-family: var(--font-metropolis);
  font-size: clamp(20px, 3vw, 24px);
  line-height: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--d-brown);
  text-transform: uppercase;
  text-align: center;
}

.ob-shop-product-card .price {
  display: block;
  margin: 0;
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 1vw, 18px);
  line-height: clamp(20px, 3vw, 30px);
  color: var(--black-2);
  font-weight: 700;
  text-align: center;
}

.ob-shop-product-card .price del,
.ob-shop-product-card .price ins {
  text-decoration: none;
}

.ob-shop-archive-section .woocommerce-pagination {
  margin-top: 44px;
  text-align: center;
}

.ob-shop-archive-section .woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.ob-shop-archive-section .woocommerce-pagination ul.page-numbers li {
  border: 0;
  float: none;
  overflow: visible;
}

.ob-shop-archive-section .woocommerce-pagination .page-numbers a,
.ob-shop-archive-section .woocommerce-pagination .page-numbers span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-metropolis);
  font-size: 13px;
  line-height: 1;
  color: var(--black-2);
  background: rgba(255, 255, 255, 0.75);
}

.ob-shop-archive-section .woocommerce-pagination .page-numbers.current,
.ob-shop-archive-section .woocommerce-pagination .page-numbers a:hover {
  background: var(--d-brown);
  color: var(--white);
}

.home-about-section {
  position: relative;
  padding: 120px 0 150px;
  background-color: #f4e7cf;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.home-about-section::before,
.home-about-section::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(115, 72, 24, 0.12) 0%, rgba(115, 72, 24, 0) 70%);
  pointer-events: none;
}

.home-about-section::before {
  left: -100px;
  bottom: -80px;
}

.home-about-section::after {
  right: -120px;
  top: 180px;
}

.home-about-heading {
  position: relative;
  z-index: 1;
  max-width: 1230px;
  margin: 0 auto 70px;
}

.home-about-title {
  margin-bottom: 24px;
  font-family: var(--font-old-standard);
  font-size: clamp(32px, 3.8vw, 80px);
  line-height: clamp(32px, 4vw, 80px);
  font-weight: 700;
  color: #121210;
  text-align: center;
}

.home-about-subtitle {
  max-width: 1230px;
  margin: 0 auto;
}

.home-about-subtitle p {
  font-family: var(--font-old-standard);
  font-size: clamp(20px, 2.3vw, 36px);
  line-height: clamp(30px, 3.1vw, 48px);
  font-weight: 700;
  color: var(--d-brown);
  text-align: center;
}

.home-about-row {
  position: relative;
  z-index: 1;
  row-gap: 30px;
  flex-wrap: nowrap;
}

.home-about-content-card {
  position: relative;
  z-index: 2;
  width: min(100%, 518px);
  margin: 0 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: visible;
  filter: drop-shadow(0 20px 38px rgba(64, 33, 8, 0.25));
  top: 0;
  display: flex;
  align-items: stretch;
}


.home-about-content-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 100%;
  padding: clamp(56px, 8vw, 88px) clamp(42px, 7vw, 72px) clamp(50px, 7vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-content-text {
  color: #2d2016;
}

.home-about-content-text h3 {
  margin-bottom: 10px;
  font-family: var(--font-metropolis);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: clamp(30px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--d-brown);
}

.home-about-content-text p,
.home-about-content-text li {
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: clamp(26px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--gray);
}

.home-about-content-text p+p {
  margin-top: 14px;
}

.home-about-content-text ul,
.home-about-content-text ol {
  padding-left: 18px;
}

.home-about-action {
  margin-top: 28px;
}

.home-about-btn {
  min-width: 150px;
  padding: 10px 24px !important;
}

.home-about-image-card {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  margin-left: -12%;
  border-radius: 40px;

}

.home-about-image-card img {
  display: block;
  width: 100%;
  border-radius: 40px;
  filter: drop-shadow(0 19px 17.5px rgba(0, 1, 1, 0.32));
}

.home-volume-container {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.home-volume-heading {
  max-width: 1230px;
  margin: 0 auto 48px;
}

.home-volume-title {
  margin-bottom: 50px;
  font-family: var(--font-old-standard);
  font-size: clamp(32px, 5vw, 80px);
  line-height: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: #121210;
  text-align: center;
}

.home-volume-subtitle h2 {
  font-family: var(--font-old-standard);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--d-brown);
  text-align: center;
  margin-bottom: 20px;
}

.home-volume-subtitle p {
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: clamp(28px, 2vw, 36px);
  font-weight: 400;
  color: #333333;
}

.home-volume-shell {
  position: relative;
}

.home-volume-row {
  position: relative;
}

.home-volume-nav-wrap {
  position: relative;
  z-index: 3;
  max-width: 290px;
  margin: 52px -52px 0 auto;
  padding: 0;
  filter: drop-shadow(0px 19px 17.5px rgba(0, 1, 1, 0.32));
}

.home-volume-nav {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(242, 220, 182, 0.95) 0%, rgba(233, 207, 163, 0.96) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  border: 2px solid #d4c6b5;
}

.home-volume-nav .nav-link {
  position: relative;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  border-bottom: 2px solid #d4c6b5;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-old-standard);
  font-size: clamp(18px, 1.9vw, 24px);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  text-align: left;
  color: #121210;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.home-volume-nav .nav-link:last-child {
  border-bottom: 0;
}

.home-volume-nav .nav-link.active,
.home-volume-nav .nav-link:hover,
.home-volume-nav .nav-link:focus-visible {
  background: #8e5b1f;
  color: var(--white);
}

.home-volume-nav .nav-link.active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--white);
  transform: translateY(-50%);
}

.home-volume-content {
  position: relative;
  z-index: 1;
  min-height: 0;
}

.home-volume-pane {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-volume-pane.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.home-volume-pane.home-volume-pane-animating .home-volume-content-card {
  animation: homeVolumePaneFadeIn 0.35s ease-in-out;
}

@keyframes homeVolumePaneFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.home-volume-content-card {
  min-height: 430px;
  padding: 50px 42px 50px 110px;
  border-radius: 20px;
  background-color: #1b130d;
  background-image: linear-gradient(90deg, rgb(17, 10, 6) 0%, rgba(17, 10, 6, 0.658) 100%), url('../images/home-volume-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: drop-shadow(0px 19px 17.5px rgba(0, 1, 1, 0.32));
}

.home-volume-copy {
  max-width: 100%;
}

.home-volume-content-title {
  margin: 18px 0;
  font-family: var(--font-old-standard);
  font-size: clamp(20px, 3vw, 24px);
  line-height: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--white);
}

.home-volume-content-subtitle {
  margin-bottom: 18px;
  font-family: var(--font-metropolis);
  font-size: clamp(28px, 2vw, 36px);
  line-height: clamp(30px, 2.5vw, 40px);
  font-weight: 600;
  color: #ffecd6;
}

.home-volume-content-description p {
  font-family: var(--font-metropolis);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: clamp(26px, 1.8vw, 30px);
  font-weight: 400;
  color: var(--white);
}

.home-volume-content-description p+p {
  margin-top: 12px;
}

.home-volume-content-description-inner {
  overflow: hidden;
  transition: max-height 0.55s ease-in-out;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 215, 168, 0.85) rgba(255, 255, 255, 0.12);
}

.home-volume-content-description-inner.is-tab-switching {
  transition: none;
}

.home-volume-content-description-inner.is-expanded {
  overflow-y: auto;
  padding-right: 12px;
}

.home-volume-content-description-body > *:last-child {
  margin-bottom: 0;
}

.home-volume-content-description-inner.is-expanded::-webkit-scrollbar {
  width: 6px;
}

.home-volume-content-description-inner.is-expanded::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.home-volume-content-description-inner.is-expanded::-webkit-scrollbar-thumb {
  background: rgba(240, 215, 168, 0.85);
  border-radius: 999px;
}

.home-volume-read-more-wrap {
  margin-top: 10px;
}

.home-volume-read-more-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-metropolis);
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #f0d7a8;
  text-decoration: underline;
}

.home-volume-image {
  max-width: 300px;
  margin: 0 0 0 auto;
  filter: drop-shadow(0px 19px 17.5px rgba(0, 1, 1, 0.32));
}

.home-volume-image img {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: var(--white);
}

.home-volume-audio {
  position: relative;
  margin-top: 28px;
  padding: 18px 24px 12px;
  border-radius: 16px;
  background: var(--d-brown);
  overflow: hidden;
}

.home-volume-audio::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 150px;
  background-image: url('../images/contact-tree.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.home-volume-audio.is-audio-tree-hidden::before {
  opacity: 0;
  transition-delay: 0s;
}

.home-volume-audio.is-audio-tree-returning::before {
  opacity: 0.22;
  transition-delay: 0s;
}

.home-volume-audio-player {
  --audio-progress: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.home-volume-audio-main {
  min-width: 0;
}

.home-volume-audio-top,
.home-volume-audio-bottom,
.home-volume-audio-meta {
  display: flex;
  align-items: center;
}

.home-volume-audio-top {
  gap: 14px;
  margin-bottom: 14px;
}

.home-volume-audio-play,
.home-volume-audio-mute {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8e5b1f;
  border: 2px solid var(--d-brown);
}

.home-volume-audio-play {
  padding-bottom: 7px !important;
  isolation: isolate;
}

.home-volume-audio-play::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.home-volume-audio-player.is-playing .home-volume-audio-play::after {
  animation: homeVolumeAudioRing 1.5s ease-out infinite;
}

.home-volume-audio-play-icon {
  display: block;
  color: #8e5b1f;
  font-size: 16px;
  line-height: 1;
}

.home-volume-audio-play-icon-play {
  margin-left: 3px;
}

.home-volume-audio-play-icon-pause {
  display: none;
}

.home-volume-audio-player.is-playing .home-volume-audio-play-icon-play {
  display: none;
}

.home-volume-audio-player.is-playing .home-volume-audio-play-icon-pause {
  display: block;
}

@keyframes homeVolumeAudioRing {
  0% {
    opacity: 0.8;
    transform: scale(0.95);
  }

  70% {
    opacity: 0;
    transform: scale(1.4);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

.home-volume-audio-label {
  font-family: var(--font-metropolis);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--white);
}

.home-volume-audio-bottom {
  gap: 14px;
}

.home-volume-audio-progress-wrap {
  --audio-tooltip-left: 0%;
  position: relative;
  flex: 1 1 auto;
}

.home-volume-audio-progress-wrap::after {
  content: attr(data-hover-time);
  position: absolute;
  left: var(--audio-tooltip-left);
  bottom: calc(100% + 10px);
  padding: 4px 8px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-family: var(--font-metropolis);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 3;
}

.home-volume-audio-progress-wrap.is-tooltip-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.home-volume-audio-time-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 18px;
  margin-top: 10px;
}

.home-volume-audio-progress {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: calc(100% - 14px);
  margin: 0 7px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) var(--audio-progress), rgba(255, 255, 255, 0.48) var(--audio-progress), rgba(255, 255, 255, 0.48) 100%);
  outline: none;
  touch-action: none;
  user-select: none;
}

.home-volume-audio-progress::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

.home-volume-audio-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background-color: var(--d-brown);
  cursor: pointer;
}

.home-volume-audio-progress::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #cebfae;
}

.home-volume-audio-progress::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--white);
}

.home-volume-audio-progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background-color: var(--d-brown);
  cursor: pointer;
}

.home-volume-audio-time {
  font-family: var(--font-metropolis);
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: var(--white);
}

.home-volume-audio-time-current {
  position: static;
  white-space: nowrap;
}

.home-volume-audio-meta {
  display: flex;
  margin-top: 10px;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  align-self: center;
  justify-self: center;
}

.home-volume-audio-volume {
  --audio-volume-progress: 100%;
  -webkit-appearance: none;
  appearance: none;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) var(--audio-volume-progress), rgba(255, 255, 255, 0.45) var(--audio-volume-progress), rgba(255, 255, 255, 0.45) 100%);
  outline: none;
}

.home-volume-audio-volume::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: transparent;
}

.home-volume-audio-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background-color: var(--d-brown);
  cursor: pointer;
}

.home-volume-audio-volume::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.home-volume-audio-volume::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--white);
}

.home-volume-audio-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background-color: var(--d-brown);
  cursor: pointer;
}

.home-volume-audio-mute-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  color: #8e5b1f;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 0px;
  transform: translate(-50%, -50%);
}

.home-volume-audio-mute-icon-high {
  display: block;
}

.home-volume-audio-player.is-muted .home-volume-audio-mute-icon,
.home-volume-audio-player.is-volume-low .home-volume-audio-mute-icon,
.home-volume-audio-player.is-volume-medium .home-volume-audio-mute-icon {
  display: none;
}

.home-volume-audio-player.is-volume-low .home-volume-audio-mute-icon-low {
  display: block;
}

.home-volume-audio-player.is-volume-medium .home-volume-audio-mute-icon-medium {
  display: block;
}

.home-volume-audio-player.is-muted .home-volume-audio-mute-icon-off {
  display: block;
}

.home-volume-audio-player:not(.is-muted):not(.is-volume-low):not(.is-volume-medium) .home-volume-audio-mute-icon {
  display: none;
}

.home-volume-audio-player:not(.is-muted):not(.is-volume-low):not(.is-volume-medium) .home-volume-audio-mute-icon-high {
  display: block;
}

.coming-soon-section {
  position: relative;
  padding: 110px 0;
  background-color: #10110d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.coming-soon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.coming-soon-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  min-height: 520px;
}

.coming-soon-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* min-height: 470px; */
}

.coming-soon-media-left {
  align-items: flex-start;
}

.coming-soon-media-right {
  align-items: flex-end;
}

.coming-soon-card {
  width: 200px;
  height: auto;
  filter: drop-shadow(0px 13px 13.5px rgba(0, 1, 1, 0.55));
}

.coming-soon-media-left .coming-soon-card:nth-child(1) {
  transform: translate(18px, 8px) rotate(-17deg);
  z-index: 2;
}

.coming-soon-media-left .coming-soon-card:nth-child(2) {
  transform: translate(88px, -34px) rotate(15deg);
  z-index: 3;
}

.coming-soon-media-right .coming-soon-card:nth-child(1) {
  transform: translate(-18px, 6px) rotate(16deg);
  z-index: 2;
}

.coming-soon-media-right .coming-soon-card:nth-child(2) {
  transform: translate(-102px, -36px) rotate(-14deg);
  z-index: 3;
}

.coming-soon-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.coming-soon-content {
  text-align: center;
}

.coming-soon-heading {
  margin-bottom: 28px;
  font-size: clamp(32px, 4vw, 80px);
  line-height: 1;
  color: #e0b981;
  font-weight: 700;
  font-family: var(--font-old-standard);
  text-align: center;
}

.coming-soon-subheading {
  font-size: clamp(32px, 6vw, 140px);
  line-height: clamp(32px, 6vw, 120px);
  color: #f8f5f1;
  font-weight: 700;
  font-family: var(--font-metropolis);
  text-align: center;
}

.hidden-historical-section {
  position: relative;
  background-color: #efe4cf;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: visible;
}

.hidden-historical-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 620px;
}

.hidden-historical-visual {
  position: relative;
  z-index: 1;
  flex: 0 1 1124px;
}

.hidden-historical-image-card {
  /* width: min(100%, 1124px); */
  width: auto;
  margin: 0 0 0 auto;
}

.hidden-historical-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.hidden-historical-panel {
  position: relative;
  z-index: 2;
  flex: 0 0 380px;
  margin-left: -180px;
  margin-top: 126px;
}

.hidden-historical-content-card {
  width: 100%;
  min-height: 520px;
  margin: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 16px 24px rgba(64, 33, 8, 0.28));
}

.hidden-historical-content-inner {
  width: 100%;
  min-height: 520px;
  padding:
    var(--hidden-historical-padding-top, clamp(46px, 6vw, 90px)) var(--hidden-historical-padding-x, clamp(30px, 4.4vw, 60px)) var(--hidden-historical-padding-bottom, clamp(38px, 5vw, 80px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hidden-historical-content-text h1 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: clamp(54px, 6vw, 120px);
  line-height: clamp(40px, 5vw, 72px);
  color: var(--d-brown);
  font-weight: 700;
  font-family: var(--font-old-standard);
}

.hidden-historical-content-text h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.2;
  color: #121210;
  font-weight: 700;
  font-family: var(--font-old-standard);
}

.hidden-historical-content-text p,
.hidden-historical-content-text li {
  font-size: clamp(16px, 2vw, 24px);
  line-height: clamp(26px, 2.8vw, 36px);
  color: #121210;
  font-weight: 500;
  font-family: var(--font-metropolis);
}

.hidden-historical-content-text p+p {
  margin-top: 12px;
}

.hidden-historical-action {
  margin-top: 24px;
}

.hidden-historical-btn {
  min-width: 150px;
  padding: 10px 24px !important;
}

.contact-page-section {
  position: relative;
  background-color: #efe4cf;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.contact-page-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(26vw, 340px);
  aspect-ratio: 1 / 1;
  background-image: url('../images/contact-tree.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
}

.contact-page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(28px, 5vw, 90px);
}

.contact-page-details {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-left: clamp(12px, 3vw, 60px);
}

.contact-page-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-page-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e0b981;
  color: #121210;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 46px;
}

.contact-page-text,
.contact-page-copy,
.contact-page-link {
  font-family: var(--font-metropolis);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: clamp(25px, 3vw, 30px);
  font-weight: 700;
  color: var(--d-brown);
}

.contact-page-link {
  color: var(--d-brown);
  transition: all 0.3s ease-in-out;
}

.contact-page-link:hover {
  color: #121210;
}

.contact-page-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-page-social-link {
  width: 36px;
  height: 36px;
  border: 2px solid #8e5b1f;
  border-radius: 50%;
  color: #8e5b1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-page-social-link:hover,
.contact-page-social-link:focus-visible {
  background-color: #8e5b1f;
  border-color: #8e5b1f;
  color: #fff;
}

.contact-page-form-card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0px 19px 17.5px rgba(0, 1, 1, 0.32));
}

.contact-page-form-inner {
  min-height: 560px;
  max-width: 90%;
  margin: 0 auto;
  padding:
    var(--contact-form-padding-top, 90px) var(--contact-form-padding-x, clamp(36px, 4vw, 46px)) var(--contact-form-padding-bottom, 60px);
}

.contact-page-form-title {
  margin-bottom: 26px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: clamp(20px, 2vw, 24px);
  color: #121210;
  font-weight: 700;
  font-family: var(--font-old-standard);
}

.contact-page-form-wrap .wpcf7 {
  width: 100%;
}

.custom-contact-form {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-metropolis);
}

.custom-contact-form .form-group {
  margin-bottom: 30px;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  background-color: rgba(101, 55, 27, 0.35);
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  font-family: var(--font-metropolis);
  caret-color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"] {
  height: 52px;
  border-radius: 26px;
  background-color: rgba(101, 55, 27, 0.35);
  border: 1px solid #ffffff;
  color: #ffffff;
  padding-left: 24px;
  padding-right: 24px;
}

.custom-contact-form textarea {
  background-color: rgba(101, 55, 27, 0.35);
  border-radius: 25px;
  max-height: 100px;
  resize: none;
  color: #ffffff;
}

.custom-contact-form input[type="text"]:-webkit-autofill,
.custom-contact-form input[type="text"]:-webkit-autofill:hover,
.custom-contact-form input[type="text"]:-webkit-autofill:focus,
.custom-contact-form input[type="email"]:-webkit-autofill,
.custom-contact-form input[type="email"]:-webkit-autofill:hover,
.custom-contact-form input[type="email"]:-webkit-autofill:focus,
.custom-contact-form input[type="tel"]:-webkit-autofill,
.custom-contact-form input[type="tel"]:-webkit-autofill:hover,
.custom-contact-form input[type="tel"]:-webkit-autofill:focus,
.custom-contact-form textarea:-webkit-autofill,
.custom-contact-form textarea:-webkit-autofill:hover,
.custom-contact-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 30px;
  font-family: var(--font-metropolis);
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  border-color: #f9f2e5;
  box-shadow: 0 0 0 1px rgba(249, 242, 229, 0.7), 0 0 0 5px rgba(115, 72, 24, 0.28);
  background-color: rgba(115, 72, 24, 0.82);
}

.custom-contact-form .submit-wrap {
  margin-top: 25px;
  text-align: left;
}

.custom-contact-form input[type="submit"] {
  width: 200px;
  height: 51px;
  background-color: var(--d-brown);
  color: #f9f2e5;
  border: none;
  padding: 0 24px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Metropolis";
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-contact-form input[type="submit"]:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

.custom-contact-form input[type="submit"]:focus,
.custom-contact-form input[type="submit"]:focus-visible {
  background-color: var(--d-brown);
  color: #f9f2e5;
  box-shadow: 0 0 0 2px rgba(115, 72, 24, 0.35);
}

.custom-contact-form input[type="submit"]:active {
  transform: translateY(0);
}

.wpcf7-response-output {
  display: block;
  background: #e6ffed;
  border: 1px solid #34d399 !important;
  color: #065f46;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 20px 0;
  line-height: 1.6;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease forwards;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid red !important;
  color: red;
  background: #fffffe;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpcf7-spinner {
  display: block !important;
  margin: 10px auto 0 auto !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  float: none !important;
  transform: none !important;
}

.open-book-footer {
  position: relative;
  color: var(--white);
  background-color: var(--black-2);
}

.footer-main {
  position: relative;
  min-height: 452px;
  padding: 70px 0 42px;
  display: flex;
  align-items: center;
  background-color: rgba(18, 17, 16, 0.92);
  background-image:
    linear-gradient(90deg, rgba(18, 17, 16, 0.95) 0%, rgba(18, 17, 16, 0.90) 38%, rgba(18, 17, 16, 0.86) 100%),
    var(--footer-bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-row {
  position: relative;
  row-gap: 36px;
}

.footer-branding-col,
.footer-contact-wrap {
  display: flex;
}

.footer-links-wrap {
  display: flex;
  justify-content: center;
}

.footer-branding,
.footer-contact-col {
  width: 100%;
}

.footer-links-col {
  width: 100%;
  max-width: 180px;
}




@media (min-width: 992px) {
  .footer-links-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-wrap {
    margin-left: auto;
  }
}

.footer-logo-wrap img {
  display: block;
  width: 160px;
  height: auto;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  margin-left: 20px;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 17px;
  border-radius: 50%;
  transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social-link.footer-social-facebook:hover,
.footer-social-link.footer-social-facebook:focus-visible {
  background: linear-gradient(135deg, #1877f2, #0d5ed7);
}

.footer-social-link.footer-social-instagram:hover,
.footer-social-link.footer-social-instagram:focus-visible {
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 42%, #d6249f 68%, #285aeb 100%);
}

.footer-social-link.footer-social-youtube:hover,
.footer-social-link.footer-social-youtube:focus-visible {
  background: linear-gradient(135deg, #ff4e45, #c90f02);
}

.footer-title {
  margin-bottom: 24px;
  font-family: var(--font-old-standard);
  font-size: 36px;
  line-height: 24px;
  font-weight: 700;
  color: #e0b981;
}

.footer-nav .footer-menu {
  list-style: none;
  margin-left: 3px;
}

.footer-nav .footer-menu li+li {
  margin-top: 12px;
}

.footer-nav .footer-menu a,
.footer-contact-link,
.footer-contact-text {
  font-family: var(--font-metropolis);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #fffffe;
}

.footer-nav .footer-menu a:hover,
.footer-nav .footer-menu a:focus-visible,
.footer-nav .footer-menu .current-menu-item>a,
.footer-nav .footer-menu .current-menu-ancestor>a,
.footer-nav .footer-menu .current-menu-parent>a,
.footer-nav .footer-menu .current_page_parent>a,
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: var(--footer-bottom-bg);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-contact-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--footer-bottom-bg);
  color: var(--black-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-top: 2px;
}

.footer-copyright {
  padding: 16px 0;
  background: var(--footer-bottom-bg);
}

.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copyright p {
  margin-bottom: 0;
  text-align: left;
  font-family: var(--font-metropolis);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 30px;
  font-weight: 400;
  color: #463e34;
}

.footer-credit {
  text-align: right;
}

.web-design {
  position: relative;
  color: #8e5b1f;
  font-weight: 600;
  transition: color 0.25s ease;
}

.web-design::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.web-design:hover,
.web-design:focus-visible {
  color: #000000;
}

.web-design:hover::after,
.web-design:focus-visible::after {
  transform: scaleX(1);
}

/* Scroll to top button */
#scrollToTop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--scrolltop-bg-start), var(--scrolltop-bg-end));
  color: var(--scrolltop-icon);
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTop .arrow {
  position: relative;
  z-index: 2;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke: var(--scrolltop-ring);
  stroke-linecap: round;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 0.2s linear;
  opacity: 1;
}

#scrollToTop:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--scrolltop-bg-hover-start), var(--scrolltop-bg-hover-end));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 0 4px rgba(255, 255, 255, 0.08);
}

.single-product .site-main {
  background:
    radial-gradient(circle at top center, rgba(142, 91, 31, 0.06), transparent 48%),
    #f4eadc;
}

.single-product .woocommerce-notices-wrapper {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 28px 20px 0;
}

.ob-single-product-section {
  padding: clamp(44px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
}

.ob-single-product-top {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 86px);
}

.ob-single-product-gallery {
  position: relative;
  min-width: 0;
}

.ob-single-product-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 34px rgba(90, 54, 17, 0.12);
}

.ob-single-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 330 / 414;
  object-fit: cover;
}

.ob-single-product-gallery.has-swiper .ob-single-product-swiper {
  overflow: hidden;
  border-radius: 22px;
}

.ob-single-product-gallery-nav {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--d-brown);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.96);
  color: var(--d-brown);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(71, 41, 13, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.ob-single-product-gallery-nav:hover {
  background: var(--d-brown);
  color: var(--white-2);
}

.ob-single-product-gallery-prev {
  left: -20px;
}

.ob-single-product-gallery-next {
  right: -20px;
}

.ob-single-product-gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ob-single-product-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(114, 64, 31, 0.24);
  opacity: 1;
}

.ob-single-product-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--d-brown);
}

.ob-single-product-summary {
  padding-top: clamp(0px, 1vw, 10px);
}

.ob-single-product-code {
  margin-bottom: 12px;
  font-family: var(--font-old-standard);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.98;
  font-weight: 700;
  color: var(--d-brown);
  text-transform: uppercase;
}

.ob-single-product-title {
  margin: 0 0 16px;
  font-family: var(--font-metropolis);
  font-size: clamp(20px, 2.3vw, 36px);
  line-height: clamp(20px, 3.1vw, 30px);
  font-weight: 700;
  color: var(--d-brown);
}

.ob-single-product-price {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: #201c19;
  color: #ffffff;
  font-family: "Metropolis";
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  min-width: 90px;
  min-height: 35px;
  transform: translateY(0) scale(1);
  transform-origin: center;
}

.ob-single-product-price.is-price-updating {
  animation: obSingleProductPriceSwap 0.4s ease;
}

.ob-single-product-price .woocommerce-Price-amount,
.ob-single-product-price .woocommerce-Price-currencySymbol,
.ob-single-product-price .price,
.ob-single-product-price .price bdi,
.ob-single-product-price .price ins {
  color: inherit;
  font: inherit;
}

.ob-single-product-price .price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ob-single-product-price del,
.ob-single-product-price .price del,
.ob-single-product-price .screen-reader-text+.screen-reader-text {
  display: none;
}

.ob-single-product-price del,
.ob-single-product-price ins {
  color: inherit;
  text-decoration: none;
}

@keyframes obSingleProductPriceSwap {
  0% {
    opacity: 0.4;
    transform: translateY(6px) scale(0.94);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  55% {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 18px rgba(124, 82, 27, 0.22);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

.ob-single-product-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 22px;
  background: rgba(114, 64, 31, 0.18);
}

.ob-single-product-description p {
  font-family: var(--font-metropolis);
  font-size: clamp(17px, 1.8vw, 18px);
  line-height: 1.7;
  font-weight: 400;
  color: rgba(18, 17, 16, 0.78);
}

.ob-single-product-description p+p {
  margin-top: 10px;
}

.ob-single-product-form {
  margin-top: 24px;
}

.ob-single-product-size-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.ob-single-product-size-label {
  font-family: var(--font-metropolis);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--d-brown);
}

.ob-single-product-size-picker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ob-single-product-size-button {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #121210;
  border-radius: 5px;
  background-color: rgba(214, 203, 191, 0);
  color: #65564a;
  font-family: var(--font-metropolis);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ob-single-product-size-button.is-active,
.ob-single-product-size-button:hover:not(:disabled) {
  border-color: var(--d-brown);
  background: var(--d-brown);
  color: var(--white);
}

.ob-single-product-size-button.is-disabled,
.ob-single-product-size-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ob-single-product-size-button.is-disabled {
  display: inline-flex;
}

.ob-single-product-form form.cart {
  margin: 0;
}

.ob-single-product-form .variations {
  margin: 0 0 20px;
}

.ob-single-product-form .variations td,
.ob-single-product-form .variations th {
  padding: 0 0 12px;
  border: 0;
}

.ob-single-product-form .variations label {
  margin: 0;
  font-family: var(--font-metropolis);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--d-brown);
}

.ob-single-product-form .variations select {
  min-width: 220px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(114, 64, 31, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #38291e;
  font-family: var(--font-metropolis);
  font-size: 15px;
  font-weight: 500;
}

.ob-single-product-hidden-row {
  display: none !important;
}

.ob-single-product-form .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: var(--d-brown);
  font-family: var(--font-metropolis);
  font-size: 14px;
  font-weight: 600;
}

.ob-single-product-form .single_variation_wrap,
.ob-single-product-form .woocommerce-variation-add-to-cart,
.ob-single-product-form .cart:not(.variations_form) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ob-single-product-form .single_variation {
  flex: 0 0 100%;
}

.ob-single-product-form .woocommerce-variation-price {
  display: none;
}

.ob-single-product-form .woocommerce-variation-price .price,
.ob-single-product-form .woocommerce-variation-availability {
  font-family: var(--font-metropolis);
  color: #38291e;
}

.ob-single-product-form .quantity {
  display: inline-flex;
  align-items: center;
  min-width: 124px;
  height: 52px;
  padding: 0 10px;
  border: 1px solid rgba(114, 64, 31, 0.38);
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.9);
}

.ob-single-product-form .quantity .qty {
  width: 44px;
  min-width: 44px;
  border: 0;
  background: transparent;
  color: #5d4630;
  font-family: var(--font-metropolis);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.ob-single-product-form .quantity .qty::-webkit-outer-spin-button,
.ob-single-product-form .quantity .qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.ob-single-product-form .qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #7f6244;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  border: none !important;
  flex: 0 0 30px;
}

.ob-single-product-form .qty-btn:hover {
  background: rgba(114, 64, 31, 0.12) !important;
  color: var(--d-brown);
  transform: scale(1.06);
}

.ob-single-product-form .qty-btn:focus-visible {
  background: rgba(114, 64, 31, 0.12) !important;
  color: var(--d-brown);
  box-shadow: 0 0 0 2px rgba(114, 64, 31, 0.18);
}

.ob-single-product-form .single_add_to_cart_button {
  min-width: 190px;
  min-height: 54px;
  padding: 14px 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #7c521b 0%, #9a6927 100%) !important;
  color: var(--white) !important;
  font-family: var(--font-metropolis);
  font-size: 18px !important;
  line-height: 1;
  font-weight: 700 !important;
  box-shadow: 0 12px 24px rgba(124, 82, 27, 0.18);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 1 !important;
}

.ob-single-product-form .single_add_to_cart_button .ob-single-product-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ob-single-product-form .single_add_to_cart_button .ob-single-product-cart-icon i {
  font-size: 18px;
  line-height: 1;
}

.ob-single-product-form .single_add_to_cart_button .ob-single-product-cart-label {
  display: inline-block;
}

.ob-single-product-form .single_add_to_cart_button:hover {
  background: linear-gradient(90deg, #6e4515 0%, #875b1f 100%) !important;
}

.ob-single-product-form .single_add_to_cart_button.disabled,
.ob-single-product-form .single_add_to_cart_button:disabled {
  cursor: not-allowed;
  opacity: 0.65 !important;
}

.ob-single-story-card {
  margin-top: clamp(44px, 7vw, 72px);
  padding: clamp(28px, 4vw, 42px);
  border-radius: 19px;
  background: #e1d7cc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.ob-single-story-eyebrow {
  margin-bottom: 10px;
  font-family: var(--font-old-standard);
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--black-2);
  text-transform: uppercase;
}

.ob-single-story-title {
  margin-bottom: 16px;
  font-family: var(--font-metropolis);
  font-size: clamp(19px, 2.5vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--d-brown);
}

.ob-single-story-description p,
.ob-single-story-description li {
  font-family: var(--font-metropolis);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.62;
  font-weight: 400;
  color: #333333;
}

.ob-single-story-description p+p {
  margin-top: 10px;
}

.ob-single-story-audio {
  margin-top: 28px;
  background: #85551c;
}

.ob-single-story-audio .home-volume-audio-label,
.ob-single-story-audio .home-volume-audio-time {
  color: var(--white);
}

.ob-single-story-audio .home-volume-audio-play,
.ob-single-story-audio .home-volume-audio-mute {
  background: rgba(255, 255, 255, 0.92);
}

.ob-single-story-audio .home-volume-audio-progress::-webkit-slider-runnable-track,
.ob-single-story-audio .home-volume-audio-volume::-webkit-slider-runnable-track {
  background: rgba(255, 255, 255, 0.4);
}

.ob-single-story-audio .home-volume-audio-progress::-moz-range-track,
.ob-single-story-audio .home-volume-audio-volume::-moz-range-track {
  background: rgba(255, 255, 255, 0.4);
}

.ob-single-story-audio .home-volume-audio-progress-wrap::after {
  background: #38291e;
}

@media (max-width: 1199.98px) {
  .ob-single-product-gallery-prev {
    left: 14px;
  }

  .ob-single-product-gallery-next {
    right: 14px;
  }
}

@media (max-width: 991.98px) {
  .ob-single-product-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ob-single-product-gallery {
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .ob-single-product-summary {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .ob-single-product-section {
    padding: 34px 0 58px;
  }

  .ob-single-product-code {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .ob-single-product-title {
    font-size: 30px;
  }

  .ob-single-product-price {
    font-size: 18px;
  }

  .ob-single-product-form .single_variation_wrap,
  .ob-single-product-form .woocommerce-variation-add-to-cart,
  .ob-single-product-form .cart:not(.variations_form) {
    gap: 14px;
  }

  .ob-single-product-form .quantity {
    min-width: 100px;
    height: 50px;
  }

  .ob-single-product-form .single_add_to_cart_button {
    min-width: 170px;
    min-height: 50px;
    font-size: 18px !important;
  }

  .ob-single-story-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 575.98px) {
  .single-product .woocommerce-notices-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ob-single-product-size-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ob-single-product-gallery-nav {
    width: 38px;
    height: 38px;
  }

  .ob-single-product-form .variations select {
    min-width: 100%;
    width: 100%;
  }

  .ob-single-product-form .single_variation_wrap,
  .ob-single-product-form .woocommerce-variation-add-to-cart,
  .ob-single-product-form .cart:not(.variations_form) {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ob-single-product-form .quantity {
    width: auto;
    min-width: 132px;
    margin: 0;
    justify-content: center;
  }

  .ob-single-product-form .single_add_to_cart_button {
    width: auto;
    min-width: 190px;
  }

}

.ob-cart-page-section {
  background-color: #f4eadc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ob-cart-page-section .woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.ob-cart-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, calc(100% - 472px)) 450px;
  align-items: start;
  gap: 22px;
}

.ob-cart-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 234, 220, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ob-cart-loader .loader {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
}

.ob-cart-loader .loader::before,
.ob-cart-loader .loader::after {
  content: "";
  grid-area: 1 / 1;
  background: var(--d-brown);
  clip-path: polygon(0 0, 101% 0, 0 100%);
  animation: ob-cart-loader-triangle 2s infinite;
}

.ob-cart-loader .loader::after {
  --s: -1, -1;
}

@keyframes ob-cart-loader-triangle {

  0%,
  10% {
    transform: scale(var(--s, 1)) translate(0, 0) rotate(0deg);
  }

  33% {
    transform: scale(var(--s, 1)) translate(20px, -20px) rotate(0deg);
  }

  66% {
    transform: scale(var(--s, 1)) translate(20px, -20px) rotate(180deg);
  }

  90%,
  100% {
    transform: scale(var(--s, 1)) translate(0, 0) rotate(180deg);
  }
}

.ob-cart-table-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(114, 64, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(64, 33, 8, 0.08);
}

.ob-cart-table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.ob-cart-table thead th {
  padding: 15px 20px;
  border: 0;
  background: var(--d-brown);
  color: var(--white) !important;
  font-family: var(--font-metropolis) !important;
  font-size: clamp(15px, 1.5vw, 20px) !important;
  line-height: 1.2;
  font-weight: 700 !important;
  text-align: left;

}

.ob-cart-table thead th:first-child {
  border-top-left-radius: 10px;
}

.ob-cart-table thead th:last-child {
  border-top-right-radius: 10px;
}

.ob-cart-table tbody td {
  padding: 16px 20px;
  border: 0;
  border-bottom: 1px solid rgba(114, 64, 31, 0.1);
  background: transparent;
  vertical-align: middle;
}

.ob-cart-table tbody tr:last-child td {
  border-bottom: 0;
}

.ob-cart-table .product-thumbnail {
  width: 156px;
}

.ob-cart-product-thumb {
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3ece1;
}

.ob-cart-product-thumb img {
  display: block;
  width: 100% !important;
  height: 108px;
  object-fit: cover;
}

.ob-cart-table .product-name a,
.ob-cart-table .product-name {
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--d-brown);
  text-decoration: none;
}

.ob-cart-table .product-name a:hover {
  color: var(--d-brown);
}

.ob-cart-table .variation,
.ob-cart-table .wc-item-meta {
  margin-top: 6px;
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  color: var(--black-2);
}

.ob-cart-table .wc-item-meta p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.ob-cart-table .product-price,
.ob-cart-table .product-subtotal {
  white-space: nowrap;
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.3;
  font-weight: 500;
  color: var(--black-2);
}

.ob-cart-form .quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 50px;
  padding: 0 7px;
  background-color: rgba(0, 31, 62, 0);
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ob-cart-form .quantity .qty {
  width: 34px;
  min-width: 34px;
  border: 0;
  background: transparent;
  color: #434e64;
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1;
  font-weight: 500;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.ob-cart-form .quantity .qty::-webkit-outer-spin-button,
.ob-cart-form .quantity .qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.ob-cart-form .qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #b3aca4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  font-size: 16px;
  border: none !important;
  background-color: transparent !important;
}

.ob-cart-form .qty-btn:hover {
  background: #f1ebe3;
  color: #7a5a3a;
}

.ob-cart-table .product-remove {
  width: 48px;
  text-align: center;
}

.ob-cart-table .product-remove .remove i {
  color: var(--d-brown) !important;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.ob-cart-table .product-remove .remove i:hover {
  color: #3c2a18 !important;
  background: transparent;
}

.ob-cart-remove-mobile {
  display: none;
}

.ob-cart-totals-card {
  width: 100%;
  max-width: 450px;
  padding: 22px 25px 30px;
  border-radius: 10px;
  background: var(--d-brown);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(64, 33, 8, 0.12);
}

.ob-cart-totals-title {
  margin-bottom: 20px;
  font-family: var(--font-metropolis);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
}

.ob-cart-total-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  font-family: var(--font-metropolis);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.25;
  font-weight: 600;
  color: var(--white);
}

.ob-cart-total-row strong {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--white);
  text-align: right;
}

.ob-cart-shipping-copy {
  max-width: 250px;
}

.ob-cart-total-divider {
  height: 1px;
  margin: 18px -20px 14px;
  background: rgba(255, 255, 255, 0.12);
}

.ob-cart-total-row-grand {
  margin-bottom: 20px;
  font-size: clamp(16px, 2vw, 18px);
}

.ob-cart-total-row-grand strong {
  font-size: 18px;
  font-weight: 700;
}

.ob-cart-totals-card .btn-2 {
  width: 100%;
}


.ob-cart-empty-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 28px;
  text-align: center;
}

.ob-cart-empty-icon {
  margin-bottom: 22px;
  color: var(--d-brown);
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1;
}

.ob-cart-empty-card p {
  font-size: clamp(24px, 2.3vw, 40px);
  line-height: clamp(24px, 2.3vw, 40px);
  color: var(--d-brown);
  font-weight: 700;
  font-family: var(--font-old-standard);
  text-align: center;
  margin-bottom: 20px;
}

.ob-cart-shell.is-updating {
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.ob-cart-shell.is-updating .ob-cart-loader {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991.98px) {
  .ob-cart-shell {
    grid-template-columns: 1fr;
  }

  .ob-cart-totals-card {
    max-width: 420px;
  }
}

@media (max-width: 767.98px) {
  .woocommerce-page table.shop_table_responsive .ob-cart-table td::before {
    content: attr(data-title) !important;
    float: none !important;
    display: block !important;
  }

  .ob-cart-form .quantity {
    height: 35px;
  }

  .product-thumbnail::before {
    display: none !important;
  }

  .ob-cart-table thead {
    display: none;
  }

  .ob-cart-table,
  .ob-cart-table tbody {
    display: block;
    width: 100%;
  }

  .ob-cart-table tr {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    column-gap: 16px;
    width: 100%;
  }

  .ob-cart-table td {
    display: block;
    width: 100%;
  }

  .ob-cart-table tbody td {
    padding: 8px 16px;
    border-bottom: 0;
  }

  .ob-cart-table tbody tr {
    padding: 16px 0;
    border-bottom: 1px solid rgba(114, 64, 31, 0.1);
    align-items: start;
  }

  .ob-cart-table tbody tr:last-child {
    border-bottom: 0;
  }

  .ob-cart-table .product-thumbnail {
    display: block !important;
    grid-column: 1;
    grid-row: 1 / span 4;
    width: 80px;
    padding: 0 0 0 16px;
  }

  .ob-cart-table td[data-title] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .ob-cart-table td[data-title]::before {
    content: attr(data-title);
    font-family: var(--font-metropolis);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    color: #8b5a1a;
  }

  .ob-cart-table .product-name {
    display: block !important;
    padding-top: 4px;
    padding-bottom: 12px;
  }

  .ob-cart-table .product-name::before {
    display: none;
  }

  .ob-cart-table .product-name a,
  .ob-cart-table .product-name {
    font-size: 14px;
    line-height: 1.4;
  }

  .ob-cart-product-thumb {
    width: 80px;
  }

  .ob-cart-product-thumb img {
    height: 80px;
  }

  .ob-cart-table .product-name,
  .ob-cart-table .product-price,
  .ob-cart-table .product-quantity,
  .ob-cart-table .product-subtotal {
    grid-column: 2;
  }

  .ob-cart-table .product-price,
  .ob-cart-table .product-quantity,
  .ob-cart-table .product-subtotal {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .ob-cart-table .product-remove {
    display: none !important;
  }

  .ob-cart-table .product-subtotal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ob-cart-table .product-subtotal::before {
    margin-bottom: 0;
  }

  .ob-cart-table .product-subtotal>*:not(.ob-cart-remove-mobile) {
    align-self: flex-end;
  }

  .ob-cart-remove-mobile {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(114, 64, 31, 0.18);
  }

  .ob-cart-remove-mobile .ob-cart-remove-mobile-button {
    min-width: 128px;
    padding: 10px 20px !important;
    font-size: 14px !important;
    text-decoration: none;
  }
}

.ob-default-page-container {
  max-width: 1420px;
}

.ob-default-page article.page {
  padding: clamp(18px, 3vw, 34px) 0 clamp(18px, 5vw, 30px);
}

.ob-default-page .entry-header {
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.ob-default-page .entry-title,
.ob-default-page .entry-content h1,
.ob-default-page .entry-content h2,
.ob-default-page .entry-content h3,
.ob-default-page .entry-content h4,
.ob-default-page .entry-content h5,
.ob-default-page .entry-content h6 {
  margin: 0 0 clamp(14px, 2vw, 15px);
  font-family: var(--font-old-standard);
  font-weight: 700;
  color: var(--d-brown);
}

.ob-default-page .entry-title,
.ob-default-page .entry-content h1 {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: clamp(38px, 5vw, 66px);
}

.ob-default-page .entry-content h2 {
  font-size: clamp(25px, 3.8vw, 35px);
  line-height: clamp(32px, 4vw, 52px);
}

.ob-default-page .entry-content h3 {
  font-size: clamp(21px, 3vw, 30px);
  line-height: clamp(28px, 3.2vw, 42px);
}

.ob-default-page .entry-content h4 {
  font-size: clamp(18px, 2.5vw, 25px);
  line-height: clamp(25px, 2.8vw, 36px);
}

.ob-default-page .entry-content h5 {
  font-size: clamp(16px, 2vw, 20px);
  line-height: clamp(24px, 2.4vw, 30px);
}

.ob-default-page .entry-content h6 {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: clamp(22px, 2.1vw, 28px);
}

.ob-default-page .entry-content p,
.ob-default-page .entry-content li {
  font-family: var(--font-metropolis);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: clamp(26px, 2vw, 32px);
  font-weight: 400;
  color: var(--gray);
}

.ob-default-page .entry-content p+p,
.ob-default-page .entry-content ul+p,
.ob-default-page .entry-content ol+p,
.ob-default-page .entry-content p+ul,
.ob-default-page .entry-content p+ol,
.ob-default-page .entry-content ul+ul,
.ob-default-page .entry-content ol+ol,
.ob-default-page .entry-content h1+p,
.ob-default-page .entry-content h2+p,
.ob-default-page .entry-content h3+p,
.ob-default-page .entry-content h4+p,
.ob-default-page .entry-content h5+p,
.ob-default-page .entry-content h6+p {
  margin-top: clamp(10px, 1.6vw, 16px);
}

.ob-default-page .entry-content ul,
.ob-default-page .entry-content ol {
  margin: clamp(12px, 1.8vw, 18px) 0;
  padding-left: clamp(20px, 2.8vw, 30px);
}

.ob-default-page .entry-content ul {
  list-style: disc;
}

.ob-default-page .entry-content ol {
  list-style: decimal;
}

.ob-default-page .entry-content li+li {
  margin-top: 8px;
}

.ob-default-page .entry-content a {
  color: var(--d-brown);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ob-default-page .entry-content a:hover {
  color: var(--brown);
}

.wc-block-checkout__actions_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.wc-block-components-checkout-return-to-cart-button,
.wc-block-components-checkout-place-order-button {
  min-width: 190px;
  min-height: 48px;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-metropolis) !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  transition: all 0.3s ease-in-out !important;
}

.wc-block-components-checkout-return-to-cart-button {
  background: transparent !important;
  border-color: var(--d-brown) !important;
  color: var(--d-brown) !important;
}

.wc-block-components-checkout-return-to-cart-button:hover {
  background: var(--d-brown) !important;
  color: var(--white) !important;
}

.wc-block-components-checkout-return-to-cart-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wc-block-components-checkout-place-order-button.contained,
.wc-block-components-checkout-place-order-button {
  background: var(--d-brown) !important;
  border-color: var(--d-brown) !important;
  color: var(--white) !important;
}

.wc-block-components-checkout-place-order-button.contained:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: var(--brown) !important;
  border-color: var(--brown) !important;
  color: var(--white) !important;
}

.wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-account .woocommerce-form-login {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(114, 64, 31, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(232, 208, 163, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(64, 33, 8, 0.08);
  backdrop-filter: blur(8px);
}

.woocommerce-account .woocommerce-form-login .form-row {
  margin-bottom: 18px;
}

.woocommerce-account .woocommerce-form-login label {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-metropolis);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.4;
  font-weight: 600;
  color: var(--black-2);
}

.woocommerce-account .woocommerce-form-login .required {
  color: #b23c17;
}

.woocommerce-account .woocommerce-form-login .input-text {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid rgba(114, 64, 31, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  font-family: var(--font-metropolis);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--black-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.woocommerce-account .woocommerce-form-login .input-text:focus {
  border-color: var(--d-brown);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(115, 72, 24, 0.12);
}

.woocommerce-account .woocommerce-form-login .password-input {
  display: block;
  position: relative;
}

.woocommerce-account .woocommerce-form-login .password-input .input-text {
  padding-right: 56px;
}

.woocommerce-account .woocommerce-form-login .show-password-input {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  color: var(--d-brown);
  background: rgba(115, 72, 24, 0.08);
}

.woocommerce-account .woocommerce-form-login .show-password-input:hover {
  background: rgba(115, 72, 24, 0.14);
}

.woocommerce-account .woocommerce-form-login .show-password-input::after {
  color: currentColor;
}

.woocommerce-account .woocommerce-form-login .form-row:last-of-type {
  margin-bottom: 10px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form__input-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(114, 64, 31, 0.22);
  accent-color: var(--d-brown);
}

.woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__submit) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 160px;
  min-height: 50px;
  padding: 12px 26px !important;
  border: 2px solid var(--d-brown) !important;
  border-radius: 999px !important;
  background: var(--d-brown) !important;
  color: var(--white-2) !important;
  font-family: var(--font-metropolis) !important;
  font-size: clamp(14px, 1.7vw, 17px) !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit:hover {
  background: var(--black-2) !important;
  border-color: var(--black-2) !important;
  color: var(--white) !important;
}

.woocommerce-account .woocommerce-form-login .lost_password {
  margin-top: 10px;
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-form-login .lost_password a {
  font-family: var(--font-metropolis);
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 500;
  color: var(--d-brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-account .woocommerce-form-login .lost_password a:hover {
  color: var(--brown);
}

.woocommerce-account .woocommerce {
  display: flex;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid rgba(114, 64, 31, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(232, 208, 163, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(64, 33, 8, 0.08);
  backdrop-filter: blur(8px);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 18px;
  position: sticky;
  top: 110px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li + li {
  margin-top: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: var(--font-metropolis);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.25;
  font-weight: 600;
  color: var(--black-2);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  background: rgba(115, 72, 24, 0.08);
  color: var(--d-brown);
  transform: translateX(3px);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation-link a[aria-current="page"] {
  background: var(--d-brown);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(115, 72, 24, 0.22);
}

.woocommerce-account .woocommerce-MyAccount-content {
  padding: clamp(24px, 4vw, 40px);
}

.woocommerce-account .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content li,
.woocommerce-account .woocommerce-MyAccount-content address {
  font-family: var(--font-metropolis);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: clamp(26px, 2vw, 32px);
  font-weight: 400;
  color: var(--gray);
}

.woocommerce-account .woocommerce-MyAccount-content p + p,
.woocommerce-account .woocommerce-MyAccount-content ul + p,
.woocommerce-account .woocommerce-MyAccount-content ol + p {
  margin-top: 14px;
}

.woocommerce-account .woocommerce-MyAccount-content strong {
  color: var(--black-2);
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content a {
  color: var(--d-brown);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
  color: var(--brown);
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  margin: 0 0 18px;
  font-family: var(--font-old-standard);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--black-2);
}

.woocommerce-account .woocommerce table.shop_table {
  border: 1px solid rgba(114, 64, 31, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
}

.woocommerce-account .woocommerce table.shop_table th,
.woocommerce-account .woocommerce table.shop_table td {
  padding: 14px 16px;
  border-color: rgba(114, 64, 31, 0.1);
  font-family: var(--font-metropolis);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
}

.woocommerce-account .woocommerce table.shop_table th {
  color: var(--black-2);
  font-weight: 700;
}

.woocommerce-account .woocommerce .button,
.woocommerce-account .woocommerce .woocommerce-Button,
.woocommerce-account .woocommerce .woocommerce-button {
  min-height: 46px;
  padding: 10px 22px !important;
  border: 2px solid var(--d-brown) !important;
  border-radius: 999px !important;
  background: var(--d-brown) !important;
  color: var(--white-2) !important;
  font-family: var(--font-metropolis) !important;
  font-size: clamp(14px, 1.6vw, 16px) !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.woocommerce-account .woocommerce .button:hover,
.woocommerce-account .woocommerce .woocommerce-Button:hover,
.woocommerce-account .woocommerce .woocommerce-button:hover {
  background: var(--black-2) !important;
  border-color: var(--black-2) !important;
  color: var(--white) !important;
}

@media (max-width: 575.98px) {
  .wc-block-checkout__actions_row {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .wc-block-components-checkout-return-to-cart-button,
  .wc-block-components-checkout-place-order-button {
    width: 100%;
  }

  .woocommerce-account .woocommerce-form-login {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__submit) {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
    width: 100%;
  }

  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
    top: auto;
    padding: 14px;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    border-radius: 16px;
  }

  .ob-cart-shell {
    gap: 18px;
  }

  .ob-cart-product-thumb {
    width: 80px;
  }

  .ob-cart-product-thumb img {
    height: 80px;
  }

  .ob-cart-table .product-price,
  .ob-cart-table .product-subtotal,
  .ob-cart-table .product-name a,
  .ob-cart-table .product-name {
    font-size: 15px;
  }

  .ob-cart-totals-card {
    padding: 18px 16px 18px;
  }

  .ob-cart-total-divider {
    margin-left: -16px;
    margin-right: -16px;
  }
}
