:root {
  --black: #080808;
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --mid: #444;
  --muted: #666;
  --light-muted: #999;
  --off-white: #d8d0c4;
  --white: #f5f2ee;
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --gold-dark: #9c7a45;
  --accent-red: #c94444;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 72px;
}

/* For Chrome, Safari, Brave and Edge */
::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background-clip: content-box;
  border: 2px solid transparent;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold); /* Color of the scroll thumb */
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--gold-dark); /* Color on hover */
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
  background-color: var(--dark-3);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

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

.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img,
.woocommerce div.product div.images .flex-control-thumbs img {
  border-radius: 12px;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week],
textarea,
select,
.woocommerce .input-text {
  border-radius: 12px !important;
}

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

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

select {
  font-family: inherit;
}

ul {
  list-style: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: transform 0.12s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
}

body.hovering .cursor {
  width: 16px;
  height: 16px;
}

body.hovering .cursor-follower {
  width: 56px;
  height: 56px;
  opacity: 0.25;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.page-loader .loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.page-loader .loader-logo {
  width: 60px;
  height: 60px;
  color: var(--gold);
  animation: pulse-spin 2s linear infinite;
}
.page-loader .loader-text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--off-white);
}
.page-loader .loader-bar {
  width: 200px;
  height: 1px;
  background: var(--dark-4);
}
.page-loader .loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: fill-bar 1.5s ease forwards;
}

@keyframes pulse-spin {
  0% {
    transform: rotate(0deg);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.6;
  }
}
@keyframes fill-bar {
  to {
    width: 100%;
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

@font-face {
  font-family: "Cairo";
  src: url("../../font/Cairo-Medium.woff2") format("woff2"), url("../../font/Cairo-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background-color var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  border-color: rgba(201, 169, 110, 0.15);
}
.site-header .header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.site-header .header-left, .site-header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.site-header .header-right {
  justify-content: flex-end;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
}
.site-logo .logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.menu-toggle span:nth-child(1) {
  width: 24px;
}
.menu-toggle span:nth-child(2) {
  width: 16px;
}
.menu-toggle span:nth-child(3) {
  width: 20px;
}
.menu-toggle:hover span {
  background: var(--gold);
}
.menu-toggle.active span:nth-child(1) {
  width: 22px;
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  width: 22px;
  transform: translateY(-6px) rotate(-45deg);
}

.search-toggle, .wishlist-btn, .cart-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--light-muted);
  position: relative;
  transition: color var(--transition);
}
.search-toggle:hover, .wishlist-btn:hover, .cart-toggle:hover {
  color: var(--gold);
}

.cart-count, .wishlist-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--black);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}
.cart-count.visible, .wishlist-count.visible {
  opacity: 1;
  transform: scale(1);
}

.search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-4);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-bar.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.search-bar .search-inner {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 60px;
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 16px;
  font-family: var(--font-display);
  font-style: italic;
}
.search-bar input::-moz-placeholder {
  color: var(--muted);
}
.search-bar input::placeholder {
  color: var(--muted);
}
.search-bar .search-close {
  color: var(--muted);
  font-size: 18px;
}
.search-bar .search-close:hover {
  color: var(--gold);
}

.fullscreen-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.fullscreen-nav.open {
  opacity: 1;
  visibility: visible;
}
.fullscreen-nav .nav-content {
  display: flex;
  width: 100%;
  padding: 0 80px;
  justify-content: space-between;
  align-items: center;
}
.fullscreen-nav .nav-links li {
  overflow: hidden;
}
.fullscreen-nav .nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 48px !important;
  font-weight: 300;
  color: var(--muted);
  transition: color var(--transition);
  transform: translateY(100%);
  display: block;
}
.fullscreen-nav .nav-links li a span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  vertical-align: super;
  margin-right: 12px;
}
.fullscreen-nav .nav-links li a:hover {
  color: var(--white);
}
.fullscreen-nav .nav-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fullscreen-nav .nav-info p, .fullscreen-nav .nav-social a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.fullscreen-nav .nav-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fullscreen-nav .nav-social a:hover {
  color: var(--gold);
}

.fullscreen-nav.open .nav-links li a {
  animation: slide-up 0.5s ease forwards;
}
.fullscreen-nav.open .nav-links li a:nth-child(1) {
  animation-delay: 0.07s;
}
.fullscreen-nav.open .nav-links li a:nth-child(2) {
  animation-delay: 0.14s;
}
.fullscreen-nav.open .nav-links li a:nth-child(3) {
  animation-delay: 0.21s;
}
.fullscreen-nav.open .nav-links li a:nth-child(4) {
  animation-delay: 0.28s;
}
.fullscreen-nav.open .nav-links li a:nth-child(5) {
  animation-delay: 0.35s;
}

@keyframes slide-up {
  to {
    transform: translateY(0);
  }
}
.fullscreen-nav .nav-links ul,
.site-header .header-inner ul ul {
  margin-top: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(201, 169, 110, 0.2);
}

.fullscreen-nav .nav-links ul li a,
.site-header .header-inner ul ul li a {
  font-size: 14px;
  color: var(--muted);
}

.fullscreen-nav .nav-links ul li a:hover,
.site-header .header-inner ul ul li a:hover {
  color: var(--gold);
}

/* ============================================================
   SEARCH (popup + results)
   ============================================================ */
.search-bar {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
}

.search-bar.open {
  display: flex;
}

.search-bar .search-inner {
  width: min(720px, 100%);
  background: transparent;
  border-radius: 18px;
  padding: 0;
  box-shadow: none;
}

.ez-lswt-search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

/* Popup layout: 2 rows
   Row 1: Products radio + search input
   Row 2: Blog Articles radio + (Search + Close) */
.ez-lswt-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ez-lswt-search-row {
  display: grid;
  gap: 12px;
  align-items: center;
}

.ez-lswt-search-row-1 {
  grid-template-columns: auto 1fr;
}

.ez-lswt-search-row-2 {
  grid-template-columns: 1fr auto;
}

.ez-lswt-search-row-2 .ez-lswt-search-submit.btn {
  width: 100%;
}

.ez-lswt-search-form input[type=search] {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 14px;
  font-size: 16px;
  outline: none;
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
}

.ez-lswt-search-form input[type=search]:focus {
  border-color: rgba(var(--primary), 0.55);
  box-shadow: 0 0 0 4px rgba(var(--primary), 0.12);
}

.search-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-close:hover {
  border-color: rgba(var(--primary), 0.55);
}

