: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 span {
  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-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;
}

.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));
  }

  .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;
  }
}
