:root {
  --marah-black: #070707;
  --marah-ink: #171717;
  --marah-muted: #72706d;
  --marah-line: #e3dfdc;
  --marah-soft: #f7f5f2;
  --marah-white: #ffffff;
  --marah-accent: #6f2634;
  --marah-shell: 1680px;
  --marah-header: 112px;
  --marah-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --marah-title-font: "Prata", Garamond, "Times New Roman", serif;
  --marah-body-font: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body.marah-luxury {
  margin: 0;
  color: var(--marah-ink);
  background: var(--marah-white);
  font-family: var(--marah-body-font);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.marah-site-header,
.site-main,
.marah-site-footer {
  width: 100%;
  max-width: 100vw;
}

body.marah-luxury a {
  color: inherit;
  text-decoration: none;
}

body.marah-luxury img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.marah-luxury button,
body.marah-luxury input,
body.marah-luxury select,
body.marah-luxury textarea {
  font: inherit;
  letter-spacing: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  margin: 12px;
  color: var(--marah-white);
  background: var(--marah-black);
}

.marah-wide-shell,
.marah-page-shell {
  width: min(var(--marah-shell), calc(100% - 64px));
  margin-inline: auto;
}

.marah-page-shell {
  padding: 96px 0;
}

.marah-site-header {
  position: relative;
  top: 0;
  z-index: 1000;
  color: var(--marah-black);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  transition: transform 240ms var(--marah-ease), background 240ms var(--marah-ease);
}

.admin-bar .marah-site-header {
  top: auto;
}

.marah-header-placeholder {
  height: 0;
  pointer-events: none;
}

.marah-site-header.is-scroll-ready {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  transform: translateY(-110%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  will-change: transform;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-bar .marah-site-header.is-scroll-ready {
  top: 32px;
}

.marah-site-header.is-scroll-ready .marah-announcement {
  display: none;
}

.marah-site-header.is-scroll-ready.is-scroll-revealed {
  transform: translateY(0);
}

.marah-announcement {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 32px;
  padding: 0 32px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--marah-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.marah-announcement a {
  color: rgba(255, 255, 255, 0.86);
}

.marah-announcement a:hover,
.marah-header-left a:hover,
.marah-primary-nav a:hover,
.marah-footer-columns a:hover {
  color: var(--marah-accent);
}

.marah-header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 66px;
  padding: 6px 32px 0;
}

.marah-header-left,
.marah-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
}

.marah-header-actions {
  justify-content: flex-end;
}

.marah-branding {
  text-align: center;
}

.marah-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--marah-black);
  font-family: var(--marah-title-font);
  font-size: clamp(26px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.custom-logo-link img {
  width: auto;
  max-width: min(176px, 38vw);
  max-height: 44px;
  object-fit: contain;
}

.marah-primary-nav {
  min-height: 26px;
  padding: 0 32px 10px;
}

.marah-primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 36px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.marah-primary-nav > ul > li {
  position: static;
  display: flex;
  align-items: stretch;
  min-height: 36px;
}

.marah-primary-nav > ul > li > a::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  content: "";
}

.marah-primary-nav > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding-inline: clamp(10px, 1.2vw, 21px);
  font-size: 12px;
  text-transform: uppercase;
}

.marah-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: auto;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms var(--marah-ease), transform 180ms var(--marah-ease);
}

.marah-primary-nav li:hover .marah-mega,
.marah-primary-nav li:focus-within .marah-mega,
.marah-primary-nav li.is-mega-open .marah-mega {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.marah-mega-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 490px;
  gap: 54px;
  width: min(var(--marah-shell), calc(100% - 64px));
  height: 438px;
  padding: 44px 0 48px;
  margin-inline: auto;
  background: var(--marah-white);
}

.marah-mega::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--marah-white);
  border-bottom: 1px solid var(--marah-line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
}

.marah-mega::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 1px;
  content: "";
  pointer-events: none;
  background: var(--marah-line);
}

.marah-mega-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 42px;
}

.marah-mega-column h3,
.marah-footer-columns h3,
.marah-filter-title {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.marah-mega-column ul,
.marah-footer-columns ul,
.marah-filter-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.marah-mega-column li + li,
.marah-footer-columns li + li,
.marah-filter-widget li + li {
  margin-top: 10px;
}

.marah-mega-column a,
.marah-footer-columns a,
.marah-filter-widget a {
  font-size: 14px;
  color: var(--marah-muted);
}

.marah-mega-column.is-shop-categories h3 {
  font-weight: 700;
}

.marah-mega-column a.is-view-all {
  color: var(--marah-ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.marah-mega-features {
  display: grid;
  grid-template-columns: repeat(2, 238px);
  gap: 14px;
  justify-content: end;
  align-self: start;
  height: 346px;
}

.marah-mega-features.has-many {
  grid-template-columns: repeat(2, 238px);
}

.marah-mega-features.has-single {
  grid-template-columns: 238px;
}

.marah-mega-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.marah-mega-feature::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
}

.marah-mega-feature span {
  position: relative;
  z-index: 1;
  padding: 22px;
  color: var(--marah-white);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.marah-icon-button {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.marah-icon-button span,
.marah-filter-head button::before,
.marah-filter-head button::after {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  content: "";
  background: currentColor;
}

.marah-icon-button span:first-child {
  top: 15px;
}

.marah-icon-button span:last-child {
  top: 23px;
}

.marah-mobile-panel .marah-icon-button span:first-child,
.marah-filter-head button::before {
  top: 18px;
  transform: rotate(45deg);
}

.marah-mobile-panel .marah-icon-button span:last-child,
.marah-filter-head button::after {
  top: 18px;
  transform: rotate(-45deg);
}

.marah-action {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.marah-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.marah-action-cart .marah-cart-count {
  position: absolute;
  top: -8px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  color: var(--marah-white);
  background: var(--marah-black);
  border-radius: 999px;
  font-size: 10px;
}

.marah-mobile-panel {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1200;
  width: min(420px, 92vw);
  padding: 22px;
  background: var(--marah-white);
  border-right: 1px solid var(--marah-line);
  transform: translateX(-100%);
  transition: transform 260ms var(--marah-ease);
}

.marah-mobile-open .marah-mobile-panel {
  transform: translateX(0);
}

.marah-mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--marah-line);
}

.marah-mobile-panel-head .custom-logo-link {
  min-height: 42px;
}

.marah-mobile-panel-head .custom-logo-link img {
  max-width: 160px;
  max-height: 42px;
}

.marah-mobile-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--marah-line);
}

.marah-mobile-tabs button {
  min-height: 42px;
  padding: 0 12px;
  color: var(--marah-muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--marah-line);
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}

.marah-mobile-tabs button:last-child {
  border-right: 0;
}

.marah-mobile-tabs button[aria-selected="true"] {
  color: var(--marah-white);
  background: var(--marah-black);
}

.marah-mobile-panel nav {
  display: grid;
  gap: 0;
  padding-top: 18px;
}

.marah-mobile-tab-panel[hidden] {
  display: none;
}

.marah-mobile-panel nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--marah-line);
  font-size: 17px;
  text-transform: uppercase;
}

.marah-search-panel {
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
  visibility: hidden;
}

.marah-search-panel[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.marah-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity 220ms var(--marah-ease);
}

.marah-search-panel[aria-hidden="false"] .marah-search-backdrop {
  opacity: 1;
}

.marah-search-dialog {
  position: relative;
  width: 100%;
  padding: clamp(28px, 5vw, 72px) max(24px, calc((100vw - var(--marah-shell)) / 2));
  background: var(--marah-white);
  transform: translateY(-100%);
  transition: transform 260ms var(--marah-ease);
}

.marah-search-panel[aria-hidden="false"] .marah-search-dialog {
  transform: translateY(0);
}

