:root {
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --ink: #0A0A0A;
  --accent: #0A0A0A;
  --muted: #555555;
  --chrome: #222222;
  --font-display: "Josefin Sans", sans-serif;
  --font-body: "Josefin Sans", sans-serif;
  --font-nav: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --font-footer: "Poppins", sans-serif;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 40px;
  --radius: 4px;
  --wrap: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
:where(body) {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.skip-link:focus {
  clip: auto; height: auto; width: auto;
  background: var(--ink); color: var(--bg);
  padding: 8px 12px; z-index: 10000;
}
.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 100; background: var(--ink); color: #fff; }
.header-inner {
  width: min(100% - 16px, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 88px;
}
.site-logo img { height: 64px; width: auto; }
.footer-brand .site-logo img { height: 135px; width: auto; max-width: 100%; }
.logo-fallback { color: #fff; font-weight: 700; letter-spacing: 0.12em; }
.primary-nav { justify-self: center; }
.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li > a {
  display: flex; align-items: center; gap: 6px; color: #fff; font-family: var(--font-nav);
  font-size: 20px; line-height: 40px; text-transform: uppercase; padding: 0 10px;
  white-space: nowrap;
}
.menu-chevron { width: 12px; height: 12px; flex: none; fill: currentColor; }
.nav-toggle { display: none; background: var(--chrome); border: 0; width: 48px; height: 40px; border-radius: 2px; cursor: pointer; }
.nav-toggle-box, .nav-toggle-box::before, .nav-toggle-box::after {
  display: block; width: 24px; height: 3px; background: #ddd; border-radius: 4px; position: relative;
}
.nav-toggle-box::before, .nav-toggle-box::after { content: ""; position: absolute; left: 0; }
.nav-toggle-box::before { top: -8px; }
.nav-toggle-box::after { top: 8px; }
.mega { position: static; }
.mega-panel {
  display: none; position: absolute; left: 0; right: 0;
  background: var(--surface); color: var(--ink);
  padding: 18px 24px 28px; z-index: 40;
  grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.mega:hover .mega-panel, .mega:focus-within .mega-panel { display: grid; }
.mega-head { display: block; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.mega-col ul { list-style: none; margin: 0; padding: 0; }
.mega-col li a { display: block; font-size: 18px; text-transform: uppercase; color: #000; line-height: 1.45; }
.header-tools { display: flex; justify-content: flex-end; align-items: center; gap: 6px; justify-self: end; flex-shrink: 0; white-space: nowrap; }
.header-social { display: flex; gap: 2px; }
.social-icon { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; }
.social-icon svg { width: 22px; height: 22px; }
.header-cart { display: flex; align-items: center; gap: 8px; color: #fff; }
.header-cart-icon { position: relative; display: grid; place-items: center; }
.header-cart-icon svg { width: 22px; height: 22px; }
.header-cart-count {
  position: absolute; top: -8px; right: -8px; min-width: 16px; height: 16px;
  border-radius: 99px; background: #e52600; color: #fff;
  font-size: 11px; line-height: 16px; text-align: center; font-weight: 700;
}
.hero img { width: 100%; height: auto; }
.welcome { padding: 40px 0; text-align: center; }
.welcome h2, .welcome h3 {
  margin: 0 0 10px; font-family: var(--font-display); font-weight: 700;
  line-height: 1.12; color: var(--ink); text-transform: uppercase;
}
.welcome h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.welcome h3 { font-size: clamp(1.05rem, 2.2vw, 1.45rem); }
.carousel-block { padding: 50px 0; }
.carousel.coverflow { position: relative; overflow: hidden; }
.coverflow .carousel-viewport {
  position: relative; height: 500px; overflow: visible;
  perspective: 1200px; perspective-origin: 50% 50%; transform-style: preserve-3d;
}
.coverflow.video-carousel .carousel-viewport { height: 300px; }
.coverflow .carousel-track {
  position: relative; height: 100%; transform-style: preserve-3d;
}
.coverflow .carousel-slide {
  position: absolute; top: 0; left: 50%; width: min(520px, 48%); height: 100%;
  margin: 0 0 0 calc(min(520px, 48%) / -2);
  transform-origin: 50% 50%; transform-style: preserve-3d; backface-visibility: hidden;
  opacity: 0; pointer-events: none; transition: transform 0.5s ease, opacity 0.5s ease;
}
.coverflow .carousel-slide img, .coverflow .video-thumb { width: 100%; height: 100%; display: block; }
.coverflow .carousel-slide img { object-fit: cover; object-position: center; background: #fff; }
.carousel-btn {
  position: absolute; top: 250px; transform: translateY(-50%); z-index: 6;
  background: transparent; border: 0; color: var(--ink); font-size: 36px; cursor: pointer; line-height: 1;
}
.coverflow.video-carousel .carousel-btn { top: 150px; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 16px; }
.carousel-dot {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #d4d4d4; cursor: pointer;
}
.carousel-dot.is-current { background: #777; }
.video-thumb { position: relative; display: block; }
.play-mark {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 42px; text-shadow: 0 1px 8px rgba(10, 10, 10, 0.45);
}
.page-wrap { padding: 40px 0 72px; }
.page-title { font-family: var(--font-display); font-weight: 700; line-height: 1.1; text-transform: uppercase; margin: 0 0 24px; } .legal-page { max-width: 820px; } .legal-page .legal-updated { color: var(--muted); margin: -8px 0 24px; font-size: 0.95rem; } .legal-page .legal-toc { background: var(--surface); padding: 20px 24px; margin: 0 0 36px; } .legal-page .legal-toc ol { margin: 10px 0 0; padding-left: 22px; } .legal-page .legal-toc a, .legal-page a { text-decoration: underline; text-underline-offset: 2px; } .legal-page h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; text-transform: uppercase; margin: 36px 0 12px; scroll-margin-top: 100px; } .legal-page p, .legal-page li { font-size: 17px; line-height: 1.6; } .legal-page ul, .legal-page ol { margin: 0 0 16px; padding-left: 22px; } .legal-page .legal-callout { background: var(--surface); border-left: 4px solid var(--ink); padding: 16px 20px; margin: 20px 0; } .legal-page .legal-callout p:last-child { margin-bottom: 0; }
.contact-phones { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; font-size: 1.4rem; font-weight: 700; }
.contact-form { display: grid; gap: 14px; max-width: 640px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px;
  border: 1px solid rgba(10, 10, 10, 0.12); background: #fff; box-shadow: 0 8px 32px #EEE;
}
.contact-form textarea { min-height: 180px; }
.samas-turnstile { margin: 4px 0 8px; }
.woocommerce-form .samas-turnstile,
.woocommerce-checkout .samas-turnstile { margin: 12px 0; }
.wc-block-checkout .samas-turnstile { margin: 12px 0; }
.btn, button.button, .woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit {
  display: inline-block; background: var(--accent); color: #fff !important; border: 0;
  border-radius: var(--radius); padding: 10px 20px; text-transform: uppercase; font-weight: 600; cursor: pointer;
}
.gallery-grid, .watch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.watch-embed { position: relative; padding-top: 56.25%; }
.watch-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.site-footer { background: var(--ink); color: #fff; font-family: var(--font-footer); padding: 60px; }
.footer-inner { width: min(100%, 1140px); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) auto auto minmax(0, 1.15fr); gap: 32px; align-items: start; }
.footer-col { min-width: 0; }
.footer-brand p { margin: 8px 0 0; text-align: center; font-size: 18px; color: #fff; }
.footer-note p { margin: 0; font-size: 16px; color: #fff; }
.site-footer h3 { margin: 0 0 12px; font-family: var(--font-footer); font-size: 21px; font-weight: 600; color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 18px; padding: 7px 0; white-space: nowrap; }
.footer-chevron { width: 20px; height: 20px; min-width: 20px; max-width: 20px; flex: none; overflow: hidden; fill: currentColor; }
.footer-links a span { min-width: 0; }
.shop-hero { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 358px; padding: 48px 16px; background-color: var(--ink); background-image: var(--shop-hero-image, none); background-position: center center; background-repeat: no-repeat; background-size: cover; color: #fff; text-align: center; }
@media (min-width: 1025px) { .shop-hero { background-attachment: fixed; } }
.shop-hero-title { margin: 0 0 8px; font-family: var(--font-footer); font-size: clamp(2rem, 4vw, 48px); font-weight: 400; letter-spacing: 4px; line-height: 1.2; text-transform: none; color: #fff; }
.shop-hero .woocommerce-breadcrumb { color: #fff; font-family: var(--font-footer); font-size: 21px; line-height: 1.4; }
.shop-hero .woocommerce-breadcrumb a { color: #fff; }
.shop-layout { display: grid; grid-template-columns: minmax(220px, 260px) minmax(0, 1fr); gap: 20px; align-items: start; }
.shop-sidebar { background: #0A0A0A; }
.shop-cat-menu { list-style: none; margin: 0; padding: 0; }
.shop-cat-menu a { display: block; color: #fff; text-transform: uppercase; font-size: 15px; line-height: 1.35; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.22); }
.shop-cat-menu a:hover, .shop-cat-menu a.is-current { background: #161616; }
.shop-layout ul.products { grid-template-columns: repeat(3, 1fr); }
.shop-layout ul.products li.product { min-height: 0; background: #0A0A0A; color: #fff; padding-bottom: 16px; }
.shop-layout ul.products li.product img { width: 100%; background: #fff; }
.shop-layout ul.products li.product .woocommerce-loop-product__title,
.shop-layout ul.products li.product .price { color: #fff; }
.shop-layout ul.products li.product .button { background: transparent !important; border: 1px solid #fff; margin: 12px auto 0; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; list-style: none; padding: 0; margin: 0 0 32px; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none !important; display: none !important; }
.woocommerce ul.products li.product { display: flex; flex-direction: column; width: auto !important; margin: 0 !important; min-height: 470px; text-align: center; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 18px; font-weight: 500; padding: 0 5px; line-height: 1.5; }
.woocommerce ul.products li.product .button { margin-top: auto; align-self: center; }
.woocommerce span.onsale { background: var(--ink); color: #fff; }
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--ink); }
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav { justify-self: end; }
  .menu {
    display: none; position: fixed; inset: 0 auto 0 0; width: min(300px, 100%);
    background: var(--chrome); flex-direction: column; align-items: stretch;
    padding: 56px 0 24px; z-index: 50; overflow: auto;
  }
  .primary-nav.is-open .menu { display: flex; }
  .mega-panel { position: static; display: none; grid-template-columns: 1fr; padding: 10px; }
  .mega.is-open .mega-panel { display: grid; }
}

@media (max-width: 1024px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 8px 0; }
  .coverflow .carousel-viewport, .coverflow.video-carousel .carousel-viewport { height: 260px; }
  .coverflow .carousel-slide { width: min(280px, 62%); margin-left: calc(min(280px, 62%) / -2); }
  .carousel-btn, .coverflow.video-carousel .carousel-btn { top: 130px; }
  .gallery-grid, .watch-grid, .woocommerce ul.products, .shop-layout ul.products { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .site-footer { padding: 60px 10px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { .coverflow .carousel-slide { transition: none; } }
.woocommerce ul.products { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
.woocommerce ul.products li.product { min-height: 0; padding: 0 0 20px; background: #0A0A0A; color: #fff; }
.woocommerce ul.products li.product img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #fff; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-footer); font-size: 21px; font-weight: 400; padding: 12px 10px 4px; line-height: 1.35; color: #fff; }
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price .amount,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins .amount { color: #fff; font-family: var(--font-footer); font-size: 21px; }
.woocommerce ul.products li.product .button { margin: 12px auto 0; background: #0A0A0A !important; color: #fff !important; border: 2px solid #fff; padding: 10px 20px; }
.woocommerce ul.products li.product .button:hover { background: #fff !important; color: #0A0A0A !important; }
.related.products > h2 { font-family: var(--font-footer); font-size: 35px; font-weight: 400; text-transform: uppercase; color: var(--ink); margin: 0 0 24px; }
.single-product div.product { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); grid-template-areas: "gallery summary" "tabs tabs" "related related"; gap: 32px 48px; align-items: start; }
.single-product div.product .summary, .woocommerce div.product div.summary { grid-area: summary; float: none !important; width: 100% !important; }
.single-product div.product .woocommerce-product-gallery, .woocommerce div.product div.images { grid-area: gallery; float: none !important; width: 100% !important; max-width: none; }
.single-product .woocommerce-product-gallery__wrapper, .single-product .flex-viewport { width: 100%; }
.single-product .woocommerce-product-gallery img { width: 100%; height: auto; max-width: 100%; display: block; }
.single-product ol.flex-control-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; }
.single-product ol.flex-control-thumbs li { float: none; width: calc(25% - 6px); margin: 0; }
.single-product div.product .woocommerce-tabs { grid-area: tabs; }
.single-product div.product .related.products { grid-area: related; }
.single-product div.product .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.single-product .product_title { font-family: var(--font-footer); font-size: 40px; font-weight: 600; color: var(--ink); margin: 0 0 12px; line-height: 1.15; }
.single-product .summary .price { color: var(--ink); font-size: 21px; font-family: var(--font-footer); }
.single-product form.cart { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.single-product form.cart .button { font-family: var(--font-footer); font-size: 20px; font-weight: 500; text-transform: uppercase; border: 3px solid var(--ink); padding: 15px 35px; background: var(--ink); color: #fff !important; }
.single-product form.cart .button:hover { background: #fff; color: var(--ink) !important; }
.single-product .product_meta { display: none; }
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav { justify-self: end; }
  .menu {
    display: none; position: fixed; inset: 0 auto 0 0; width: min(300px, 100%);
    background: var(--chrome); flex-direction: column; align-items: stretch;
    padding: 56px 0 24px; z-index: 50; overflow: auto;
  }
  .primary-nav.is-open .menu { display: flex; }
  .mega-panel { position: static; display: none; grid-template-columns: 1fr; padding: 10px; }
  .mega.is-open .mega-panel { display: grid; }
}

@media (max-width: 1024px) {
  .single-product div.product { grid-template-columns: 1fr; grid-template-areas: "gallery" "summary" "tabs" "related"; }
}