.ez-lswt-search-type {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ez-lswt-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ez-lswt-radio input {
  accent-color: var(--gold);
}

.ez-lswt-radio span {
  font-size: 14px;
  color: var(--white);
}

/* Search results page */
.ez-lswt-search .ez-lswt-search-toolbar {
  margin-top: 18px;
  margin-bottom: 22px;
}

.ez-lswt-search .ez-lswt-search-form {
  grid-template-columns: 1fr;
}

/* Aside search (sidebar cards): force 2 rows
   Row 1: search input
   Row 2: submit button */
.ez-lswt-aside-search .ez-lswt-search-form {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  gap: 12px;
}

.ez-lswt-aside-search .ez-lswt-search-form input[type=search] {
  width: 100%;
}

.ez-lswt-aside-search .ez-lswt-search-form .ez-lswt-search-submit.btn,
.ez-lswt-aside-search .ez-lswt-search-form .ez-lswt-search-submit {
  width: 100%;
}

.ez-lswt-search-submit.btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 12px;
  height: 52px;
  padding: 0 18px;
  /* Ensure button label is centered */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ez-lswt-search-submit.btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

@media (max-width: 575.98px) {
  .search-bar {
    padding: 14px;
  }
  .search-bar .search-inner {
    padding: 14px;
    border-radius: 16px;
  }
  .ez-lswt-search-row-1 {
    grid-template-columns: 1fr;
  }
  .ez-lswt-search-row-2 {
    grid-template-columns: 1fr;
  }
  .search-close {
    width: 100%;
    height: 44px;
  }
}
/* ------------------------------------------------------------
 * Modern Search Results
 * ------------------------------------------------------------ */
.ez-lswt-search .section-subtitle {
  margin-top: 10px;
  opacity: 0.8;
}

.ez-lswt-search-toolbar {
  margin-top: 22px;
  margin-bottom: 26px;
}

.ez-lswt-search-form {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.ez-lswt-search-form input[type=search] {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
  outline: none;
}

.ez-lswt-search-form input[type=search]::-moz-placeholder {
  opacity: 0.7;
}

.ez-lswt-search-form input[type=search]::placeholder {
  opacity: 0.7;
}

.ez-lswt-search-form .btn {
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
}

.ez-lswt-search-form .btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.ez-lswt-search-type .ez-lswt-radio span {
  color: var(--white);
}

.ez-lswt-empty-state {
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

/* ------------------------------------------------------------
 * Modern Blog (index/single/archive/comments)
 * ------------------------------------------------------------ */
.ez-lswt-blog .section-subtitle {
  margin-top: 10px;
  opacity: 0.85;
}

.ez-lswt-post-card {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ez-lswt-post-card-thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.ez-lswt-post-card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 250ms ease;
}

.ez-lswt-post-card:hover .ez-lswt-post-card-thumb img {
  transform: scale(1.04);
}

.ez-lswt-post-card-thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.ez-lswt-post-card-body {
  padding: 18px;
}

.ez-lswt-post-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.ez-lswt-post-sep {
  opacity: 0.7;
}

.ez-lswt-post-card-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.ez-lswt-post-card-title a {
  color: inherit;
  text-decoration: none;
}

.ez-lswt-post-card-excerpt {
  opacity: 0.9;
  margin-bottom: 14px;
}

.ez-lswt-post-card-readmore.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 16px;
}

/* Single post */
.ez-lswt-post {
  max-width: 920px;
  margin: 0 auto;
}

.ez-lswt-post-header {
  margin-bottom: 22px;
}

.ez-lswt-post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0.85;
  margin-bottom: 10px;
}

.ez-lswt-post-title {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.ez-lswt-post-thumb {
  margin: 0 0 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.ez-lswt-post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.ez-lswt-post-content {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ez-lswt-post-footer {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.ez-lswt-post-tax-label {
  opacity: 0.85;
  margin-right: 8px;
}

.ez-lswt-post-nav .nav-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ez-lswt-post-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
}

.ez-lswt-post-nav-label {
  display: block;
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.ez-lswt-post-nav-title {
  display: block;
  font-weight: 600;
}

/* Comments */
.ez-lswt-comments {
  max-width: 920px;
  margin: 26px auto 0;
}

.ez-lswt-comments-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ez-lswt-comment-list {
  margin: 0;
  padding-left: 18px;
}

.ez-lswt-comment-form-title {
  margin: 18px 0 10px;
}

.ez-lswt-form input[type=text],
.ez-lswt-form input[type=email],
.ez-lswt-form input[type=url],
.ez-lswt-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: inherit;
  padding: 12px 14px;
  outline: none;
}

.ez-lswt-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ez-lswt-form .btn {
  border-radius: 12px;
  padding: 10px 16px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
}

.ez-lswt-form .btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.ez-lswt-post-card-readmore.btn {
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: transparent;
}

.ez-lswt-post-card-readmore.btn:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: -1;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.btn--outline {
  border: 1px solid var(--dark-4);
  color: var(--off-white);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.ez-404 {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.ez-404__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.ez-404__code {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--gold);
}

.ez-404__title {
  margin: 0 0 12px;
  color: var(--off-white);
}

.ez-404__text {
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.ez-404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--header-h) 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../img/bg.png");
  background-size: cover;
}
.hero-bg .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 169, 110, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  top: -100px;
  right: 100px;
  animation: float-orb 8s ease-in-out infinite;
}
.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 60, 180, 0.08) 0%, transparent 70%);
  bottom: 100px;
  left: 200px;
  animation: float-orb 12s ease-in-out infinite reverse;
}
.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation: float-orb 6s ease-in-out infinite 2s;
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -40px);
  }
}
.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 1.6s;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title .line {
  display: inline;
  opacity: 0;
}
.hero-title .line.italic {
  font-style: italic;
  color: var(--gold);
}
.hero-title .line.line-1 {
  animation: fade-up 0.8s ease forwards 1.8s;
}
.hero-title .line.line-2 {
  animation: fade-up 0.8s ease forwards 2s;
}
.hero-title .line.line-3 {
  animation: fade-up 0.8s ease forwards 2.2s;
}
.hero-title .line.line-4 {
  animation: fade-up 0.8s ease forwards 2.4s;
}

.hero-sub {
  font-size: 16px;
  color: var(--light-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 2.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 2.8s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-in 1s ease forwards 3.2s;
}
.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease infinite;
}
.hero-scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 3s;
}
.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-stats .stat strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: inline !important;
}
.hero-stats .stat span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
.scroll-counter-designs, .scroll-counter-collections, .scroll-counter-countries {
  font-family: var(--font-display) !important;
  font-size: 36px !important;
  font-weight: 300 !important;
  color: var(--gold) !important;
  line-height: 1 !important;
  display: inline !important;
}

.marquee-band {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-band .marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: 100%;
  will-change: transform;
}
.marquee-band .marquee-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.marquee-band span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding: 0 24px;
  text-transform: uppercase;
}
.marquee-band .dot {
  color: var(--gold);
  padding: 0 4px;
}

.section-header {
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  margin-top: 16px;
  color: var(--muted);
  max-width: 400px;
}

.widget-title {
  font-size: 26px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: var(--font-display);
}

.widget ul li {
  margin-bottom: 0.8rem;
}

.widget ul li a {
  font-family: var(--font-mono);
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.widget ul li a:hover {
  color: var(--light-muted);
  transform: translateX(5px);
}

.count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.5;
}

.price-filter input[type=range] {
  width: 100%;
  margin-bottom: 1rem;
  accent-color: var(--gold);
}

/* Sidebar search (shop + single product) */
.ez-lswt-layout-aside .ez-lswt-search-form {
  grid-template-columns: 1fr;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: none;
}

.ez-lswt-layout-aside .ez-lswt-search-form input[type=search] {
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.ez-lswt-layout-aside .ez-lswt-search-submit.btn {
  width: 100%;
  height: 48px;
  border-radius: 12px;
}

.collections {
  padding: 120px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 2px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.collection-card--large {
  grid-row: 1/3;
  grid-column: 1/2;
}
.collection-card--wide {
  grid-column: 2/4;
}
.collection-card .collection-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.collection-card .collection-light {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.collection-card .collection-light--purple {
  background: radial-gradient(circle at 50% 50%, rgba(140, 80, 220, 0.3), transparent 60%);
}
.collection-card .collection-light--amber {
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.3), transparent 60%);
}
.collection-card .collection-light--blue {
  background: radial-gradient(circle at 50% 50%, rgba(80, 140, 220, 0.3), transparent 60%);
}
.collection-card .collection-light--red {
  background: radial-gradient(circle at 50% 50%, rgba(200, 80, 60, 0.3), transparent 60%);
}
.collection-card .collection-icon {
  width: 120px;
  height: 120px;
  transition: transform 0.5s ease;
}
.collection-card .collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  transform: translateY(4px);
  transition: transform 0.4s;
}
.collection-card .collection-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 6px;
}
.collection-card .collection-info p {
  font-size: 12px;
  color: var(--light-muted);
  margin-bottom: 8px;
}
.collection-card .collection-info .collection-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.collection-card:hover .collection-light {
  opacity: 1;
}
.collection-card:hover .collection-icon {
  transform: scale(1.05);
}
.collection-card:hover .collection-info {
  transform: translateY(0);
}

.shopping {
  padding: 60px 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--dark-3);
  padding-bottom: 24px;
}

.filter-tabs {
  display: flex;
  gap: 0;
}

.filter-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 8px 20px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}
.filter-tab:hover {
  color: var(--white);
}
.filter-tab.active {
  color: var(--gold);
  border-color: var(--gold);
}