.marah-search-close {
  position: absolute;
  top: 22px;
  right: 32px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.marah-search-close::before,
.marah-search-close::after {
  position: absolute;
  top: 18px;
  left: 8px;
  right: 8px;
  height: 1px;
  content: "";
  background: var(--marah-black);
}

.marah-search-close::before {
  transform: rotate(45deg);
}

.marah-search-close::after {
  transform: rotate(-45deg);
}

.marah-product-search-form {
  display: grid;
  gap: 22px;
  width: min(980px, calc(100vw - 48px));
  margin-inline: auto;
}

.marah-product-search-form label {
  font-family: var(--marah-title-font);
  font-size: clamp(34px, 4vw, 68px);
  line-height: 1.05;
}

.marah-product-search-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.marah-product-search-form input[type="search"] {
  width: 100%;
  height: 54px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--marah-black);
  border-radius: 0;
  font-size: clamp(18px, 2vw, 28px);
  outline: none;
}

.marah-product-search-form button {
  width: auto;
  min-width: 128px;
  min-height: 54px;
  padding: 0 28px;
  color: var(--marah-white);
  background: var(--marah-black);
  border: 1px solid var(--marah-black);
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}

.marah-home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: calc(100svh - var(--marah-header));
  overflow: hidden;
  isolation: isolate;
}

.marah-home-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.marah-home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
}

.marah-home-hero-content {
  width: min(720px, calc(100% - 48px));
  padding: 0 0 70px;
  color: #ffffff;
  text-align: center;
  animation: marahRise 760ms var(--marah-ease) both;
}

.marah-home-hero-content p {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.marah-home-hero-content h1 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: clamp(54px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.marah-home-hero-content a,
.marah-text-link,
.marah-section-heading a,
.marah-swiper-link,
.marah-shop-title-row > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--marah-black);
  background: transparent;
  border: 1px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms var(--marah-ease), background 180ms var(--marah-ease), border-color 180ms var(--marah-ease);
}

.marah-home-hero-content a:hover,
.marah-text-link:hover,
.marah-section-heading a:hover,
.marah-swiper-link:hover,
.marah-shop-title-row > a:hover {
  color: var(--marah-white);
  background: var(--marah-black);
  border-color: var(--marah-black);
}

.marah-home-hero-content a,
.marah-home-hero-content h1,
.marah-home-hero-content p {
  color: #ffffff;
}

.marah-home-hero-content a {
  border-color: #ffffff;
}

.marah-home-hero-content a:hover {
  color: var(--marah-black);
  background: #ffffff;
  border-color: #ffffff;
}

.marah-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marah-editorial-tile {
  position: relative;
  display: block;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  color: #ffffff;
  background: var(--marah-black);
}

.marah-editorial-tile picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.marah-editorial-tile img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: none;
  transition: none;
}

.marah-editorial-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.marah-editorial-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 0 30px;
  text-align: center;
}

.marah-editorial-tile strong {
  color: #ffffff;
  font-family: var(--marah-title-font);
  font-size: clamp(38px, 5vw, 82px);
  font-weight: 400;
  line-height: 1;
}

.marah-editorial-tile em {
  color: #ffffff;
  font-size: 13px;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.marah-latest-products,
.marah-world {
  padding: 90px 0;
}

.marah-latest-products {
  padding: 62px 0 78px;
  overflow: hidden;
}

.marah-swiper-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--marah-shell), calc(100% - 64px));
  margin: 0 auto 24px;
}

.marah-swiper-heading p {
  margin: 0 0 8px;
  color: var(--marah-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.marah-swiper-heading h2 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: clamp(32px, 3.8vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.marah-product-rail {
  padding-left: max(32px, calc((100vw - var(--marah-shell)) / 2));
  padding-right: 32px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-overflow-scrolling: touch;
}

.marah-product-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.marah-product-rail img {
  pointer-events: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.marah-product-rail a,
.marah-product-rail .marah-product-image,
.marah-product-rail .marah-product-image * {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.marah-product-rail::-webkit-scrollbar {
  display: none;
}

.woocommerce ul.products.marah-swiper-track,
ul.products.marah-swiper-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.woocommerce ul.products.marah-swiper-track li.product,
ul.products.marah-swiper-track li.product {
  flex: 0 0 clamp(250px, 18vw, 330px);
  scroll-snap-align: none;
}

.woocommerce ul.products.marah-swiper-track li.product:first-child,
ul.products.marah-swiper-track li.product:first-child {
  flex-basis: clamp(250px, 18vw, 330px);
}

.marah-product-rail .marah-product-image img {
  aspect-ratio: 3 / 4;
}

.marah-rail-progress {
  width: min(460px, calc(100vw - 64px));
  height: 1px;
  margin: 30px auto 0;
  background: var(--marah-line);
}

.marah-rail-progress span {
  display: block;
  width: 18%;
  height: 100%;
  background: var(--marah-black);
  transform-origin: left center;
  transition: width 160ms var(--marah-ease);
}

.marah-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.marah-section-heading h2,
.marah-shop-title-row h1,
.marah-entry h1,
.marah-empty-state h1,
.marah-product-summary h1 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.marah-section-heading h2 {
  font-size: clamp(34px, 4vw, 68px);
}

.marah-featured-products .woocommerce {
  width: 100%;
}

.marah-world {
  background: var(--marah-soft);
}

.marah-world-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.marah-world-grid a {
  display: grid;
  gap: 14px;
}

.marah-world-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.marah-world-grid span {
  font-size: 15px;
}

.marah-gallery-page {
  padding: 78px 0 110px;
}

.marah-gallery-page-head {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.marah-gallery-page-head p {
  margin: 0;
  color: var(--marah-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.marah-gallery-page-head h1 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: clamp(38px, 5vw, 82px);
  font-weight: 400;
  line-height: 1.04;
}

.marah-masonry-gallery {
  column-count: 4;
  column-gap: 18px;
}

.marah-masonry-gallery figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  background: var(--marah-soft);
}

.marah-masonry-gallery img {
  width: 100%;
  height: auto;
}

.marah-masonry-gallery a,
.marah-campaign-grid a {
  display: block;
  color: inherit;
  cursor: zoom-in;
}

body.marah-media-viewer-open {
  overflow: hidden;
}

.marah-media-viewer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 54px 82px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 1;
}

.marah-media-viewer[aria-hidden="true"] {
  display: none;
}

.marah-media-viewer img {
  display: block;
  max-width: min(100%, 1280px);
  max-height: calc(100svh - 108px);
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.marah-media-viewer-close,
.marah-media-viewer-nav {
  position: fixed;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--marah-white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.marah-media-viewer-close {
  top: 24px;
  right: 28px;
  width: 42px;
  height: 42px;
}

.marah-media-viewer-close::before,
.marah-media-viewer-close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.marah-media-viewer-close::before {
  transform: rotate(45deg);
}

.marah-media-viewer-close::after {
  transform: rotate(-45deg);
}

.marah-media-viewer-nav {
  top: 50%;
  width: 54px;
  height: 72px;
  transform: translateY(-50%);
}

.marah-media-viewer-nav::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.marah-media-viewer-nav.is-prev {
  left: 18px;
}

.marah-media-viewer-nav.is-prev::before {
  transform: rotate(-45deg);
}

.marah-media-viewer-nav.is-next {
  right: 18px;
}

.marah-media-viewer-nav.is-next::before {
  transform: rotate(135deg);
}

.marah-campaign-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--marah-header));
  padding: 96px 32px;
  color: var(--marah-white);
  background-position: center;
  background-size: cover;
}

.marah-campaign-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.16));
}

.marah-campaign-hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin-left: max(0px, calc((100vw - var(--marah-shell)) / 2));
}

