:root{
  --header-height: 122px;
  --triangle-height: 56px;
  --header-bg: #0A0A0B;
  --body-bg: #0A0A0B;
  --panel-bg: #0F1113;
  --text-soft: #ECEBE6;
  --footer-grey: #9CA3AF;
  --accent: #C8A96B;
  --focus: #8AB6FF;
  --gap: 24px;
  --r-card: 20px;
  --shadow-1: 0 2px 12px rgba(0,0,0,.35);
  --shadow-2: 0 12px 40px rgba(0,0,0,.5);
  --container-w: 1200px;
  --display-font: "Ms Madi", cursive;
  --sans: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html{ box-sizing: border-box; }
*, *::before, *::after{ box-sizing: inherit; }
body{
  margin:0; background: var(--body-bg); color: var(--text-soft);
  font-family: var(--sans); font-size: 16px; line-height: 1.5;
}

/* Containers */
.container{ width: min(100% - 32px, var(--container-w)); margin-inline: auto; }
.container.narrow{ width: min(100% - 32px, 900px); }

/* Typography */
.display{ font-family: var(--display-font); font-weight: 400; font-size: clamp(40px, 6vw, 64px); line-height: 1.1; }
.h3{ font-weight: 700; font-size: 22px; line-height: 1.25; }

a{ color: inherit; text-decoration: none; }
a:focus-visible{ outline: 2px solid var(--focus); outline-offset: 3px; }

/* Buttons */
.btn-primary, .btn-secondary{
  display:inline-block; padding: 12px 20px; border-radius: 999px;
  font-weight: 700; letter-spacing: .02em; transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary{ background: #F7F5F2; color: #0A0A0B; box-shadow: var(--shadow-1); }
.btn-primary:hover{ transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-secondary{ background: transparent; color: var(--text-soft); border:1px solid rgba(247,245,242,.22); }
.btn-secondary:hover{ transform: translateY(-1px); }

/* WooCommerce lightbox (PhotoSwipe) rounded corners */
.pswp__img {
  border-radius: 20px; /* adjust px value as you like */
  overflow: hidden;
}

/* optional: also round the background frame if present */
.pswp__container,
.pswp__zoom-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.woocommerce-product-gallery__image img {
  border-radius: 20px;
  	
}

/* Add 20px space to the left of the main product image on desktop */
@media (min-width: 1025px) {
  .single-product .woocommerce-product-gallery {
    margin-left: 20px;
  }
}

/* Add 20px space to the left of breadcrumbs on desktop */
@media (min-width: 1025px) {
  .single-product .woocommerce-breadcrumb {
    margin-left: 20px;
  }
}

/* Add 20px space to the left of product description/tabs on desktop */
@media (min-width: 1025px) {
  .single-product .woocommerce-tabs {
    margin-left: 20px;
  }
}

/* Header with triangle */
.site-header{
  position: sticky; top:0; z-index:50;
  height: calc(var(--header-height) + var(--triangle-height));
  pointer-events: none;
}
.site-header .header-inner{
  position: relative; height: var(--header-height);
  background: var(--header-bg); display:grid; grid-template-columns: 1fr auto 1fr;
  align-items:center; padding: 0 clamp(16px, 4vw, 48px);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
  pointer-events: all; color: var(--text-soft);
}
.site-header .header-inner::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%); top:100%;
  width:0; height:0;
  border-left: calc(var(--triangle-height) * 1.1) solid transparent;
  border-right: calc(var(--triangle-height) * 1.1) solid transparent;
  border-top: var(--triangle-height) solid var(--header-bg);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.nav-left, .nav-right{ display:flex; gap: var(--gap); align-items:center; }
.nav-right{ justify-content:flex-end; }
.header-inner .menu-left, .header-inner .menu-right{ display:flex; gap: var(--gap); list-style:none; margin:0; padding:0; }
.header-inner .menu-left li a, .header-inner .menu-right li a{
  position:relative; font-weight:600; font-size:14px;
}
.header-inner .menu-left li a:hover::after, .header-inner .menu-right li a:hover::after{
  content:""; position:absolute; left:0; right:0; bottom:-8px; height:2px; background: var(--accent);
}

.brand{ display:grid; place-items:center; position:relative; z-index:2; padding-inline:12px; }
.custom-logo, .brand img{ height: calc(var(--header-height) * 1.2); width:auto; object-fit:contain; }

/* Make the header a positioning context */
.site-header .header-inner{
  position: relative;
  /* ...keep the rest... */
}

/* Hard-center the brand over the exact middle of the header */
.brand{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* perfect center */
  padding: 0;                        /* remove side padding that can offset */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure the logo itself has no stray spacing */
.custom-logo, .brand img{
  display: block;             /* kill inline-gap */
  height: calc(var(--header-height) * 1.2);
  width: auto;
  object-fit: contain;
}

/* Hero full-bleed canvas */
.hero-canvas{ position:relative; width:100vw; min-height:100svh; background:#F7F5F2; overflow:hidden; }
.hero-canvas canvas{ position:absolute; inset:0; width:100%; height:100%; }
.hero-controls{ position:absolute; left:50%; bottom:48px; transform:translateX(-50%); display:flex; gap:12px; }

/* Auctions grid */
.auctions-section{ padding: 96px 0; }
.section-head{ margin-bottom: 24px; }
.auction-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card{ background: var(--panel-bg); border-radius: var(--r-card); box-shadow: var(--shadow-2); overflow:hidden; }
.card.light{ background: #F7F5F2; color:#0A0A0B; }
.auction-thumb img, .spotlight-thumb img{ display:block; width:100%; height:auto; }
.auction-body, .spotlight-body{ padding: 16px 18px 20px; }
.auction-meta{ display:flex; gap:12px; flex-wrap:wrap; opacity:.9; font-size:14px; }
.auction-bid, .auction-price{ font-weight:700; color: var(--accent); }

/* Spotlight */
.spotlight-section{ padding: 72px 0; }
.spotlight-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Custom blocks container */
.custom-blocks{ padding: 72px 0; }

/* About section */
.about-artist{ padding: 96px 0; }
.about-wrap{ display:grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items:center; padding: 24px; }
.about-ctas{ display:flex; gap:12px; margin-top: 12px; }



/* Footer */
.site-footer{ margin-top: 96px; padding: 32px 0; background: var(--header-bg); color: var(--footer-grey); }
.footer-inner{ width:min(100% - 32px, var(--container-w)); margin-inline:auto; display:flex; justify-content:space-between; align-items:center; gap:24px; }
.menu-footer{ list-style:none; display:flex; gap:16px; padding:0; margin:0; }

/* Woo styling quick pass */
body.luxlight-woo .woocommerce{ width:min(100% - 32px, var(--container-w)); margin-inline:auto; }
body.luxlight-woo .woocommerce .button{ border-radius:999px; }
body.luxlight-woo .woocommerce div.product .product_title{ color: var(--text-soft); }
body.luxlight-woo .woocommerce div.product p.price, 
body.luxlight-woo .woocommerce div.product span.price{ color: var(--accent); font-weight:700; }

/* Responsive */
@media (max-width: 1024px){
  .auction-grid, .spotlight-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-wrap{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  :root{ --header-height: 56px; --triangle-height: 18px; }
  .nav-left{ display:none; }
  .auction-grid, .spotlight-grid{ grid-template-columns: 1fr; }
  .hero-controls{ bottom:24px; }
}