.filter-sort select {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-sort select:focus {
  border-color: var(--gold);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2px;
}

/* Do not use placeholders in grids (they can create "empty" columns on archives). */
.product-grid .product-card--placeholder {
  display: none;
}

/**
 * WooCommerce category/shop loops:
 * Some setups inject placeholder <li> items (or hidden items) that can still occupy a grid cell,
 * resulting in an "empty first column". Force any placeholder/hidden loop items to not take space.
 */
.ez-lswt-wc-archive ul.products > li.product.product-card--placeholder,
.ez-lswt-wc-archive ul.products > li.product.hidden,
.ez-lswt-wc-archive ul.products > li.product[style*="display:none"],
.ez-lswt-wc-archive ul.products > li.product:empty {
  display: none !important;
}

/* Ensure cards don't overflow their grid cell on narrow viewports */
.product-card {
  min-width: 0;
  border-radius: 12px !important;
  margin: 10px;
}

.product-card {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  z-index: 2;
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card:hover .product-media .product-visual {
  filter: brightness(1.1);
}
.product-card.hidden {
  display: none;
}
.product-card.animating {
  animation: card-appear 0.4s ease;
}

@keyframes card-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-media {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.4s;
}
.product-visual .product-svg {
  width: 60%;
  height: 80%;
}
.product-visual.pv--1 {
  background: radial-gradient(ellipse at 50% 40%, #2a1f0d 0%, #0d0a05 100%);
}
.product-visual.pv--2 {
  background: radial-gradient(ellipse at 50% 60%, #1a1a1a 0%, #080808 100%);
}
.product-visual.pv--3 {
  background: radial-gradient(ellipse at 30% 50%, #1a1215 0%, #080808 100%);
}
.product-visual.pv--4 {
  background: radial-gradient(ellipse at 50% 30%, #1a1508 0%, #080808 100%);
}
.product-visual.pv--5 {
  background: radial-gradient(ellipse at 50% 60%, #141414 0%, #080808 100%);
}
.product-visual.pv--6 {
  background: radial-gradient(ellipse at 50% 40%, #101015 0%, #080808 100%);
}

.product-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s, transform 0.3s;
}

.action-btn {
  width: 36px;
  height: 36px;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.action-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.action-btn.active {
  color: var(--gold);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 0px;
}
.product-badge.badge--new {
  background: var(--dark);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.product-badge.badge--bestseller {
  background: var(--gold);
  color: var(--black);
}
.product-badge.badge--sale {
  background: var(--accent-red);
  color: white;
}

.product-info {
  padding: 20px 24px 24px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.product-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-rating .stars {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: -1px;
}
.product-rating .rating-count {
  font-size: 10px;
  color: var(--muted);
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 6px;
  line-height: 1.2;
}

.product-desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 30px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price .price-current {
  font-size: 18px;
  font-weight: 500;
}
.product-price .price-sale {
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
}
.product-price .price-original {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--dark-4);
  color: var(--off-white);
  border: 1px solid var(--dark-4);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.add-to-cart:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.add-to-cart.added {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* WooCommerce archives (shop/category): force 3-column grid and theme button styles */
.ez-lswt-wc-archive ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2px;
  margin: 0;
  padding: 0;
}

/* Responsive: drop to 2 then 1 column */
@media (max-width: 991px) {
  .ez-lswt-wc-archive ul.products {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 575px) {
  .ez-lswt-wc-archive ul.products {
    grid-template-columns: 1fr;
  }
}
.ez-lswt-wc-archive ul.products > li.product {
  float: none;
  width: auto;
  margin: 10px !important;
  padding: 10px;
}

/* Make WooCommerce loop items visually match theme product cards */
.ez-lswt-wc-archive ul.products > li.product {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  margin: 10px !important;
}

.ez-lswt-wc-archive ul.products > li.product:hover {
  transform: translateY(-4px);
  z-index: 2;
}

/* Add to cart buttons on archives should match theme design/colors */
.ez-lswt-wc-archive a.button,
.ez-lswt-wc-archive .button,
.ez-lswt-wc-archive .button.add_to_cart_button,
.ez-lswt-wc-archive .button.product_type_simple,
.ez-lswt-wc-archive .button.product_type_variable,
.ez-lswt-wc-archive .button.product_type_external,
.ez-lswt-wc-archive .button.product_type_grouped {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--dark-4);
  color: var(--off-white);
  border: 1px solid var(--dark-4);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.ez-lswt-wc-archive a.button:hover,
.ez-lswt-wc-archive .button:hover,
.ez-lswt-wc-archive .button.add_to_cart_button:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.ez-lswt-wc-archive a.added_to_cart,
.ez-lswt-wc-archive .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Single product: Related products - force add-to-cart button to be gold, hover white */
.ez-lswt-wc-single .related .add-to-cart,
.ez-lswt-wc-single .related a.button,
.ez-lswt-wc-single .related .button.add_to_cart_button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.ez-lswt-wc-single .related .add-to-cart:hover,
.ez-lswt-wc-single .related a.button:hover,
.ez-lswt-wc-single .related .button.add_to_cart_button:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.load-more-wrap {
  text-align: center;
  margin-top: 60px;
}

img {
  border-radius: 12px !important;
}

.ez-lswt-wc-single .related > h2,
.ez-lswt-wc-single .related > h3 {
  margin-top: 24px;
}
.ez-lswt-wc-single .related .add-to-cart,
.ez-lswt-wc-single .related a.button,
.ez-lswt-wc-single .related .button.add_to_cart_button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  border-radius: 12px;
}
.ez-lswt-wc-single .related .add-to-cart:hover,
.ez-lswt-wc-single .related a.button:hover,
.ez-lswt-wc-single .related .button.add_to_cart_button:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.ez-lswt-wc-single .related li {
  min-height: 630px !important;
}

/* ============================================================
   WOOCOMMERCE LAYOUT (wishlist-like pages with aside)
   ============================================================ */
.ez-lswt-layout-with-aside {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.ez-lswt-layout-main {
  min-width: 0;
}

.ez-lswt-layout-aside {
  position: sticky;
  top: 110px;
}

.ez-lswt-aside-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  min-height: 100vh;
}

.ez-lswt-wc-archive .woocommerce-result-count,
.ez-lswt-wc-archive .woocommerce-ordering {
  margin: 0 0 18px;
}

.ez-lswt-wc-archive .woocommerce-ordering select {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.ez-lswt-wc-archive .woocommerce-ordering select:focus {
  border-color: var(--gold);
  color: var(--white);
}

.ez-lswt-wc-archive .woocommerce-before-shop-loop,
.ez-lswt-wc-archive .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}

/* Product category "buttons" (category list links) */
.ez-lswt-wc-archive .product-categories,
.ez-lswt-wc-archive .wc-block-product-categories-list,
.ez-lswt-wc-archive .wc-block-product-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ez-lswt-wc-archive .product-categories li,
.ez-lswt-wc-archive .wc-block-product-categories-list li,
.ez-lswt-wc-archive .wc-block-product-categories li {
  margin: 0;
  padding: 0;
}

.ez-lswt-wc-archive .product-categories a,
.ez-lswt-wc-archive .wc-block-product-categories-list a,
.ez-lswt-wc-archive .wc-block-product-categories a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  background: transparent;
}

.ez-lswt-wc-archive .product-categories a:hover,
.ez-lswt-wc-archive .wc-block-product-categories-list a:hover,
.ez-lswt-wc-archive .wc-block-product-categories a:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.ez-lswt-wc-archive .product-categories .current-cat > a,
.ez-lswt-wc-archive .product-categories .current-cat-parent > a,
.ez-lswt-wc-archive .wc-block-product-categories-list .current-cat > a,
.ez-lswt-wc-archive .wc-block-product-categories-list .current-cat-parent > a,
.ez-lswt-wc-archive .wc-block-product-categories .current-cat > a,
.ez-lswt-wc-archive .wc-block-product-categories .current-cat-parent > a {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Product page */
.ez-lswt-wc-single .ez-lswt-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ez-lswt-wc-single .woocommerce-product-gallery {
  margin-bottom: 18px;
}

/* Ensure the main product image is visible even if theme/global styles affect img sizing */
.ez-lswt-wc-single .woocommerce-product-gallery img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}

/* Fallback image wrapper (only used if gallery fails to render) */
.ez-lswt-single-product-fallback-media img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}

.ez-lswt-wc-single .woocommerce-product-gallery,
.ez-lswt-wc-single .summary {
  min-width: 0;
}

@media (max-width: 991.98px) {
  .ez-lswt-wc-single .ez-lswt-product {
    grid-template-columns: 1fr;
  }
}
.ez-lswt-wc-single .ez-lswt-product-summary .button,
.ez-lswt-wc-single .ez-lswt-product-summary button.single_add_to_cart_button {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  transition: var(--transition);
}

.ez-lswt-wc-single .ez-lswt-product-summary .button:hover,
.ez-lswt-wc-single .ez-lswt-product-summary button.single_add_to_cart_button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.ez-lswt-product-tabs-below {
  margin-top: 32px;
}

.ez-lswt-product-tabs-below .woocommerce-tabs {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.ez-lswt-product-tabs-below .woocommerce-tabs ul.tabs {
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border: 0;
}

.ez-lswt-product-tabs-below .woocommerce-tabs ul.tabs li {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}

.ez-lswt-product-tabs-below .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 14px;
}

.ez-lswt-product-tabs-below .woocommerce-tabs ul.tabs li.active a,
.ez-lswt-product-tabs-below .woocommerce-tabs ul.tabs li a:hover {
  border-color: rgba(var(--primary), 0.55);
}

@media (max-width: 991.98px) {
  .ez-lswt-layout-with-aside {
    grid-template-columns: 1fr;
  }
  .ez-lswt-layout-aside {
    position: static;
    top: auto;
  }
}
/* ============================================================
   WOOCOMMERCE RATINGS + REVIEWS (stars + review submit button)
   ============================================================ */
/* Make all WooCommerce star ratings gold (product cards, single product, reviews list) */
.woocommerce .star-rating,
.woocommerce .star-rating::before,
.woocommerce .star-rating span::before,
.woocommerce p.stars a,
.woocommerce p.stars a::before {
  color: var(--gold);
}

/* Ensure empty stars are still visible but subdued */
.woocommerce .star-rating::before {
  opacity: 0.35;
}

/* Hover/active state while selecting a rating in the review form */
.woocommerce p.stars:hover a::before,
.woocommerce p.stars.selected a::before,
.woocommerce p.stars a:hover ~ a::before {
  color: var(--gold);
  opacity: 1;
}

/* Review submit button: match theme gold button styling + radius */
.woocommerce #review_form #respond .form-submit input#submit,
.woocommerce #review_form #respond .form-submit button,
.woocommerce #review_form #respond .form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.woocommerce #review_form #respond .form-submit input#submit:hover,
.woocommerce #review_form #respond .form-submit button:hover,
.woocommerce #review_form #respond .form-submit .submit:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
  content: none;
  display: inline !important;
}

.woocommerce ul.products::after, .woocommerce ul.products::before, .woocommerce-page ul.products::after, .woocommerce-page ul.products::before {
  content: none;
  display: inline !important;
}

li.product {
  padding: 10px !important;
  background: var(--dark-2);
  min-height: 560px;
  width: 100%;
}

.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
  padding: 10px !important;
  background: var(--dark-2);
  min-height: 560px;
  width: 100%;
}

/* ============================================================
   WOOCOMMERCE CART (classic cart page) - match My Account look
   ============================================================ */
.woocommerce-cart .woocommerce {
  /* Hard overrides (some WC templates/plugins add very specific rules) */
}
.woocommerce-cart .woocommerce form.woocommerce-cart-form .coupon input[type=text],
.woocommerce-cart .woocommerce form.woocommerce-cart-form .coupon input[type=search],
.woocommerce-cart .woocommerce form.woocommerce-cart-form .coupon .input-text {
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
  padding: 14px 20px !important;
  background: var(--dark-2) !important;
  border: 1px solid var(--dark-4) !important;
  color: var(--white) !important;
  border-radius: 12px !important;
}
.woocommerce-cart .woocommerce {
  /* Totals table label column width (avoid relying on colspan) */
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table {
  table-layout: fixed !important;
  width: 100% !important;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table th {
  width: 200px !important;
  max-width: 200px !important;
  min-width: 200px !important;
  white-space: nowrap;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table td {
  width: auto !important;
}
.woocommerce-cart .woocommerce {
  /* Main cart form + totals: card look */
}
.woocommerce-cart .woocommerce form.woocommerce-cart-form,
.woocommerce-cart .woocommerce .cart-collaterals {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}
.woocommerce-cart .woocommerce {
  /* Table */
}
.woocommerce-cart .woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-cart .woocommerce table.shop_table th,
.woocommerce-cart .woocommerce table.shop_table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.woocommerce-cart .woocommerce table.shop_table th {
  color: var(--white);
  font-weight: 700;
}
.woocommerce-cart .woocommerce table.shop_table a {
  color: var(--white);
  text-decoration: none;
}
.woocommerce-cart .woocommerce table.shop_table a:hover {
  color: var(--gold);
}
.woocommerce-cart .woocommerce {
  /* Inputs (match homepage newsletter input style) */
}
.woocommerce-cart .woocommerce .input-text,
.woocommerce-cart .woocommerce select,
.woocommerce-cart .woocommerce textarea {
  width: 100%;
  border-radius: 12px;
  padding: 14px 20px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.woocommerce-cart .woocommerce .input-text:focus,
.woocommerce-cart .woocommerce select:focus,
.woocommerce-cart .woocommerce textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}
.woocommerce-cart .woocommerce .input-text::-moz-placeholder, .woocommerce-cart .woocommerce select::-moz-placeholder, .woocommerce-cart .woocommerce textarea::-moz-placeholder {
  color: var(--muted);
  opacity: 1;
}
.woocommerce-cart .woocommerce .input-text::placeholder,
.woocommerce-cart .woocommerce select::placeholder,
.woocommerce-cart .woocommerce textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.woocommerce-cart .woocommerce {
  /* Cart coupon input width */
}
.woocommerce-cart .woocommerce .coupon .input-text {
  width: 200px;
  max-width: 200px;
}
.woocommerce-cart .woocommerce {
  /* Cart totals table: force the label column to be 200px (fixes colspan/auto sizing issues) */
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table {
  table-layout: fixed;
  width: 100%;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table th {
  width: 200px;
  max-width: 200px;
  white-space: nowrap;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table td {
  width: auto;
}
.woocommerce-cart .woocommerce {
  /* Buttons: match newsletter subscribe button (.btn base look) */
}
.woocommerce-cart .woocommerce button,
.woocommerce-cart .woocommerce .button,
.woocommerce-cart .woocommerce input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--gold);
  border: 0;
  color: var(--black);
}
.woocommerce-cart .woocommerce button:hover,
.woocommerce-cart .woocommerce .button:hover,
.woocommerce-cart .woocommerce input[type=submit]:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.woocommerce-cart .woocommerce {
  /* Notices */
}
.woocommerce-cart .woocommerce .woocommerce-error,
.woocommerce-cart .woocommerce .woocommerce-message,
.woocommerce-cart .woocommerce .woocommerce-info {
  border-radius: 14px;
  padding: 12px 14px;
}

.feature-banner {
  padding: 120px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
  overflow: hidden;
}
.feature-banner .banner-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-banner .banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  margin: 16px 0 20px;
}
.feature-banner .banner-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.feature-banner .banner-text p {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 400px;
  line-height: 1.7;
}
.feature-banner .banner-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-banner .banner-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float-orb 6s ease-in-out infinite;
}
.feature-banner .banner-svg {
  width: 400px;
  height: 400px;
  max-width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  animation: slow-spin 40s linear infinite;
}

/* Responsive */
@media (max-width: 991.98px) {
  .feature-banner {
    padding: 80px 0;
  }
  .feature-banner .banner-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .feature-banner .banner-text p {
    max-width: 100%;
  }
  .feature-banner .banner-visual {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .feature-banner {
    padding: 64px 0;
  }
  .feature-banner .banner-content {
    padding: 0 16px;
  }
  .feature-banner .banner-text h2 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .feature-banner .banner-text p {
    margin-bottom: 28px;
  }
}
@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}
.testimonials {
  padding: 120px 0;
}

.testimonials-slider {
  position: relative;
  min-height: 180px;
}

.testimonial-slide {
  display: none;
}
.testimonial-slide.active {
  display: block;
  animation: fade-in 0.5s ease;
}
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--off-white);
  margin-bottom: 24px;
  max-width: 800px;
}
.testimonial-slide blockquote::before {
  content: '"';
  color: var(--gold);
  font-size: 1.2em;
}
.testimonial-slide blockquote::after {
  content: '"';
  color: var(--gold);
  font-size: 1.2em;
}
.testimonial-slide cite {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.t-dot {
  width: 24px;
  height: 3px;
  background: var(--dark-4);
  transition: var(--transition);
  cursor: pointer;
}
.t-dot.active {
  background: var(--gold);
  width: 40px;
}

.newsletter {
  padding: 80px 0;
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.newsletter .newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
}
.newsletter h2 em {
  font-style: italic;
  color: var(--gold);
}
.newsletter p {
  color: var(--muted);
  margin-top: 8px;
}

.newsletter-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 12px;
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form input::-moz-placeholder {
  color: var(--muted);
}
.newsletter-form input::placeholder {
  color: var(--muted);
}
.newsletter-form .btn {
  width: 100%;
  border-radius: 12px;
  white-space: nowrap;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form .form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .newsletter {
    padding: 64px 0;
  }
  .newsletter .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 575.98px) {
  .newsletter {
    padding: 52px 0;
  }
}
.site-footer {
  padding: 80px 0 40px;
  background: var(--dark);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.site-footer .footer-brand {
  min-width: 0;
}
.site-footer .footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 260px;
}
.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  letter-spacing: 0.3em;
  font-weight: 700;
}
.site-footer .footer-logo .logo-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: 0 0 auto;
}
.site-footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.site-footer .footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  transition: var(--transition);
}
.site-footer .footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.site-footer .footer-nav {
  min-width: 0;
}
.site-footer .footer-nav h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--off-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer .footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-nav ul li {
  margin-bottom: 10px;
}
.site-footer .footer-nav ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
}
.site-footer .footer-nav ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--dark-3);
}
.site-footer .footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  min-width: 0;
}
.site-footer .footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-legal a {
  font-size: 12px;
  color: var(--muted);
}
.site-footer .footer-legal a:hover {
  color: var(--gold);
}
@media (max-width: 991px) {
  .site-footer .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 60px 0 32px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .site-footer .footer-brand p {
    max-width: 100%;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer .footer-legal {
    gap: 14px;
  }
}
@media (max-width: 420px) {
  .site-footer .footer-logo {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 65px;
  width: 50px;
  height: 50px;
  z-index: 10;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  /* Match search popup overlay look */
  background: rgba(0, 0, 0, 0.55);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-left: 1px solid var(--dark-3);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--dark-3);
}
.cart-drawer .cart-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
}
.cart-drawer .cart-header h3 span {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}
.cart-drawer .cart-header .cart-close {
  font-size: 18px;
  color: var(--muted);
}
.cart-drawer .cart-header .cart-close:hover {
  color: var(--gold);
}
.cart-drawer .cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--dark-4) transparent;
}
.cart-drawer .cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
}
.cart-drawer .cart-empty svg {
  opacity: 0.3;
}
.cart-drawer .cart-empty p {
  font-size: 14px;
}
.cart-drawer .cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--dark-3);
}
.cart-drawer .cart-footer .cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cart-drawer .cart-footer .cart-subtotal span {
  font-size: 13px;
  color: var(--muted);
}
.cart-drawer .cart-footer .cart-subtotal strong {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 300;
}
.cart-drawer .cart-footer .cart-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
}
.cart-drawer .cart-footer .btn {
  margin-bottom: 10px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--dark-3);
  transition: background-color var(--transition);
}
.cart-item:hover {
  background: var(--dark-2);
}
.cart-item .cart-item-img {
  width: 70px;
  height: auto;
  background: var(--dark-3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  overflow: hidden;
}
.cart-item .cart-item-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-item .cart-item-info {
  flex: 1;
}
.cart-item .cart-item-name {
  font-size: 14px;
  margin-bottom: 4px;
}
.cart-item .cart-item-price {
  font-size: 13px;
  color: var(--gold);
}
.cart-item .cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.cart-item .cart-item-qty button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--dark-4);
  border-radius: 50%;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-item .cart-item-qty button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cart-item .cart-item-qty span {
  font-size: 13px;
  min-width: 20px;
  text-align: center;
}
.cart-item .cart-item-remove {
  color: var(--muted);
  font-size: 12px;
  transition: color var(--transition);
}
.cart-item .cart-item-remove:hover {
  color: var(--accent-red);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 900px;
  max-width: 95vw;
  max-height: 85vh;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius-lg);
  z-index: 3001;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  overflow-y: auto;
}
.quick-view-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.quick-view-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  color: var(--muted);
  z-index: 1;
}
.quick-view-modal .modal-close:hover {
  color: var(--gold);
}
.quick-view-modal .modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.quick-view-modal .modal-img {
  aspect-ratio: 1;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}