.marah-campaign-hero-content p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.marah-campaign-hero-content h1 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: clamp(58px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.95;
}

.marah-campaign-hero-content div {
  max-width: 460px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
}

.marah-campaign-hero-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 44px;
  padding: 0 24px;
  margin-top: 26px;
  color: var(--marah-white);
  border: 1px solid rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.marah-campaign-story {
  padding-bottom: 48px;
}

.marah-campaign-editorial {
  padding-bottom: 104px;
}

.marah-campaign-grid {
  column-count: 3;
  column-gap: 18px;
}

.marah-campaign-grid figure {
  display: inline-block;
  width: 100%;
  margin: 0;
  margin-bottom: 18px;
  break-inside: avoid;
  background: var(--marah-soft);
}

.marah-campaign-grid figure.is-large {
  width: 100%;
}

.marah-campaign-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.marah-contact-page {
  padding: 82px 0 110px;
}

.marah-contact-head {
  display: grid;
  gap: 10px;
  margin-bottom: 42px;
}

.marah-contact-head p {
  margin: 0;
  color: var(--marah-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.marah-contact-head h1 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 400;
  line-height: 1.02;
}

.marah-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: start;
  border-top: 1px solid var(--marah-line);
  padding-top: 42px;
}

.marah-contact-primary h2,
.marah-contact-secondary h2 {
  margin: 0 0 24px;
  font-family: var(--marah-title-font);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
}

.marah-contact-primary ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--marah-line);
}

.marah-contact-primary li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--marah-line);
}

.marah-contact-primary span {
  color: var(--marah-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.marah-contact-primary a,
.marah-contact-primary strong {
  color: var(--marah-ink);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
}

.marah-contact-secondary {
  display: grid;
  gap: 42px;
}

.marah-contact-secondary p {
  margin: 0 0 22px;
  color: var(--marah-muted);
}

.marah-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.marah-contact-social a,
.marah-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--marah-black);
  font-size: 12px;
  text-transform: uppercase;
}

.marah-contact-social a:hover,
.marah-contact-button:hover {
  color: var(--marah-white);
  background: var(--marah-black);
}

.marah-shop-hero {
  padding: 46px 0 28px;
  border-bottom: 1px solid var(--marah-line);
}

.woocommerce-breadcrumb {
  margin-bottom: 22px;
  color: var(--marah-muted);
  font-size: 12px;
}

.woocommerce-breadcrumb a {
  color: var(--marah-muted);
}

.marah-shop-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.marah-shop-title-row h1 {
  font-size: clamp(42px, 5vw, 84px);
}

.marah-shop-title-row p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--marah-muted);
}

.marah-shop-title-row > a {
  flex: 0 0 auto;
  margin-top: 0;
}

.marah-shop-layout {
  padding: 24px 0 90px;
}

.marah-shop-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.marah-filter-toggle {
  justify-self: start;
  padding: 0;
  color: var(--marah-ink);
  background: transparent;
  border: 0;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
  cursor: pointer;
}

.marah-shop-count {
  color: var(--marah-muted);
  font-size: 12px;
}

.marah-shop-count p {
  margin: 0;
}

.marah-ordering {
  justify-self: end;
}

.marah-ordering select,
.woocommerce-ordering select {
  min-width: 176px;
  height: 38px;
  padding: 0 30px 0 12px;
  color: var(--marah-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--marah-line);
  border-radius: 0;
  font-size: 12px;
}

.woocommerce ul.products,
ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

.marah-product-card {
  position: relative;
}

.marah-product-link {
  display: grid;
  gap: 8px;
}

.marah-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--marah-soft);
}

.marah-product-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 620ms var(--marah-ease);
}

.marah-product-card:hover .marah-product-image img {
  transform: scale(1.035);
}

.marah-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 8px;
  color: var(--marah-white);
  background: var(--marah-accent);
  font-size: 11px;
  text-transform: uppercase;
}

.marah-product-info {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 0;
  padding-top: 2px;
  text-align: center;
}

.marah-product-category,
.marah-product-category a {
  color: var(--marah-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.marah-product-info strong {
  max-width: 92%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.marah-product-price,
.price {
  color: var(--marah-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.price del {
  margin-right: 8px;
  color: #73706c;
  font-weight: 300;
}

.price del,
.price del .amount,
.price del .woocommerce-Price-amount,
.price del .woocommerce-Price-currencySymbol,
.marah-product-price del,
.marah-product-price del .amount,
.marah-product-price del .woocommerce-Price-amount,
.marah-product-price del .woocommerce-Price-currencySymbol {
  color: #73706c;
  font-weight: 300;
}

.price ins {
  color: var(--marah-accent);
  font-weight: 800;
  text-decoration: none;
}

.price ins .amount,
.marah-product-price .amount {
  font-weight: 800;
  text-decoration: none;
}

.marah-product-price ins,
.marah-product-price ins .amount,
.marah-product-price .woocommerce-Price-amount {
  text-decoration: none;
}

.marah-card-actions {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 74px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms var(--marah-ease), transform 220ms var(--marah-ease);
}

.marah-product-card:hover .marah-card-actions,
.marah-product-card:focus-within .marah-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.button,
button.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 0 22px;
  color: var(--marah-white);
  background: var(--marah-black);
  border: 1px solid var(--marah-black);
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms var(--marah-ease), background 180ms var(--marah-ease);
}

.button:hover,
button.single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: var(--marah-black);
  background: var(--marah-white);
}

.woocommerce a.added_to_cart,
.woocommerce a.added_to_cart.wc-forward {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  color: var(--marah-black);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce-cart .cart .button,
.woocommerce-cart .cart input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 24px;
  color: var(--marah-white);
  background: var(--marah-black);
  border: 1px solid var(--marah-black);
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms var(--marah-ease), background 180ms var(--marah-ease), border-color 180ms var(--marah-ease);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
.woocommerce-cart .cart .button:hover,
.woocommerce-cart .cart input.button:hover {
  color: var(--marah-black);
  background: var(--marah-white);
  border-color: var(--marah-black);
}

.wc-block-cart__submit-container .wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.woocommerce .wc-block-cart__submit-container .wc-block-cart__submit-button,
.woocommerce .wc-block-components-checkout-place-order-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 0 24px !important;
  color: var(--marah-white) !important;
  background: var(--marah-black) !important;
  border: 1px solid var(--marah-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: color 180ms var(--marah-ease), background 180ms var(--marah-ease), border-color 180ms var(--marah-ease) !important;
}

.wc-block-cart__submit-container .wc-block-cart__submit-button .wc-block-components-button__text,
.wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  color: inherit !important;
  font: inherit !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.wc-block-cart__submit-container .wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.woocommerce .wc-block-cart__submit-container .wc-block-cart__submit-button:hover,
.woocommerce .wc-block-components-checkout-place-order-button:hover {
  color: var(--marah-black) !important;
  background: var(--marah-white) !important;
  border-color: var(--marah-black) !important;
}

.wc-block-cart__submit-container .wc-block-cart__submit-button:focus,
.wc-block-components-checkout-place-order-button:focus {
  outline: 1px solid var(--marah-black) !important;
  outline-offset: 3px !important;
}

.woocommerce-checkout #billing_state_field,
.woocommerce-checkout #shipping_state_field,
.wc-block-components-address-form__state,
.wc-block-components-state-input,
.wc-block-components-address-form [id*="state"],
.wc-block-components-address-form [name*="state"] {
  display: none !important;
}

.wc-block-components-checkout-place-order-button,
.woocommerce .wc-block-components-checkout-place-order-button,
.woocommerce-checkout #payment #place_order,
.woocommerce-page #payment #place_order {
  width: auto !important;
  min-width: 180px !important;
  padding-inline: 32px !important;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 52px;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--marah-line);
  color: var(--marah-ink);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  color: var(--marah-white);
  background: var(--marah-black);
  border-color: var(--marah-black);
}

.marah-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
  visibility: hidden;
}

.marah-filter-drawer[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.marah-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  transition: opacity 220ms var(--marah-ease);
}

.marah-filter-drawer[aria-hidden="false"] .marah-filter-backdrop {
  opacity: 1;
}

.marah-filter-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(430px, 92vw);
  padding: 28px;
  overflow-y: auto;
  background: var(--marah-white);
  transform: translateX(100%);
  transition: transform 260ms var(--marah-ease);
}

