/* leather1x.css - merged header + footer styles */

:root {
  --bg: #000000;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.70);
  --line: rgba(201, 169, 106, 0.22);
  --gold: #c9a96a;
  --gold-dark: #a88034;
  --leather: #8a3f18;
  --leather-2: #5a260c;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.70);
  --logo-h: 44px;
  --logo-w: 220px;
  --radius: 18px;
  --container: 1360px;
  --header-h: 86px;
  --ease: 0.28s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 34px, var(--container));
  margin: 0 auto;
}

/* ==========================================================================
   Force Leather 1X branding — overrides Hello theme, styling comes from plugin
   ========================================================================== */
/* Neutralize Hello reset.css — avoid #c36 border/color on buttons */
.leather1x-body [type="button"],
.leather1x-body [type="submit"],
.leather1x-body button {
  border-color: rgba(201, 169, 106, 0.22) !important;
  color: inherit !important;
}

.leather1x-body {
  --hello-bar-height: 0;
  --hello-container-width: 1360px;
  color: var(--text) !important;
  background: var(--bg) !important;
  font-family: "Inter", "Segoe UI", sans-serif !important;
}
.leather1x-body .site,
.leather1x-body .site-inner {
  min-width: 0;
}
.leather1x-body .site,
.leather1x-body .site-main,
.leather1x-body main,
.leather1x-body .elementor-section-wrap,
.leather1x-body .e-con {
  max-width: 100% !important;
  background: var(--bg) !important;
  color: var(--text) !important;
}
.leather1x-body .site-header,
.leather1x-body .site-footer,
.leather1x-body .header-inner,
.leather1x-body .footer-inner {
  max-width: 100% !important;
}
/* Container override — desktop */
@media (min-width: 1200px) {
  .leather1x-body .site-header .container,
  .leather1x-body .site-footer .container,
  .leather1x-body .topbar .container {
    max-width: min(100% - 34px, var(--container)) !important;
  }
  .leather1x-body .e-container,
  .leather1x-body .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--container) !important;
  }
}
/* Container override — mobile & tablet */
@media (max-width: 1199px) {
  .leather1x-body .site-header .container,
  .leather1x-body .site-footer .container,
  .leather1x-body .topbar .container {
    width: min(100% - 34px, var(--container)) !important;
    max-width: min(100% - 34px, var(--container)) !important;
  }
  .leather1x-body .page-header .entry-title,
  .leather1x-body .site-main,
  .leather1x-body main {
    max-width: 100% !important;
  }
  .leather1x-body .e-container,
  .leather1x-body .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
    padding-left: 17px !important;
    padding-right: 17px !important;
  }
}
@media (max-width: 560px) {
  .leather1x-body .site-header .container,
  .leather1x-body .site-footer .container,
  .leather1x-body .topbar .container {
    width: min(100% - 20px, var(--container)) !important;
  }
  .leather1x-body .e-container,
  .leather1x-body .elementor-section.elementor-section-boxed > .elementor-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* Content area */
.leather1x-main {
  min-height: 50vh;
}

/* Site-wide breadcrumbs (above main, below header) */
.l1x-breadcrumbs {
  width: min(100% - 34px, 1360px);
  margin: 14px auto 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}
.l1x-breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.l1x-breadcrumbs a:hover {
  color: #c9a96a;
  border-bottom-color: rgba(201, 169, 106, 0.4);
}
.l1x-breadcrumbs .sep {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.3);
}
.l1x-breadcrumbs [aria-current="page"] {
  color: #c9a96a;
}
.l1x-breadcrumbs .rank-math-breadcrumb p {
  margin: 0;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Header ---- */
.topbar {
  background: #000;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(201, 169, 106, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.86);
  opacity: 0.86;
  transition: opacity var(--ease), color var(--ease);
}

.topbar a:hover {
  opacity: 1;
  color: rgba(201, 169, 106, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(201, 169, 106, 0.14);
}

@supports ((-webkit-backdrop-filter: blur(14px)) or (backdrop-filter: blur(14px))) {
  .site-header {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.72);
  }
}

.site-header__inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand__mark {
  width: var(--logo-w);
  height: var(--logo-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.60));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__item {
  position: static;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--header-h);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(245, 241, 234, 0.92);
  letter-spacing: 0.02em;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width var(--ease);
}

.nav__item:hover .nav__link::after,
.nav__item:focus-within .nav__link::after {
  width: 100%;
}

.nav__caret {
  width: 14px;
  height: 14px;
  transition: transform var(--ease);
  opacity: 0.78;
}

.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.action-btn {
  height: 46px;
  min-width: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 169, 106, 0.20);
  color: rgba(245, 241, 234, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
  position: relative;
}

.action-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(201, 169, 106, 0.34);
  transform: translateY(-1px);
}

.action-btn svg {
  width: 20px;
  height: 20px;
}

.offer-btn {
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(245, 241, 234, 0.96);
  background: linear-gradient(180deg, rgba(138,63,24,0.96), rgba(90,38,12,0.96));
  border-color: rgba(201, 169, 106, 0.34);
}

.cart-badge {
  position: absolute;
  right: -2px;
  top: -2px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #0b0a09;
  border: 2px solid rgba(15, 14, 13, 0.95);
  font-size: 11px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  transform: translateX(-50%) translateY(10px);
  width: min(1180px, calc(100vw - 34px));
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(201, 169, 106, 0.20);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(28, 20, 13, 0.14);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  will-change: transform, opacity;
}

.nav__item:hover .mega-menu,
.nav__item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.2fr;
  gap: 24px;
}

.mega-menu--simple {
  min-width: 220px;
}

.mega-menu__grid--simple {
  grid-template-columns: 1fr;
  gap: 0;
}