.quick-view-modal .modal-info {
  padding: 48px 40px;
}
.quick-view-modal .modal-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 8px;
}
.quick-view-modal .modal-info .modal-price {
  font-size: 22px;
  color: var(--gold);
  margin: 16px 0;
}
.quick-view-modal .modal-info .modal-desc {
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.quick-view-modal .modal-info .modal-specs {
  border-top: 1px solid var(--dark-3);
  padding-top: 24px;
  margin-bottom: 32px;
}
.quick-view-modal .modal-info .modal-specs li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-3);
  font-size: 13px;
}
.quick-view-modal .modal-info .modal-specs li span:first-child {
  color: var(--muted);
}
.quick-view-modal .modal-info .modal-specs li span:last-child {
  color: var(--off-white);
}

.woocommerce-checkout-wrap {
  background: transparent;
}
.woocommerce-checkout-wrap .woocommerce form .form-row {
  margin-bottom: 14px;
}
.woocommerce-checkout-wrap .woocommerce form .form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--white);
}
.woocommerce-checkout-wrap .woocommerce form {
  /* Match homepage newsletter input style */
}
.woocommerce-checkout-wrap .woocommerce form .input-text,
.woocommerce-checkout-wrap .woocommerce form input[type=text],
.woocommerce-checkout-wrap .woocommerce form input[type=email],
.woocommerce-checkout-wrap .woocommerce form input[type=tel],
.woocommerce-checkout-wrap .woocommerce form input[type=number],
.woocommerce-checkout-wrap .woocommerce form input[type=password],
.woocommerce-checkout-wrap .woocommerce form input[type=search],
.woocommerce-checkout-wrap .woocommerce form input[type=url],
.woocommerce-checkout-wrap .woocommerce form select,
.woocommerce-checkout-wrap .woocommerce form textarea {
  width: 100%;
  border-radius: 12px;
  padding: 14px 20px !important;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-text-fill-color: var(--white);
}
.woocommerce-checkout-wrap .woocommerce form .input-text:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=text]:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=email]:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=tel]:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=number]:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=password]:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=search]:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=url]:focus,
.woocommerce-checkout-wrap .woocommerce form select:focus,
.woocommerce-checkout-wrap .woocommerce form textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}
.woocommerce-checkout-wrap .woocommerce form .input-text::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form input[type=text]::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form input[type=email]::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form input[type=tel]::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form input[type=number]::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form input[type=password]::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form input[type=search]::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form input[type=url]::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form select::-moz-placeholder, .woocommerce-checkout-wrap .woocommerce form textarea::-moz-placeholder {
  color: var(--muted);
  opacity: 1;
}
.woocommerce-checkout-wrap .woocommerce form .input-text::placeholder,
.woocommerce-checkout-wrap .woocommerce form input[type=text]::placeholder,
.woocommerce-checkout-wrap .woocommerce form input[type=email]::placeholder,
.woocommerce-checkout-wrap .woocommerce form input[type=tel]::placeholder,
.woocommerce-checkout-wrap .woocommerce form input[type=number]::placeholder,
.woocommerce-checkout-wrap .woocommerce form input[type=password]::placeholder,
.woocommerce-checkout-wrap .woocommerce form input[type=search]::placeholder,
.woocommerce-checkout-wrap .woocommerce form input[type=url]::placeholder,
.woocommerce-checkout-wrap .woocommerce form select::placeholder,
.woocommerce-checkout-wrap .woocommerce form textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.woocommerce-checkout-wrap .woocommerce form .input-text:-webkit-autofill, .woocommerce-checkout-wrap .woocommerce form .input-text:-webkit-autofill:hover, .woocommerce-checkout-wrap .woocommerce form .input-text:-webkit-autofill:focus, .woocommerce-checkout-wrap .woocommerce form .input-text:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form input[type=text]:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form input[type=text]:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form input[type=text]:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=text]:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form input[type=email]:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form input[type=email]:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form input[type=email]:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=email]:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form input[type=tel]:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form input[type=tel]:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form input[type=tel]:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=tel]:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form input[type=number]:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form input[type=number]:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form input[type=number]:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=number]:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form input[type=password]:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form input[type=password]:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form input[type=password]:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=password]:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form input[type=search]:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form input[type=search]:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form input[type=search]:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=search]:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form input[type=url]:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form input[type=url]:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form input[type=url]:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form input[type=url]:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form select:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form select:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form select:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form select:-webkit-autofill:active,
.woocommerce-checkout-wrap .woocommerce form textarea:-webkit-autofill,
.woocommerce-checkout-wrap .woocommerce form textarea:-webkit-autofill:hover,
.woocommerce-checkout-wrap .woocommerce form textarea:-webkit-autofill:focus,
.woocommerce-checkout-wrap .woocommerce form textarea:-webkit-autofill:active {
  -webkit-text-fill-color: var(--white) !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px var(--dark-2) inset !important;
  border: 1px solid var(--dark-4);
}
.woocommerce-checkout-wrap #order_review {
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark-2);
}
.woocommerce-checkout-wrap {
  /* If any plugin adds MyAccount-like wrappers inside checkout, neutralize them */
}
.woocommerce-checkout-wrap .woocommerce-MyAccount-navigation,
.woocommerce-checkout-wrap .woocommerce-MyAccount-content {
  background: transparent;
  border: 0;
  border-radius: 12px;
  padding: 0;
}
.woocommerce-checkout-wrap .woocommerce-checkout-review-order-table {
  width: 100%;
}
.woocommerce-checkout-wrap .woocommerce-checkout-review-order-table th,
.woocommerce-checkout-wrap .woocommerce-checkout-review-order-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.woocommerce-checkout-wrap .woocommerce-checkout-review-order-table tr:last-child th,
.woocommerce-checkout-wrap .woocommerce-checkout-review-order-table tr:last-child td {
  border-bottom: 0;
}
.woocommerce-checkout-wrap #payment {
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark-2);
  margin-top: 16px;
}
.woocommerce-checkout-wrap {
  /* Match newsletter subscribe button (uses .btn base look) */
}
.woocommerce-checkout-wrap #place_order {
  width: 100%;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: var(--gold);
  border: 0;
  color: var(--black);
}
.woocommerce-checkout-wrap #place_order:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.woocommerce-checkout-wrap .woocommerce-error,
.woocommerce-checkout-wrap .woocommerce-message,
.woocommerce-checkout-wrap .woocommerce-info {
  border-radius: 12px;
  padding: 14px 20px !important;
}