.marah-filter-drawer[aria-hidden="false"] .marah-filter-panel {
  transform: translateX(0);
}

.marah-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--marah-line);
}

.marah-filter-head h2 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

.marah-filter-head button {
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
}

.marah-filter-widget {
  padding: 24px 0;
  border-bottom: 1px solid var(--marah-line);
}

.marah-filter-widget select,
.marah-filter-widget input[type="search"],
.marah-filter-widget input[type="text"],
.marah-filter-widget input[type="number"] {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--marah-line);
  border-radius: 0;
  background: transparent;
}

.marah-product-page {
  padding: 20px 0 96px;
  overflow: visible;
}

.marah-single-product {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  overflow: visible;
}

.marah-product-gallery,
.marah-gallery-main {
  overflow: visible;
}

.marah-product-gallery {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.marah-gallery-thumbs {
  position: sticky;
  top: calc(var(--marah-header) + 24px);
  display: grid;
  gap: 12px;
}

.marah-gallery-thumbs button {
  padding: 0;
  overflow: hidden;
  background: var(--marah-soft);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 180ms var(--marah-ease), box-shadow 180ms var(--marah-ease);
}

.marah-gallery-thumbs button.is-active {
  border-color: var(--marah-black);
  box-shadow: inset 0 0 0 1px var(--marah-black);
}

.marah-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.marah-gallery-main {
  display: grid;
  gap: 18px;
}

.marah-gallery-main figure {
  margin: 0;
  background: var(--marah-soft);
}

.marah-gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.marah-product-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 72px;
  align-self: start;
  padding-top: 8px;
}

.marah-product-kicker {
  margin: 0 0 12px;
  color: var(--marah-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.marah-product-kicker a {
  color: var(--marah-muted);
}

.marah-product-summary h1 {
  font-size: clamp(28px, 3vw, 46px);
}

.marah-single-price {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
}

.marah-single-price .amount,
.marah-single-price ins,
.marah-single-price ins .amount {
  font-weight: 700;
}

.marah-single-price del,
.marah-single-price del .amount,
.marah-single-price del .woocommerce-Price-amount,
.marah-single-price del .woocommerce-Price-currencySymbol {
  color: #73706c;
  font-weight: 300;
}

.marah-single-price ins,
.marah-single-price ins .amount,
.marah-single-price ins .woocommerce-Price-amount,
.marah-single-price ins .woocommerce-Price-currencySymbol {
  font-weight: 700;
  text-decoration: none;
}

.marah-product-excerpt {
  margin: 28px 0;
  color: var(--marah-muted);
}

.marah-product-excerpt p {
  margin: 0;
}

.marah-product-purchase form.cart {
  display: grid;
  gap: 14px;
  margin: 0;
}

.marah-product-purchase form.cart:not(.variations_form),
.marah-product-purchase .woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.marah-product-purchase .quantity {
  display: inline-flex;
  width: 100%;
}

.marah-product-purchase input.qty {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--marah-line);
  border-radius: 0;
  text-align: center;
}

.marah-product-purchase .single_add_to_cart_button {
  width: 100%;
}

.marah-product-purchase table.variations {
  width: 100%;
  margin: 10px 0 0;
  border: 0;
}

.marah-product-purchase table.variations th,
.marah-product-purchase table.variations td {
  display: block;
  padding: 0 0 10px;
  text-align: left;
}

.marah-product-purchase table.variations select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--marah-line);
  border-radius: 0;
  background: transparent;
}

.marah-product-purchase .marah-hidden-variation-select {
  display: none !important;
}

.marah-variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.marah-variation-option {
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--marah-ink);
  background: transparent;
  border: 1px solid var(--marah-line);
  border-radius: 0;
  font-size: 12px;
  cursor: pointer;
}

.marah-variation-option.is-selected {
  color: var(--marah-white);
  background: var(--marah-black);
  border-color: var(--marah-black);
}

.marah-product-purchase .reset_variations {
  display: none !important;
}

.marah-product-accordions {
  margin-top: 34px;
  border-top: 1px solid var(--marah-line);
}

.marah-product-accordions details {
  border-bottom: 1px solid var(--marah-line);
}

.marah-product-accordions summary {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
}

.marah-product-accordions summary::-webkit-details-marker {
  display: none;
}

.marah-product-accordions summary::after {
  content: "+";
}

.marah-product-accordions details[open] summary::after {
  content: "-";
}

.marah-product-accordions details > div,
.marah-product-accordions details > p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--marah-muted);
}

.marah-product-meta {
  margin-top: 28px;
  color: var(--marah-muted);
  font-size: 12px;
}

.marah-related-products {
  padding-bottom: 96px;
}

.marah-related-products > section > h2,
.related.products > h2 {
  margin: 0 0 28px;
  font-family: var(--marah-title-font);
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 400;
  text-transform: uppercase;
}

.marah-entry {
  max-width: 900px;
  margin-inline: auto;
}

.marah-entry h1 {
  margin-bottom: 28px;
  font-size: clamp(40px, 5vw, 74px);
}

.marah-entry-content {
  color: var(--marah-muted);
}

.marah-empty-state {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 360px;
  text-align: center;
}

.marah-empty-state h1,
.marah-empty-state h2 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-weight: 400;
  text-transform: uppercase;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  margin: 0 0 24px;
  color: var(--marah-ink);
  background: var(--marah-soft);
  border: 1px solid var(--marah-line);
  list-style: none;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  display: none;
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
  order: 2;
  width: auto !important;
  min-width: 132px;
  min-height: 38px;
  padding: 0 22px;
  flex: 0 0 auto;
}

body.marah-cart-is-empty .marah-page-shell {
  width: min(var(--marah-shell), calc(100% - 64px));
  padding: 48px 0 96px;
}

body.marah-cart-is-empty .marah-entry {
  max-width: min(1180px, 100%);
}

body.marah-cart-is-empty .marah-entry > h1,
body.marah-cart-is-empty .woocommerce .cart-empty,
body.marah-cart-is-empty .woocommerce .return-to-shop {
  display: none !important;
}

body.marah-cart-is-empty .marah-entry-content,
body.marah-cart-is-empty .woocommerce {
  width: 100%;
}

body.marah-cart-is-empty .woocommerce-info,
body.marah-cart-is-empty .woocommerce-message {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.marah-cart-empty {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: start;
  color: var(--marah-ink);
  animation: marahCartEmptyIn 520ms var(--marah-ease) both;
}

.marah-cart-empty__copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(720px, 100%);
  margin-inline: auto;
  padding: 30px 0 0;
  text-align: center;
}

body.marah-cart-is-empty .marah-cart-empty h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.02;
  text-transform: none;
}

.marah-cart-empty__copy > p {
  max-width: 470px;
  margin: 0;
  color: var(--marah-muted);
  font-size: 15px;
  line-height: 1.75;
}