.mega-menu--simple .mega-links {
  padding: 8px 0;
}

.mega-menu--simple .mega-card {
  display: none;
}

.mega-col {
  min-width: 0;
}

.mega-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mega-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.mega-links a {
  display: block;
  padding: 8px 0;
  color: rgba(245, 241, 234, 0.90);
  font-weight: 500;
  transition: color var(--ease), transform var(--ease);
}

.mega-links a:hover {
  color: var(--gold-dark);
  transform: translateX(2px);
}

.mega-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.78));
  border: 1px solid rgba(201, 169, 106, 0.16);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mega-card__media {
  height: 170px;
  background-image:
    radial-gradient(900px 240px at 15% 35%, rgba(201,169,106,0.18), transparent 55%),
    radial-gradient(700px 280px at 80% 25%, rgba(138,63,24,0.35), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.55));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mega-card__body {
  padding: 18px;
}

.mega-card__eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.mega-card__title {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.mega-card__text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.mega-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: rgba(245, 241, 234, 0.94);
}

.mobile-drawer {
  display: none;
  border-top: 1px solid rgba(201, 169, 106, 0.18);
  background: rgba(0, 0, 0, 0.98);
}

.mobile-drawer__inner {
  padding: 14px 0 20px;
  display: grid;
  gap: 8px;
}

.mobile-item {
  border: 1px solid rgba(201, 169, 106, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.mobile-trigger,
.mobile-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  color: rgba(245, 241, 234, 0.92);
  font-weight: 700;
}

.mobile-submenu {
  display: none;
  padding: 0 16px 14px;
  border-top: 1px solid rgba(201, 169, 106, 0.14);
  background: rgba(0, 0, 0, 0.98);
}

.mobile-submenu a {
  display: block;
  padding: 12px 0;
  color: rgba(183, 170, 157, 0.95);
  border-bottom: 1px solid rgba(201, 169, 106, 0.10);
}

.mobile-submenu a:last-child {
  border-bottom: none;
}

.mobile-item.open .mobile-submenu {
  display: block;
}

.mobile-item.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-chevron {
  transition: transform var(--ease);
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid rgba(201, 169, 106, 0.18);
  background:
    radial-gradient(900px 380px at 18% 0%, rgba(201,169,106,0.10), transparent 60%),
    radial-gradient(800px 320px at 88% 10%, rgba(138,63,24,0.18), transparent 60%),
    #000;
}

.footer__top {
  padding: 44px 0 26px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.footer__top > * {
  min-width: 0;
}

.site-footer .brand {
  display: grid;
  align-items: start;
  justify-items: start;
  gap: 14px;
}

.site-footer .brand__mark {
  width: clamp(190px, 22vw, 300px);
  height: clamp(38px, 4.2vw, 60px);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px;
  overflow: hidden;
}

.brand__meta {
  display: grid;
  gap: 12px;
  max-width: 520px;
  min-width: 0;
}

.brand__tagline {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.brand__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  border: 1px solid rgba(201, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 9px;
  border-radius: 999px;
}

.newsletter {
  border: 1px solid rgba(201, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-width: 0;
}

.newsletter__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
}

.newsletter__sub {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.newsletter__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.field {
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 106, 0.22);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  padding: 0 16px;
  outline: none;
}

.field::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.field:focus {
  border-color: rgba(201, 169, 106, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 169, 106, 0.16);
}

.btn {
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 106, 0.34);
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(180deg, rgba(138,63,24,0.96), rgba(90,38,12,0.96));
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform var(--ease), border-color var(--ease), filter var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 169, 106, 0.52);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.fineprint {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.5;
}

.fineprint a {
  color: rgba(201, 169, 106, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__mid {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(201, 169, 106, 0.12);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.col__title {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  font-size: 0.98rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 106, 0.14);
  margin-bottom: 10px;
}

.col__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.col__list a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--ease), transform var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.col__list a:hover {
  color: rgba(201, 169, 106, 0.95);
  transform: translateX(2px);
}

.social {
  border: 1px solid rgba(201, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: var(--shadow);
}

.social__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.social__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 169, 106, 0.20);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.icon-link:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 169, 106, 0.45);
  background: rgba(0, 0, 0, 0.75);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.footer__bottom {
  border-top: 1px solid rgba(201, 169, 106, 0.12);
  padding: 18px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.pay {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.pay .pill {
  padding: 7px 10px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.accordion-btn {
  display: none;
}

/* ---- Media queries ---- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .nav__list {
    gap: 18px;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mega-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .footer__top,
  .footer__mid {
    grid-template-columns: 1fr;
  }
  .site-footer .brand__meta {
    max-width: 100%;
  }

  .cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pay {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .nav,
  .offer-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-drawer.show {
    display: block;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .brand__sub {
    font-size: 0.63rem;
  }
}

@media (max-width: 640px) {
  :root {
    --logo-h: 34px;
    --logo-w: 170px;
  }

  .footer__top {
    padding-top: 34px;
  }

  .cols {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .col {
    border: 1px solid rgba(201, 169, 106, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
  }

  .col__title {
    display: none;
  }

  .accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.40);
  }

  .accordion-btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--ease);
    opacity: 0.9;
  }

  .col[data-open="true"] .accordion-btn svg {
    transform: rotate(180deg);
  }

  .col__list {
    padding: 0 14px 14px;
    display: none;
  }

  .col[data-open="true"] .col__list {
    display: grid;
  }

  .footer__bottom {
    padding-bottom: 20px;
  }
}

@media (max-width: 560px) {
  .topbar {
    font-size: 0.72rem;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__right {
    display: none;
  }

  .topbar__left {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .container {
    width: min(100% - 20px, var(--container));
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand__sub {
    display: none;
  }

  .action-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
  }
}