/* ============================================================
   WooCommerce Blocks - Checkout
   Notes:
   - Blocks checkout does NOT use classic WooCommerce templates.
   - These selectors target the block-based checkout markup.
   ============================================================ */
.wc-block-checkout,
.wp-block-woocommerce-checkout {
  /* Inputs */
}
.wc-block-checkout input[type=text],
.wc-block-checkout input[type=email],
.wc-block-checkout input[type=tel],
.wc-block-checkout input[type=number],
.wc-block-checkout input[type=password],
.wc-block-checkout input[type=search],
.wc-block-checkout input[type=url],
.wc-block-checkout textarea,
.wc-block-checkout select,
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-textarea textarea,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input,
.wp-block-woocommerce-checkout input[type=text],
.wp-block-woocommerce-checkout input[type=email],
.wp-block-woocommerce-checkout input[type=tel],
.wp-block-woocommerce-checkout input[type=number],
.wp-block-woocommerce-checkout input[type=password],
.wp-block-woocommerce-checkout input[type=search],
.wp-block-woocommerce-checkout input[type=url],
.wp-block-woocommerce-checkout textarea,
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout .wc-block-components-text-input input,
.wp-block-woocommerce-checkout .wc-block-components-textarea textarea,
.wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input {
  width: 100%;
  border-radius: 12px;
  padding: 14px 20px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-text-fill-color: var(--white);
}
.wc-block-checkout input[type=text]:focus,
.wc-block-checkout input[type=email]:focus,
.wc-block-checkout input[type=tel]:focus,
.wc-block-checkout input[type=number]:focus,
.wc-block-checkout input[type=password]:focus,
.wc-block-checkout input[type=search]:focus,
.wc-block-checkout input[type=url]:focus,
.wc-block-checkout textarea:focus,
.wc-block-checkout select:focus,
.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-textarea textarea:focus,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input:focus,
.wp-block-woocommerce-checkout input[type=text]:focus,
.wp-block-woocommerce-checkout input[type=email]:focus,
.wp-block-woocommerce-checkout input[type=tel]:focus,
.wp-block-woocommerce-checkout input[type=number]:focus,
.wp-block-woocommerce-checkout input[type=password]:focus,
.wp-block-woocommerce-checkout input[type=search]:focus,
.wp-block-woocommerce-checkout input[type=url]:focus,
.wp-block-woocommerce-checkout textarea:focus,
.wp-block-woocommerce-checkout select:focus,
.wp-block-woocommerce-checkout .wc-block-components-text-input input:focus,
.wp-block-woocommerce-checkout .wc-block-components-textarea textarea:focus,
.wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input:focus {
  border-color: var(--gold);
  box-shadow: none;
}
.wc-block-checkout input[type=text]::-moz-placeholder, .wc-block-checkout input[type=email]::-moz-placeholder, .wc-block-checkout input[type=tel]::-moz-placeholder, .wc-block-checkout input[type=number]::-moz-placeholder, .wc-block-checkout input[type=password]::-moz-placeholder, .wc-block-checkout input[type=search]::-moz-placeholder, .wc-block-checkout input[type=url]::-moz-placeholder, .wc-block-checkout textarea::-moz-placeholder, .wc-block-checkout select::-moz-placeholder, .wc-block-checkout .wc-block-components-text-input input::-moz-placeholder, .wc-block-checkout .wc-block-components-textarea textarea::-moz-placeholder, .wc-block-checkout .wc-block-components-combobox .components-combobox-control__input::-moz-placeholder, .wp-block-woocommerce-checkout input[type=text]::-moz-placeholder, .wp-block-woocommerce-checkout input[type=email]::-moz-placeholder, .wp-block-woocommerce-checkout input[type=tel]::-moz-placeholder, .wp-block-woocommerce-checkout input[type=number]::-moz-placeholder, .wp-block-woocommerce-checkout input[type=password]::-moz-placeholder, .wp-block-woocommerce-checkout input[type=search]::-moz-placeholder, .wp-block-woocommerce-checkout input[type=url]::-moz-placeholder, .wp-block-woocommerce-checkout textarea::-moz-placeholder, .wp-block-woocommerce-checkout select::-moz-placeholder, .wp-block-woocommerce-checkout .wc-block-components-text-input input::-moz-placeholder, .wp-block-woocommerce-checkout .wc-block-components-textarea textarea::-moz-placeholder, .wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input::-moz-placeholder {
  color: var(--muted);
  opacity: 1;
}
.wc-block-checkout input[type=text]::placeholder,
.wc-block-checkout input[type=email]::placeholder,
.wc-block-checkout input[type=tel]::placeholder,
.wc-block-checkout input[type=number]::placeholder,
.wc-block-checkout input[type=password]::placeholder,
.wc-block-checkout input[type=search]::placeholder,
.wc-block-checkout input[type=url]::placeholder,
.wc-block-checkout textarea::placeholder,
.wc-block-checkout select::placeholder,
.wc-block-checkout .wc-block-components-text-input input::placeholder,
.wc-block-checkout .wc-block-components-textarea textarea::placeholder,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input::placeholder,
.wp-block-woocommerce-checkout input[type=text]::placeholder,
.wp-block-woocommerce-checkout input[type=email]::placeholder,
.wp-block-woocommerce-checkout input[type=tel]::placeholder,
.wp-block-woocommerce-checkout input[type=number]::placeholder,
.wp-block-woocommerce-checkout input[type=password]::placeholder,
.wp-block-woocommerce-checkout input[type=search]::placeholder,
.wp-block-woocommerce-checkout input[type=url]::placeholder,
.wp-block-woocommerce-checkout textarea::placeholder,
.wp-block-woocommerce-checkout select::placeholder,
.wp-block-woocommerce-checkout .wc-block-components-text-input input::placeholder,
.wp-block-woocommerce-checkout .wc-block-components-textarea textarea::placeholder,
.wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input::placeholder {
  color: var(--muted);
  opacity: 1;
}
.wc-block-checkout input[type=text]:-webkit-autofill, .wc-block-checkout input[type=text]:-webkit-autofill:hover, .wc-block-checkout input[type=text]:-webkit-autofill:focus, .wc-block-checkout input[type=text]:-webkit-autofill:active,
.wc-block-checkout input[type=email]:-webkit-autofill,
.wc-block-checkout input[type=email]:-webkit-autofill:hover,
.wc-block-checkout input[type=email]:-webkit-autofill:focus,
.wc-block-checkout input[type=email]:-webkit-autofill:active,
.wc-block-checkout input[type=tel]:-webkit-autofill,
.wc-block-checkout input[type=tel]:-webkit-autofill:hover,
.wc-block-checkout input[type=tel]:-webkit-autofill:focus,
.wc-block-checkout input[type=tel]:-webkit-autofill:active,
.wc-block-checkout input[type=number]:-webkit-autofill,
.wc-block-checkout input[type=number]:-webkit-autofill:hover,
.wc-block-checkout input[type=number]:-webkit-autofill:focus,
.wc-block-checkout input[type=number]:-webkit-autofill:active,
.wc-block-checkout input[type=password]:-webkit-autofill,
.wc-block-checkout input[type=password]:-webkit-autofill:hover,
.wc-block-checkout input[type=password]:-webkit-autofill:focus,
.wc-block-checkout input[type=password]:-webkit-autofill:active,
.wc-block-checkout input[type=search]:-webkit-autofill,
.wc-block-checkout input[type=search]:-webkit-autofill:hover,
.wc-block-checkout input[type=search]:-webkit-autofill:focus,
.wc-block-checkout input[type=search]:-webkit-autofill:active,
.wc-block-checkout input[type=url]:-webkit-autofill,
.wc-block-checkout input[type=url]:-webkit-autofill:hover,
.wc-block-checkout input[type=url]:-webkit-autofill:focus,
.wc-block-checkout input[type=url]:-webkit-autofill:active,
.wc-block-checkout textarea:-webkit-autofill,
.wc-block-checkout textarea:-webkit-autofill:hover,
.wc-block-checkout textarea:-webkit-autofill:focus,
.wc-block-checkout textarea:-webkit-autofill:active,
.wc-block-checkout select:-webkit-autofill,
.wc-block-checkout select:-webkit-autofill:hover,
.wc-block-checkout select:-webkit-autofill:focus,
.wc-block-checkout select:-webkit-autofill:active,
.wc-block-checkout .wc-block-components-text-input input:-webkit-autofill,
.wc-block-checkout .wc-block-components-text-input input:-webkit-autofill:hover,
.wc-block-checkout .wc-block-components-text-input input:-webkit-autofill:focus,
.wc-block-checkout .wc-block-components-text-input input:-webkit-autofill:active,
.wc-block-checkout .wc-block-components-textarea textarea:-webkit-autofill,
.wc-block-checkout .wc-block-components-textarea textarea:-webkit-autofill:hover,
.wc-block-checkout .wc-block-components-textarea textarea:-webkit-autofill:focus,
.wc-block-checkout .wc-block-components-textarea textarea:-webkit-autofill:active,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill:hover,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill:focus,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill:active,
.wp-block-woocommerce-checkout input[type=text]:-webkit-autofill,
.wp-block-woocommerce-checkout input[type=text]:-webkit-autofill:hover,
.wp-block-woocommerce-checkout input[type=text]:-webkit-autofill:focus,
.wp-block-woocommerce-checkout input[type=text]:-webkit-autofill:active,
.wp-block-woocommerce-checkout input[type=email]:-webkit-autofill,
.wp-block-woocommerce-checkout input[type=email]:-webkit-autofill:hover,
.wp-block-woocommerce-checkout input[type=email]:-webkit-autofill:focus,
.wp-block-woocommerce-checkout input[type=email]:-webkit-autofill:active,
.wp-block-woocommerce-checkout input[type=tel]:-webkit-autofill,
.wp-block-woocommerce-checkout input[type=tel]:-webkit-autofill:hover,
.wp-block-woocommerce-checkout input[type=tel]:-webkit-autofill:focus,
.wp-block-woocommerce-checkout input[type=tel]:-webkit-autofill:active,
.wp-block-woocommerce-checkout input[type=number]:-webkit-autofill,
.wp-block-woocommerce-checkout input[type=number]:-webkit-autofill:hover,
.wp-block-woocommerce-checkout input[type=number]:-webkit-autofill:focus,
.wp-block-woocommerce-checkout input[type=number]:-webkit-autofill:active,
.wp-block-woocommerce-checkout input[type=password]:-webkit-autofill,
.wp-block-woocommerce-checkout input[type=password]:-webkit-autofill:hover,
.wp-block-woocommerce-checkout input[type=password]:-webkit-autofill:focus,
.wp-block-woocommerce-checkout input[type=password]:-webkit-autofill:active,
.wp-block-woocommerce-checkout input[type=search]:-webkit-autofill,
.wp-block-woocommerce-checkout input[type=search]:-webkit-autofill:hover,
.wp-block-woocommerce-checkout input[type=search]:-webkit-autofill:focus,
.wp-block-woocommerce-checkout input[type=search]:-webkit-autofill:active,
.wp-block-woocommerce-checkout input[type=url]:-webkit-autofill,
.wp-block-woocommerce-checkout input[type=url]:-webkit-autofill:hover,
.wp-block-woocommerce-checkout input[type=url]:-webkit-autofill:focus,
.wp-block-woocommerce-checkout input[type=url]:-webkit-autofill:active,
.wp-block-woocommerce-checkout textarea:-webkit-autofill,
.wp-block-woocommerce-checkout textarea:-webkit-autofill:hover,
.wp-block-woocommerce-checkout textarea:-webkit-autofill:focus,
.wp-block-woocommerce-checkout textarea:-webkit-autofill:active,
.wp-block-woocommerce-checkout select:-webkit-autofill,
.wp-block-woocommerce-checkout select:-webkit-autofill:hover,
.wp-block-woocommerce-checkout select:-webkit-autofill:focus,
.wp-block-woocommerce-checkout select:-webkit-autofill:active,
.wp-block-woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill,
.wp-block-woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill:hover,
.wp-block-woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill:focus,
.wp-block-woocommerce-checkout .wc-block-components-text-input input:-webkit-autofill:active,
.wp-block-woocommerce-checkout .wc-block-components-textarea textarea:-webkit-autofill,
.wp-block-woocommerce-checkout .wc-block-components-textarea textarea:-webkit-autofill:hover,
.wp-block-woocommerce-checkout .wc-block-components-textarea textarea:-webkit-autofill:focus,
.wp-block-woocommerce-checkout .wc-block-components-textarea textarea:-webkit-autofill:active,
.wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill,
.wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill:hover,
.wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill:focus,
.wp-block-woocommerce-checkout .wc-block-components-combobox .components-combobox-control__input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--white) !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px var(--dark-2) inset !important;
  border: 1px solid var(--dark-4);
}
.wc-block-checkout,
.wp-block-woocommerce-checkout {
  /* Labels */
}
.wc-block-checkout .wc-block-components-text-input label,
.wc-block-checkout .wc-block-components-textarea label,
.wc-block-checkout .wc-block-components-combobox label,
.wc-block-checkout .wc-block-components-checkbox__label,
.wc-block-checkout .wc-block-components-radio-control__label,
.wp-block-woocommerce-checkout .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-block-components-textarea label,
.wp-block-woocommerce-checkout .wc-block-components-combobox label,
.wp-block-woocommerce-checkout .wc-block-components-checkbox__label,
.wp-block-woocommerce-checkout .wc-block-components-radio-control__label {
  font-weight: 600;
  color: var(--white);
}
.wc-block-checkout,
.wp-block-woocommerce-checkout {
  /* Order summary / totals panels (best-effort; classnames vary by WC Blocks versions) */
}
.wc-block-checkout .wc-block-components-order-summary,
.wc-block-checkout .wc-block-components-totals-wrapper,
.wc-block-checkout .wc-block-checkout__order-summary,
.wp-block-woocommerce-checkout .wc-block-components-order-summary,
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout .wc-block-checkout__order-summary {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark-2);
}
.wc-block-checkout,
.wp-block-woocommerce-checkout {
  /* Primary action button */
}
.wc-block-checkout .wc-block-components-checkout-place-order-button,
.wc-block-checkout button.wc-block-components-button,
.wc-block-checkout .wc-block-components-button:not(.is-link),
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-checkout button.wc-block-components-button,
.wp-block-woocommerce-checkout .wc-block-components-button:not(.is-link) {
  width: 100%;
  border-radius: 12px;
  padding: 14px 20px !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: var(--gold);
  border: 0;
  color: var(--black);
}
.wc-block-checkout .wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout button.wc-block-components-button:hover,
.wc-block-checkout .wc-block-components-button:not(.is-link):hover,
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.wp-block-woocommerce-checkout button.wc-block-components-button:hover,
.wp-block-woocommerce-checkout .wc-block-components-button:not(.is-link):hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.wc-block-checkout,
.wp-block-woocommerce-checkout {
  /* Notices */
}
.wc-block-checkout .wc-block-components-notice-banner,
.wc-block-checkout .wc-block-components-notice-banner__content,
.wp-block-woocommerce-checkout .wc-block-components-notice-banner,
.wp-block-woocommerce-checkout .wc-block-components-notice-banner__content {
  border-radius: 12px;
}