.marah-cart-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.marah-cart-empty__actions .button,
.woocommerce .marah-cart-empty__actions .button,
body.marah-cart-is-empty .woocommerce .marah-cart-empty__actions .button {
  width: auto !important;
  min-width: 190px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 28px !important;
  color: var(--marah-white) !important;
  background: var(--marah-black) !important;
  border: 1px solid var(--marah-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.marah-cart-empty__actions .button:hover,
.woocommerce .marah-cart-empty__actions .button:hover,
body.marah-cart-is-empty .woocommerce .marah-cart-empty__actions .button:hover {
  color: var(--marah-black) !important;
  background: var(--marah-white) !important;
  border-color: var(--marah-black) !important;
}

.marah-cart-empty__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--marah-black);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
  transition: color 180ms var(--marah-ease), transform 180ms var(--marah-ease);
}

.marah-cart-empty__link:hover,
.marah-cart-empty__link:focus-visible {
  color: var(--marah-accent);
  transform: translateX(3px);
}

body.marah-cart-is-empty .wp-block-woocommerce-empty-cart-block,
body.marah-cart-is-empty .wc-block-cart__empty-cart__title,
body.marah-cart-is-empty .wc-block-grid {
  max-width: 1180px !important;
  margin-inline: auto !important;
}

body.marah-cart-is-empty .wc-block-cart__empty-cart__title {
  color: var(--marah-ink) !important;
  font-family: var(--marah-title-font) !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  text-transform: uppercase !important;
}

body.marah-cart-is-empty .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  display: none !important;
}

body.marah-cart-is-empty .wp-block-woocommerce-empty-cart-block .wp-block-button__link,
body.marah-cart-is-empty .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  color: var(--marah-white) !important;
  background: var(--marah-black) !important;
  border: 1px solid var(--marah-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
}

.marah-cart-empty__products {
  display: grid;
  gap: 24px;
  padding-top: 38px;
  border-top: 1px solid var(--marah-line);
}

.marah-cart-empty__products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.marah-cart-empty__products-head h2 {
  margin: 0;
}

.marah-cart-empty__products-head h2 {
  font-family: var(--marah-title-font);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: none;
}

.marah-cart-empty__products-head a {
  flex: 0 0 auto;
  color: var(--marah-black);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.marah-cart-empty__products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.marah-cart-empty__products-grid .marah-card-actions .button,
.woocommerce .marah-cart-empty__products-grid .marah-card-actions .button,
body.marah-cart-is-empty .woocommerce .marah-cart-empty__products-grid .marah-card-actions .button {
  width: 100% !important;
  min-height: 44px !important;
  color: var(--marah-white) !important;
  background: var(--marah-black) !important;
  border-color: var(--marah-black) !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.marah-cart-empty__products-grid .marah-card-actions .button:hover,
.marah-cart-empty__products-grid .marah-card-actions .button:focus-visible,
.woocommerce .marah-cart-empty__products-grid .marah-card-actions .button:hover,
.woocommerce .marah-cart-empty__products-grid .marah-card-actions .button:focus-visible,
body.marah-cart-is-empty .woocommerce .marah-cart-empty__products-grid .marah-card-actions .button:hover,
body.marah-cart-is-empty .woocommerce .marah-cart-empty__products-grid .marah-card-actions .button:focus-visible {
  color: var(--marah-black) !important;
  background: var(--marah-white) !important;
  border-color: var(--marah-black) !important;
}

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

body.woocommerce-order-received .marah-page-shell {
  padding: 72px 0 112px;
}

body.woocommerce-order-received .marah-entry {
  max-width: min(1180px, 100%);
}

body.woocommerce-order-received .marah-entry > h1 {
  padding-bottom: 24px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--marah-line);
}

.marah-order-received {
  display: grid;
  gap: 28px;
  color: var(--marah-ink);
}

.marah-order-confirmation {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--marah-soft);
  border: 1px solid var(--marah-line);
}

.marah-order-confirmation__copy {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.marah-order-eyebrow {
  margin: 0;
  color: var(--marah-muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marah-order-status {
  display: flex;
  align-items: center;
  gap: 14px;
}

.marah-order-status-mark {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--marah-black);
}

.marah-order-status-mark::before {
  position: absolute;
  top: 11px;
  left: 14px;
  width: 10px;
  height: 17px;
  border-right: 1px solid var(--marah-black);
  border-bottom: 1px solid var(--marah-black);
  content: "";
  transform: rotate(42deg);
}

.marah-order-status-mark--failed::before,
.marah-order-status-mark--failed::after {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 18px;
  height: 1px;
  background: var(--marah-black);
  border: 0;
  content: "";
}

.marah-order-status-mark--failed::before {
  transform: rotate(45deg);
}

.marah-order-status-mark--failed::after {
  transform: rotate(-45deg);
}

.marah-order-status .woocommerce-thankyou-order-received,
.marah-order-empty .woocommerce-thankyou-order-received {
  margin: 0;
  color: var(--marah-ink);
  font-size: 15px;
}

.marah-order-confirmation h2,
.marah-order-failed h2 {
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.06;
  text-transform: uppercase;
}

.marah-order-intro {
  max-width: 560px;
  margin: 0;
  color: var(--marah-muted);
  font-size: 15px;
  line-height: 1.75;
}

.marah-order-reference {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  color: var(--marah-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.marah-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.marah-order-actions .button,
.marah-order-actions .marah-text-link {
  width: auto;
  min-width: 172px;
  min-height: 44px;
  margin-top: 0;
}

.marah-order-payment-note {
  position: relative;
  min-height: 54px;
  padding: 17px 22px 17px 42px;
  color: var(--marah-ink);
  background: var(--marah-white);
  border: 1px solid var(--marah-line);
}

.marah-order-payment-note:empty {
  display: none;
}

.marah-order-payment-note::before {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 7px;
  height: 7px;
  background: var(--marah-accent);
  content: "";
}

.marah-order-payment-note p {
  margin: 0;
  color: var(--marah-ink);
  font-size: 14px;
  line-height: 1.7;
}

.marah-order-sections {
  display: grid;
  gap: 28px;
}

.marah-order-received .woocommerce-order-details,
.marah-order-received .woocommerce-customer-details,
.marah-order-received .woocommerce-order-downloads,
.marah-order-empty,
.marah-order-failed {
  padding: clamp(24px, 3vw, 34px);
  background: var(--marah-white);
  border: 1px solid var(--marah-line);
}

.marah-order-received .woocommerce-order-details__title,
.marah-order-received .woocommerce-order-downloads__title,
.marah-order-received .woocommerce-column__title,
.marah-order-received .woocommerce-customer-details h2 {
  margin: 0 0 22px;
  font-family: var(--marah-title-font);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.marah-order-received table.shop_table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.marah-order-received table.shop_table th,
.marah-order-received table.shop_table td {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--marah-line);
  text-align: left;
  vertical-align: top;
}

.marah-order-received table.shop_table thead th {
  color: var(--marah-muted);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.marah-order-received table.shop_table .product-total,
.marah-order-received table.shop_table th.product-total {
  text-align: right;
}

.marah-order-received table.shop_table tbody td {
  color: var(--marah-ink);
  font-size: 14px;
}

.marah-order-received table.shop_table tbody a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.marah-order-received .product-quantity {
  margin-left: 6px;
  color: var(--marah-muted);
  font-size: 12px;
  font-weight: 500;
}

.marah-order-received table.shop_table tfoot th,
.marah-order-received table.shop_table tfoot td {
  color: var(--marah-ink);
  font-size: 14px;
}

.marah-order-received table.shop_table tfoot th {
  color: var(--marah-muted);
  font-weight: 400;
  text-transform: uppercase;
}

.marah-order-received table.shop_table tfoot td {
  text-align: right;
}

.marah-order-received table.shop_table tfoot tr:last-child th,
.marah-order-received table.shop_table tfoot tr:last-child td {
  border-bottom: 0;
}

.marah-order-received .woocommerce-columns--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.marah-order-received .woocommerce-columns--2::before,
.marah-order-received .woocommerce-columns--2::after,
.marah-order-received .woocommerce-order-details::before,
.marah-order-received .woocommerce-order-details::after {
  display: none;
}

.marah-order-received .woocommerce-column {
  min-width: 0;
}

.marah-order-received address {
  margin: 0;
  color: var(--marah-muted);
  font-style: normal;
  line-height: 1.8;
}

.marah-order-received address p {
  margin: 14px 0 0;
  color: var(--marah-ink);
}

.marah-order-failed {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--marah-soft);
}

.marah-order-failed__content {
  display: grid;
  gap: 16px;
}

.marah-order-failed .woocommerce-thankyou-order-failed {
  display: block;
  padding: 0;
  margin: 0;
  color: var(--marah-muted);
  background: transparent;
  border: 0;
}

.marah-order-empty {
  display: grid;
  justify-items: start;
  gap: 16px;
}

body.woocommerce-account .marah-page-shell {
  padding: 72px 0 112px;
}

body.woocommerce-account .marah-entry {
  max-width: min(1180px, 100%);
}

body.woocommerce-account .marah-entry h1 {
  padding-bottom: 22px;
  margin: 0 0 36px;
  border-bottom: 1px solid var(--marah-line);
}

body.woocommerce-account .marah-entry-content {
  color: var(--marah-ink);
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

body.woocommerce-account:not(.logged-in) .woocommerce {
  display: block;
  max-width: 980px;
  margin-inline: auto;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--marah-header) + 24px);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--marah-line);
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
  border-bottom: 1px solid var(--marah-line);
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 16px;
  color: var(--marah-muted);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms var(--marah-ease), padding 180ms var(--marah-ease);
}

.woocommerce-account .woocommerce-MyAccount-navigation a::after {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  opacity: 0;
  transform: rotate(45deg) translateX(-4px);
  transition: opacity 180ms var(--marah-ease), transform 180ms var(--marah-ease);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--marah-black);
  padding-left: 6px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover::after,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible::after,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::after {
  opacity: 1;
  transform: rotate(45deg) translateX(0);
}

.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
  color: var(--marah-ink);
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  padding: 24px 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--marah-line);
  border-bottom: 1px solid var(--marah-line);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child strong {
  font-family: var(--marah-title-font);
  font-weight: 400;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--marah-muted);
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
  color: var(--marah-black);
  border-bottom: 1px solid rgba(7, 7, 7, 0.24);
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button):hover,
.woocommerce-account .woocommerce-MyAccount-content a:not(.button):focus-visible {
  border-color: var(--marah-black);
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account #customer_login h2,
.woocommerce-account .woocommerce-ResetPassword h2 {
  margin: 0 0 20px;
  font-family: var(--marah-title-font);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: capitalize;
}

body.woocommerce-account:not(.logged-in) .woocommerce > h2,
body.woocommerce-account:not(.logged-in) .woocommerce > .woocommerce-form-login,
body.woocommerce-account:not(.logged-in) .woocommerce > .woocommerce-ResetPassword {
  max-width: 540px;
  margin-inline: auto;
}

body.woocommerce-account:not(.logged-in) .woocommerce > h2 {
  font-family: var(--marah-title-font);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.woocommerce-account .u-columns.col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2,
.woocommerce-account .woocommerce-Address,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account .woocommerce-ResetPassword,
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--marah-line);
  background: var(--marah-white);
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
  float: none;
  width: auto;
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account .woocommerce-ResetPassword,
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields {
  margin: 0;
}

.woocommerce-account #customer_login .woocommerce-form-login,
.woocommerce-account #customer_login .woocommerce-form-register {
  padding: 0;
  border: 0;
  background: transparent;
}

.woocommerce-account form .form-row {
  padding: 0;
  margin: 0 0 18px;
}

.woocommerce-account .woocommerce-EditAccountForm .form-row {
  position: relative;
}

.woocommerce-account form .form-row-first,
.woocommerce-account form .form-row-last {
  float: none;
  width: auto;
}

.woocommerce-account label {
  display: block;
  margin-bottom: 8px;
  color: var(--marah-muted);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.woocommerce-account .required {
  color: var(--marah-accent);
  text-decoration: none;
}

.woocommerce-account .input-text,
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"],
.woocommerce-account input[type="url"],
.woocommerce-account input[type="number"],
.woocommerce-account select,
.woocommerce-account textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 0 10px;
  color: var(--marah-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--marah-line);
  border-radius: 0;
}

.woocommerce-account textarea {
  min-height: 120px;
  padding-top: 10px;
}

.woocommerce-account .input-text:focus,
.woocommerce-account input:focus,
.woocommerce-account select:focus,
.woocommerce-account textarea:focus {
  outline: 0;
  border-color: var(--marah-black);
}

.woocommerce-account .password-input {
  position: relative;
  display: block;
  width: 100%;
}

.woocommerce-account .password-input input {
  padding-left: 0;
  padding-right: 42px;
}

.woocommerce-account .show-password-input {
  position: absolute !important;
  right: 0 !important;
  top: 7px !important;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transform: none !important;
}

.woocommerce-account .show-password-input::before {
  width: 18px;
  height: 11px;
  box-sizing: border-box;
  background: transparent !important;
  background-image: none !important;
  border: 1px solid var(--marah-muted);
  border-radius: 999px;
  content: "";
}

.woocommerce-account .show-password-input::after {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--marah-muted);
  border-radius: 999px;
  content: "";
}

.woocommerce-account .show-password-input:hover::before,
.woocommerce-account .show-password-input:focus-visible::before {
  border-color: var(--marah-black);
}

.woocommerce-account .show-password-input:hover::after,
.woocommerce-account .show-password-input:focus-visible::after {
  background: var(--marah-black);
}

.woocommerce-account .woocommerce-form-login__rememberme,
.woocommerce-account .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--marah-ink);
  font-size: 12px;
  text-transform: none;
}

.woocommerce-account input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--marah-black);
}

.woocommerce-account .lost_password {
  margin-top: 16px;
  font-size: 13px;
}

.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}

.woocommerce-account .woocommerce-EditAccountForm .form-row-wide,
.woocommerce-account .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-EditAccountForm > p:last-child,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-wide,
.woocommerce-account .woocommerce-address-fields > p {
  grid-column: 1 / -1;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset {
  padding: 20px 0 0;
  margin: 16px 0 0;
  border: 0;
}

.woocommerce-account .woocommerce-EditAccountForm legend {
  display: block;
  width: 100%;
  padding: 0 0 20px;
  font-family: var(--marah-title-font);
  font-size: 28px;
  font-weight: 400;
}

.woocommerce-account #account_display_name_description {
  display: block;
  margin-top: 8px;
  color: var(--marah-muted);
  font-size: 12px;
}

.woocommerce-account table.shop_table {
  width: 100%;
  margin: 0 0 30px;
  border: 0;
  border-collapse: collapse;
}

.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
  padding: 16px 12px;
  border: 0;
  border-bottom: 1px solid var(--marah-line);
  text-align: left;
  vertical-align: middle;
}

.woocommerce-account table.shop_table th {
  color: var(--marah-muted);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.woocommerce-account table.shop_table td {
  color: var(--marah-ink);
  font-size: 14px;
}

.woocommerce-account table.shop_table tbody tr:hover {
  background: var(--marah-soft);
}

.woocommerce-account table.shop_table .button {
  width: auto;
  min-height: 36px;
  padding: 0 16px;
}

.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.woocommerce-account .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--marah-line);
}

.woocommerce-account .woocommerce-Address-title h2 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
}