.woocommerce-info {
  border-top-color: var(--gold);
}

.woocommerce-info::before {
  color: var(--gold);
}

:where(.woocommerce) .select2-container .select2-dropdown, :where(.woocommerce) .select2-container .select2-selection {
  background-color: var(--black) !important;
  border: none;
  border-radius: 12px;
}

.input-text, .select2-selection__rendered, .select2-selection .select2-selection--single {
  flex: 1;
  min-width: 0;
  padding: 14px 20px !important;
  background: var(--dark-2) !important;
  border: 1px solid var(--dark-4) !important;
  color: var(--white) !important;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 12px;
}
.input-text:focus, .select2-selection__rendered:focus, .select2-selection .select2-selection--single:focus {
  border-color: var(--gold);
}
.input-text::-moz-placeholder, .select2-selection__rendered::-moz-placeholder, .select2-selection .select2-selection--single::-moz-placeholder {
  color: var(--muted);
}
.input-text::placeholder, .select2-selection__rendered::placeholder, .select2-selection .select2-selection--single::placeholder {
  color: var(--muted);
}

.actions button {
  height: 30px !important;
  padding: 15px !important;
  background-color: var(--white) !important;
  color: var(--black) !important;
}

.actions button:hover {
  height: 30px !important;
  padding: 14px 20px !important;
  background-color: var(--gold) !important;
  color: var(--black) !important;
}