.woocommerce-account .woocommerce-Address-title .edit {
  flex: 0 0 auto;
  color: var(--marah-black);
  font-size: 11px;
  text-transform: uppercase;
}

.woocommerce-account address {
  color: var(--marah-muted);
  font-style: normal;
  line-height: 1.7;
}

.woocommerce-account mark {
  padding: 2px 6px;
  color: var(--marah-ink);
  background: var(--marah-soft);
}

.woocommerce-account .woocommerce-Pagination {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.woocommerce-account .woocommerce-Pagination .button {
  width: auto;
}

.woocommerce-account .woocommerce-Message,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
  margin-bottom: 28px;
}

.woocommerce-account .button:focus-visible,
.woocommerce-account button:focus-visible,
.woocommerce-account a:focus-visible {
  outline: 1px solid var(--marah-black);
  outline-offset: 3px;
}

.marah-site-footer {
  color: var(--marah-white);
  background: var(--marah-black);
}

.marah-footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 42px;
  width: min(var(--marah-shell), calc(100% - 64px));
  padding: 70px 0;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.marah-footer-newsletter h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--marah-title-font);
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.marah-newsletter-form {
  display: flex;
  align-items: end;
  gap: 12px;
}

.marah-newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  color: var(--marah-white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
}

.marah-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.marah-newsletter-form button {
  width: auto;
  min-height: 46px;
  padding: 0 22px;
  color: var(--marah-black);
  background: var(--marah-white);
  border: 1px solid var(--marah-white);
  text-transform: uppercase;
}

.marah-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  width: min(var(--marah-shell), calc(100% - 64px));
  padding: 48px 0 54px;
  margin-inline: auto;
}

.marah-footer-brand a {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--marah-white);
}

.marah-footer-brand img {
  width: auto;
  max-width: 240px;
  max-height: 78px;
  object-fit: contain;
}

.marah-footer-brand span {
  font-family: var(--marah-title-font);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.marah-footer-brand p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.marah-footer-columns h3 {
  color: var(--marah-white);
}

.marah-footer-columns a {
  color: rgba(255, 255, 255, 0.68);
}

.marah-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--marah-shell), calc(100% - 64px));
  padding: 22px 0;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
}

.marah-footer-bottom span:last-child {
  margin-left: auto;
  text-align: right;
}

.marah-floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--marah-white);
  background: #2a2a2a;
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
  transition: transform 180ms var(--marah-ease), background 180ms var(--marah-ease), box-shadow 180ms var(--marah-ease);
}

.marah-floating-chat:hover,
.marah-floating-chat:focus-visible {
  color: var(--marah-white);
  background: #343434;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.marah-floating-chat svg {
  width: 38px;
  height: 38px;
  color: #ffffff;
}

.marah-chat-bubble {
  fill: #ffffff;
}

.marah-chat-dot {
  fill: #ffffff;
}

.marah-home-hero-content h1,
.marah-editorial-tile strong,
.marah-swiper-heading h2,
.marah-section-heading h2,
.marah-shop-title-row h1,
.marah-entry h1,
.marah-empty-state h1,
.marah-empty-state h2,
.marah-product-summary h1,
.marah-product-info strong,
.marah-related-products > section > h2,
.related.products > h2,
.marah-footer-newsletter h2,
.marah-filter-head h2 {
  font-family: var(--marah-title-font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
}

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

@media (max-width: 1180px) {
  :root {
    --marah-header: 86px;
  }

  .marah-announcement,
  .marah-primary-nav,
  .marah-header-left {
    display: none;
  }

  .marah-header-main {
    position: relative;
    grid-template-columns: 48px 1fr auto;
    min-height: 70px;
    padding: 0 24px 0 18px;
  }

  .marah-icon-button {
    display: block;
  }

  .marah-branding {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(172px, 42vw);
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .marah-header-actions {
    grid-column: 3;
    gap: 10px;
    padding-right: 4px;
  }

  .marah-action {
    width: 30px;
    height: 30px;
  }

  .marah-action svg {
    width: 25px;
    height: 25px;
  }

  .custom-logo-link {
    min-height: 42px;
  }

  .custom-logo-link img {
    max-width: 148px;
    max-height: 36px;
  }

  .marah-action-account {
    display: none;
  }

  .marah-editorial-tile,
  .marah-editorial-tile img {
    height: 560px;
    min-height: 560px;
  }

  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 782px) {
  .admin-bar .marah-site-header {
    top: 46px;
  }

  .admin-bar .marah-site-header.is-scroll-ready {
    top: 46px;
  }

}

@media (max-width: 760px) {
  .marah-wide-shell,
  .marah-page-shell,
  .marah-footer-newsletter,
  .marah-footer-columns,
  .marah-footer-bottom {
    width: min(100% - 32px, var(--marah-shell));
  }

  body.woocommerce-account .marah-page-shell {
    padding: 48px 0 78px;
  }

  body.woocommerce-order-received .marah-page-shell {
    padding: 48px 0 78px;
  }

  body.woocommerce-order-received .marah-entry > h1 {
    padding-bottom: 18px;
    margin-bottom: 24px;
  }

  .marah-order-received .woocommerce-columns--2 {
    grid-template-columns: 1fr;
  }

  .marah-order-confirmation {
    padding: 20px;
  }

  .marah-order-status {
    align-items: flex-start;
  }

  .marah-order-actions {
    display: grid;
    width: 100%;
  }

  .marah-order-actions .button,
  .marah-order-actions .marah-text-link {
    width: 100%;
  }

  .marah-order-payment-note {
    padding: 16px 18px 16px 36px;
  }

  .marah-order-payment-note::before {
    left: 18px;
  }

  body.marah-cart-is-empty .marah-page-shell {
    width: min(100% - 32px, var(--marah-shell));
    padding: 34px 0 72px;
  }

  .marah-cart-empty {
    gap: 28px;
  }

  .marah-cart-empty__copy {
    padding: 0;
  }

  body.marah-cart-is-empty .marah-cart-empty h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .marah-cart-empty__actions,
  .marah-cart-empty__actions .button,
  .woocommerce .marah-cart-empty__actions .button,
  body.marah-cart-is-empty .woocommerce .marah-cart-empty__actions .button {
    width: 100% !important;
  }

  .marah-cart-empty__link {
    justify-content: center;
    width: 100%;
  }

  .marah-cart-empty__products {
    gap: 20px;
    padding-top: 30px;
  }

  .marah-cart-empty__products-head {
    display: grid;
    gap: 10px;
  }

  .marah-cart-empty__products-head h2 {
    font-size: 30px;
  }

  .marah-cart-empty__products-head a {
    justify-self: start;
  }

  .marah-cart-empty__products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marah-order-received table.shop_table thead {
    display: none;
  }

  .marah-order-received table.shop_table tbody tr {
    display: grid;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--marah-line);
  }

  .marah-order-received table.shop_table tbody td {
    display: block;
    padding: 0;
    border-bottom: 0;
  }

  .marah-order-received table.shop_table .product-total,
  .marah-order-received table.shop_table th.product-total {
    text-align: left;
  }

  .marah-order-received table.shop_table tfoot tr {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--marah-line);
  }

  .marah-order-received table.shop_table tfoot th,
  .marah-order-received table.shop_table tfoot td {
    padding: 13px 0;
    border-bottom: 0;
  }

  .marah-order-received table.shop_table tfoot td {
    text-align: right;
  }

  .marah-order-failed {
    display: grid;
  }

  body.woocommerce-account .marah-entry h1 {
    margin-bottom: 26px;
  }

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

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
    margin-inline: -16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation::-webkit-scrollbar {
    display: none;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    border-bottom: 1px solid var(--marah-line);
  }

  .woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
    border-bottom: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 48px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a::after {
    display: none;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a:hover,
  .woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible,
  .woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    padding-left: 16px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    box-shadow: inset 0 -1px 0 var(--marah-black);
  }

  .woocommerce-account .u-columns.col2-set,
  .woocommerce-account .woocommerce-Addresses,
  .woocommerce-account .woocommerce-EditAccountForm,
  .woocommerce-account .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .u-column1,
  .woocommerce-account .u-column2,
  .woocommerce-account .woocommerce-Address,
  .woocommerce-account .woocommerce-form-login,
  .woocommerce-account .woocommerce-form-register,
  .woocommerce-account .woocommerce-ResetPassword,
  .woocommerce-account .woocommerce-EditAccountForm,
  .woocommerce-account .woocommerce-address-fields {
    padding: 22px;
  }

  .woocommerce-account .shop_table_responsive thead {
    display: none;
  }

  .woocommerce-account .shop_table_responsive tbody,
  .woocommerce-account .shop_table_responsive tr,
  .woocommerce-account .shop_table_responsive td {
    display: block;
    width: 100%;
  }

  .woocommerce-account .shop_table_responsive tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--marah-line);
  }

  .woocommerce-account .shop_table_responsive td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 0;
    text-align: right;
  }

  .woocommerce-account .shop_table_responsive td::before {
    flex: 0 0 44%;
    color: var(--marah-muted);
    font-size: 11px;
    text-align: left;
    text-transform: uppercase;
    content: attr(data-title);
  }

  .woocommerce-account .shop_table_responsive td[data-title=""]::before,
  .woocommerce-account .shop_table_responsive td.woocommerce-orders-table__cell-order-actions::before,
  .woocommerce-account .shop_table_responsive td.download-actions::before,
  .woocommerce-account .shop_table_responsive td.actions::before {
    display: none;
  }

  .woocommerce-account table.shop_table .button {
    min-width: 112px;
  }

  .marah-home-hero {
    min-height: calc(100svh - 70px);
    align-items: flex-end;
  }

  .marah-home-hero-image {
    height: 100%;
    min-height: calc(100svh - 70px);
    object-fit: cover;
    object-position: center top;
  }

  .marah-home-hero-content {
    padding-bottom: 52px;
  }

  .marah-home-hero-content h1 {
    font-size: clamp(46px, 18vw, 82px);
  }

  .marah-editorial-grid,
  .marah-footer-newsletter,
  .marah-footer-columns {
    grid-template-columns: 1fr;
  }

  .marah-world .marah-wide-shell {
    width: 100%;
  }

  .marah-world .marah-section-heading {
    width: min(100% - 32px, var(--marah-shell));
    margin-inline: auto;
  }

  .marah-world-grid {
    display: flex;
    gap: 14px;
    width: calc(100% - 16px);
    margin-left: 16px;
    padding: 0 16px 6px 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .marah-world-grid::-webkit-scrollbar {
    display: none;
  }

  .marah-world-grid a {
    flex: 0 0 min(78vw, 330px);
    scroll-snap-align: start;
  }

  .marah-world-grid a:first-child {
    margin-left: 0;
  }

  .marah-gallery-page {
    padding: 52px 0 72px;
  }

  .marah-masonry-gallery {
    column-count: 2;
    column-gap: 12px;
  }

  .marah-masonry-gallery figure {
    margin-bottom: 12px;
  }

  .marah-campaign-hero {
    min-height: 620px;
    padding: 76px 20px 54px;
  }

  .marah-campaign-hero-content {
    margin-left: 0;
  }

  .marah-campaign-hero-content h1 {
    font-size: 56px;
  }

  .marah-campaign-story {
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .marah-campaign-editorial {
    padding-bottom: 72px;
  }

  .marah-campaign-grid {
    column-count: 2;
    column-gap: 12px;
  }

  .marah-campaign-grid figure {
    margin-bottom: 12px;
  }

  .marah-media-viewer {
    padding: 56px 48px;
  }

  .marah-media-viewer img {
    max-height: calc(100svh - 112px);
  }

  .marah-media-viewer-nav {
    width: 42px;
  }

  .marah-media-viewer-nav.is-prev {
    left: 0;
  }

  .marah-media-viewer-nav.is-next {
    right: 0;
  }

  .marah-contact-page {
    padding: 54px 0 78px;
  }

  .marah-contact-layout,
  .marah-contact-primary li {
    grid-template-columns: 1fr;
  }

  .marah-contact-primary li {
    gap: 8px;
  }

  .marah-editorial-tile,
  .marah-editorial-tile img {
    height: 520px;
    min-height: 520px;
  }

  .marah-editorial-tile:nth-child(3) {
    grid-column: auto;
  }

  .marah-latest-products,
  .marah-world {
    padding: 58px 0;
  }

  .marah-section-heading,
  .marah-swiper-heading,
  .marah-shop-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .marah-swiper-heading {
    width: min(100% - 32px, var(--marah-shell));
  }

  .marah-shop-toolbar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .marah-single-product {
    grid-template-columns: 1fr;
  }

  .marah-product-summary {
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .marah-shop-count {
    display: none;
  }

  .marah-ordering {
    justify-self: end;
  }

  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .woocommerce ul.products.marah-swiper-track li.product,
  ul.products.marah-swiper-track li.product {
    flex-basis: min(72vw, 310px);
  }

  .woocommerce ul.products.marah-swiper-track li.product:first-child,
  ul.products.marah-swiper-track li.product:first-child {
    flex-basis: min(72vw, 310px);
  }

  .marah-product-rail {
    padding-left: 16px;
    padding-right: 16px;
  }

  .marah-rail-progress {
    width: min(360px, calc(100vw - 32px));
  }

  .marah-card-actions {
    position: static;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }

  .marah-product-info {
    min-height: 0;
  }

  .marah-product-gallery {
    grid-template-columns: 1fr;
  }

  .marah-gallery-thumbs {
    position: static;
    display: flex;
    order: 2;
    overflow-x: auto;
  }

  .marah-gallery-thumbs button {
    flex: 0 0 70px;
  }

  .marah-gallery-main {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .marah-gallery-main figure {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .marah-footer-newsletter {
    gap: 28px;
  }

  .marah-newsletter-form {
    display: grid;
  }

  .marah-search-dialog {
    padding: 34px 20px 42px;
  }

  .marah-search-close {
    top: 16px;
    right: 16px;
  }

  .marah-product-search-form {
    width: 100%;
    padding-top: 34px;
  }

  .marah-product-search-form div {
    grid-template-columns: 1fr;
  }

  .marah-product-search-form button {
    width: 100%;
  }

  .marah-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .marah-floating-chat {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .marah-floating-chat svg {
    width: 34px;
    height: 34px;
  }

  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message {
    align-items: center;
    flex-direction: row;
  }

  .woocommerce-error .button,
  .woocommerce-info .button,
  .woocommerce-message .button {
    width: auto !important;
  }
}

@media (max-width: 430px) {
  .marah-header-main {
    padding: 0 20px 0 14px;
  }

  .marah-masonry-gallery {
    column-count: 1;
  }

  .marah-campaign-grid {
    column-count: 1;
  }

  .marah-logo,
  .custom-logo-link {
    font-size: 22px;
  }

  .marah-header-actions {
    gap: 8px;
    padding-right: 2px;
  }

  .marah-action {
    width: 30px;
    height: 30px;
  }

  .marah-action svg {
    width: 24px;
    height: 24px;
  }

  .custom-logo-link img {
    max-width: min(128px, 36vw);
    max-height: 33px;
  }

  .marah-swiper-heading h2 {
    font-size: 30px;
  }

  .woocommerce ul.products,
  ul.products {
    gap: 24px 10px;
  }

  .button,
  button.single_add_to_cart_button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }
}