.cart-collaterals {
  margin-top: 20px;
}

.cart_totals {
  min-width: 100%;
}

.woocommerce-checkout, .woocommerce-cart, .page-template-default {
  font-family: var(--font-body);
}

.cart_totals h2, .woocommerce-billing-fields h3, .woocommerce-form__label-for-checkbox span, .page-template-default h2, .page-template-default h3, .page-template-default h4 {
  font-family: var(--font-display);
}

.screen-reader-text, .actions button {
  padding: 27px !important;
}

textarea {
  min-height: 200px;
}

.woocommerce-account .woocommerce {
  /* Layout: navigation + content */
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  min-width: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation li {
  margin: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation a:hover {
  border-color: rgba(var(--primary), 0.55);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .is-active > a {
  border-color: var(--gold);
  color: var(--gold);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content h3 {
  color: var(--white);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  /* Forms */
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row {
  margin-bottom: 14px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--white);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .input-text,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form select,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form textarea {
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  outline: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .input-text:focus,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form select:focus,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form textarea:focus {
  border-color: rgba(var(--primary), 0.55);
  box-shadow: 0 0 0 4px rgba(var(--primary), 0.12);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form button,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .button,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form input[type=submit] {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form button:hover,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .button:hover,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form input[type=submit]:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  /* Tables */
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content table.shop_table th,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content table.shop_table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content table.shop_table th {
  color: var(--white);
  font-weight: 700;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  /* Notices */
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info {
  border-radius: 14px;
  padding: 12px 14px;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: slide-in-right 0.3s ease;
}
.toast.toast--success {
  border-left-color: #4caf50;
}
.toast.toast--info {
  border-left-color: #2196f3;
}
.toast .toast-icon {
  font-size: 16px;
}
.toast .toast-msg {
  font-size: 13px;
  flex: 1;
}
.toast .toast-close {
  color: var(--muted);
  font-size: 14px;
}
.toast .toast-close:hover {
  color: var(--white);
}

@keyframes slide-in-right {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media all and (max-width: 319px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    padding: 0 14px;
  }
  .site-header .header-inner {
    padding: 0 14px;
  }
  .hero {
    padding: 40px 14px 40px 70px;
  }
  .cart-drawer {
    width: 100%;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: none;
  }
  .fullscreen-nav {
    position: absolute;
    min-height: 1050vh;
    padding-top: 50px;
    align-items: flex-start;
  }
  .fullscreen-nav .nav-content {
    padding: 0px;
    flex-direction: column;
    gap: 0px;
  }
  .ez-lswt-aside-card {
    min-height: auto;
    min-width: 98%;
  }
  .hero-content {
    padding-top: 0px;
    position: relative;
    left: -32px;
  }
  .nav-links li {
    overflow-y: scroll !important;
  }
  .nav-links li a {
    font-size: 19px !important;
    align-items: start;
  }
}
@media all and (min-width: 320px) and (max-width: 479px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    padding: 0 16px;
  }
  .site-header .header-inner {
    padding: 0 16px;
  }
  .hero {
    padding: 50px 14px 50px 70px;
  }
  .cart-drawer {
    width: 100%;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: none;
  }
  .filter-tabs {
    overflow-x: auto;
  }
  .fullscreen-nav {
    position: absolute;
    min-height: 1050vh;
    padding-top: 50px;
    align-items: flex-start;
  }
  .fullscreen-nav .nav-content {
    padding: 0px;
    flex-direction: column;
    gap: 0px;
  }
  .ez-lswt-aside-card {
    min-height: auto;
    min-width: 98%;
  }
  .hero-content {
    padding-top: 0px;
    position: relative;
    left: -32px;
  }
  .nav-links li {
    overflow-y: scroll !important;
  }
  .nav-links li a {
    font-size: 19px !important;
    align-items: start;
  }
}
@media all and (min-width: 480px) and (max-width: 575px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    padding: 0 18px;
  }
  .site-header .header-inner {
    padding: 0 18px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    width: 100%;
  }
  .hero-stats {
    display: none;
  }
  .filter-tabs {
    overflow-x: auto;
  }
  .fullscreen-nav {
    position: absolute;
    min-height: 1050vh;
    padding-top: 50px;
    align-items: flex-start;
  }
  .fullscreen-nav .nav-content {
    padding: 0px;
    flex-direction: column;
    gap: 0px;
  }
  .ez-lswt-aside-card {
    min-height: auto;
    min-width: 98%;
  }
  .hero-content {
    padding-top: 0px;
    position: relative;
    left: -32px;
  }
  .nav-links li {
    overflow-y: scroll !important;
  }
  .nav-links li a {
    font-size: 19px !important;
    align-items: start;
  }
}
@media all and (min-width: 576px) and (max-width: 767px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    padding: 0 20px;
  }
  .site-header .header-inner {
    padding: 0 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .quick-view-modal .modal-content {
    grid-template-columns: 1fr;
  }
  .cart-drawer {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .filter-tabs {
    overflow-x: auto;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fullscreen-nav {
    position: absolute;
    min-height: 1050vh;
    padding-top: 50px;
    align-items: flex-start;
  }
  .fullscreen-nav .nav-content {
    padding: 0px;
    flex-direction: column;
    gap: 0px;
  }
  .hero-stats {
    display: none;
  }
  .ez-lswt-aside-card {
    min-height: auto;
    min-width: 98%;
  }
  .hero-content {
    padding-top: 0px;
    position: relative;
    left: -32px;
  }
  .nav-links li {
    overflow-y: scroll !important;
  }
  .nav-links li a {
    font-size: 19px !important;
    align-items: start;
  }
}
@media all and (min-width: 768px) and (max-width: 991px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .collections-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .collections-grid .collection-card--large {
    grid-row: auto;
  }
  .collections-grid .collection-card--wide {
    grid-column: auto;
  }
  .feature-banner .banner-content {
    grid-template-columns: 1fr;
  }
  .banner-visual {
    display: none;
  }
  .newsletter .newsletter-inner {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    display: none;
  }
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .container {
    max-width: 960px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    max-width: 1140px;
  }
}
@media all and (min-width: 1400px) {
  html, body, #siteContent {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    max-width: 1320px;
  }
}/*# sourceMappingURL=css.css.map */