:root {
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-main: 0 18px 40px rgba(8, 14, 32, 0.35);
  --bg-main: #091125;
  --bg-alt: #050a16;
  --topbar-bg: rgba(8, 14, 28, 0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 10% -15%, color-mix(in srgb, var(--brand-primary) 35%, transparent) 0, transparent 35%),
    radial-gradient(circle at 95% 10%, color-mix(in srgb, var(--brand-accent) 25%, transparent) 0, transparent 30%),
    linear-gradient(
      165deg,
      var(--bg-main) 0%,
      color-mix(in srgb, var(--brand-secondary) 58%, var(--bg-main) 42%) 45%,
      var(--bg-alt) 100%
    );
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.65;
}

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

a:hover {
  color: var(--brand-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.narrow-container {
  width: min(860px, calc(100% - 2.4rem));
}

.site-shell {
  position: relative;
  overflow-x: clip;
}

.site-header {
  --mobile-nav-top: 76px;
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 13, 26, 0.78);
}

.site-header.has-top-contact {
  --mobile-nav-top: 114px;
}

.header-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    color-mix(in srgb, var(--brand-primary) 35%, transparent),
    transparent 45%,
    color-mix(in srgb, var(--brand-accent) 40%, transparent)
  );
  opacity: 0.2;
  pointer-events: none;
}

.top-contact-bar {
  position: relative;
  z-index: 2;
  background: var(--topbar-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.top-contact-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
}

.top-contact-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.78rem;
  color: #dbe8ff;
}

.top-contact-label {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 230px;
}

.brand.has-logo {
  min-width: 0;
  max-width: min(620px, 48vw);
  gap: 0.62rem;
}

.brand-logo-image {
  width: auto;
  height: clamp(40px, 4.7vw, 72px);
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

/* Keep header logo stable across WooCommerce/shop pages even if external styles apply. */
.site-header .brand > img,
.site-header .brand .brand-logo-image {
  width: auto !important;
  height: clamp(40px, 4.7vw, 72px) !important;
  max-height: 72px !important;
  max-width: min(240px, 34vw) !important;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand.has-logo .brand-text strong {
  font-size: clamp(1.02rem, 1.35vw, 1.26rem);
}

.brand.has-logo .brand-text small {
  font-size: 0.72rem;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-accent));
  color: #041226;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.primary-nav {
  justify-self: center;
}

.primary-nav .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.primary-nav .menu > li {
  position: relative;
}

.primary-nav .menu > li.menu-item-has-children {
  padding-bottom: 0.45rem;
  margin-bottom: -0.45rem;
}

.primary-nav .menu a {
  color: #f3f8ff;
}

.primary-nav .menu .current-menu-item a,
.primary-nav .menu a:hover {
  color: var(--brand-accent);
}

.primary-nav .menu > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.36rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.8;
}

.primary-nav .menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.48rem;
  min-width: 210px;
  display: grid;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 14, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(2, 8, 20, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 30;
}

.primary-nav .menu .sub-menu a {
  display: block;
  padding: 0.42rem 0.56rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #f4f8ff;
  letter-spacing: 0.04em;
}

.primary-nav .menu .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-accent);
}

.primary-nav .menu > li:hover > .sub-menu,
.primary-nav .menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.search-toggle,
.account-link,
.mobile-nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.search-toggle:hover,
.account-link:hover,
.mobile-nav-toggle:hover {
  background: linear-gradient(130deg, var(--brand-primary), var(--brand-accent));
  border-color: transparent;
  color: #081327;
}

.mobile-nav-toggle {
  display: none;
}

.search-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 15, 30, 0.95);
  padding: 1rem 0;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-field {
  width: min(520px, 100%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.search-submit {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #081327;
  font-weight: 700;
}

.scroll-progress {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  transition: width 0.08s linear;
}

.site-main {
  display: grid;
  gap: 4.4rem;
  padding: 1.2rem 0 4rem;
}

.hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-layout {
  position: relative;
  width: 100%;
}

.hero-layout-full {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
  opacity: 0.45;
  animation: float 8s ease-in-out infinite;
}

.orb-a {
  width: 240px;
  height: 240px;
  background: color-mix(in srgb, var(--brand-primary) 60%, transparent);
  top: -30px;
  left: 4%;
}

.orb-b {
  width: 320px;
  height: 320px;
  background: color-mix(in srgb, var(--brand-accent) 58%, transparent);
  top: 22%;
  right: -36px;
  animation-delay: 1.6s;
}

.hero-slider {
  position: relative;
  width: min(100vw, 1980px);
  margin-inline: auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-main);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-left: none;
  border-right: none;
}

.hero-slider-xl {
  height: var(--hero-slider-height, 84vh);
  min-height: 620px;
  max-height: 980px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity 0.62s ease, transform 0.82s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.hero-slide-clickable {
  cursor: pointer;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(130deg, #1d2a44, #101a33 45%, #203766 100%);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, calc(var(--hero-overlay-opacity, 0.3) * 0.88)) 0%,
    rgba(0, 0, 0, var(--hero-overlay-opacity, 0.3)) 50%,
    rgba(0, 0, 0, calc(var(--hero-overlay-opacity, 0.3) * 0.7)) 100%
  );
  opacity: 0;
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-slide-overlay {
  opacity: 1;
}

.hero-slide-content {
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  top: 50%;
  width: min(640px, 90%);
  z-index: 3;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  transform: translate3d(0, -44%, 0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-slide-content {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.hero-slide-content > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.58s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-slide-content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-slide.is-active .hero-slide-content .hero-badge {
  transition-delay: 0.1s;
}

.hero-slide.is-active .hero-slide-content h1 {
  transition-delay: 0.2s;
}

.hero-slide.is-active .hero-slide-content p {
  transition-delay: 0.32s;
}

.hero-slide.is-active .hero-slide-content .btn {
  transition-delay: 0.44s;
}

.hero-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  background: color-mix(in srgb, var(--brand-primary) 30%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 55%, transparent);
}

.hero-slide-content h1 {
  margin: 0.95rem 0 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 6.4vw, 4.9rem);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hero-slide-content p {
  margin: 0 0 1.25rem;
  color: #e5edff;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  max-width: 680px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #061022;
  box-shadow: none;
}

.btn-primary::after {
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-accent) 72%, transparent) 0%, transparent 70%);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand-primary) 42%, transparent);
}

.btn-primary:hover::after {
  opacity: 0.9;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: rgba(6, 12, 24, 0.62);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 4;
  display: inline-flex;
  gap: 0.42rem;
}

.slider-dot {
  width: 0.65rem;
  height: 0.65rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--brand-accent);
}

.section-header {
  margin-bottom: 1.2rem;
}

.section-header h2,
.section-header h1 {
  margin: 0 0 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.featured-category-list {
  display: grid;
  gap: 1.2rem;
}

.featured-category-block {
  display: grid;
  gap: 0.85rem;
}

.featured-category-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.featured-category-header h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.featured-category-header h3 a {
  color: #f3f7ff;
  text-decoration: none;
}

.featured-category-header h3 a:hover {
  color: var(--brand-accent);
}

.featured-category-header p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.featured-category-jump,
.category-jump-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6e4ff;
}

.featured-category-jump {
  text-decoration: none;
}

.featured-category-jump:hover,
.category-card:hover .category-jump-hint {
  border-color: color-mix(in srgb, var(--brand-accent) 70%, #ffffff 30%);
  color: #ffffff;
}

.category-jump-hint {
  margin-top: 0.62rem;
}

.category-grid,
.product-grid,
.post-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.category-card,
.product-card,
.post-card,
.entry-card,
.cta-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-main);
}

.fx-card {
  transform-style: preserve-3d;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.fx-card:hover {
  transform: translateY(-5px) rotateX(4deg) rotateY(-4deg);
  border-color: color-mix(in srgb, var(--brand-accent) 50%, rgba(255, 255, 255, 0.1));
}

.category-card {
  grid-column: span 4;
  overflow: hidden;
}

.category-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-card:hover .category-media img {
  transform: scale(1.08);
}

.category-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2d3e66, #172845);
}

.category-content {
  padding: 1rem;
}

.category-content h3 {
  margin: 0;
  font-size: 1.1rem;
}

.category-content p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-card,
.post-card {
  grid-column: span 3;
  overflow: hidden;
}

.product-media,
.post-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111d35;
}

.post-thumb {
  aspect-ratio: 16 / 10;
}

.product-media img,
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img,
.post-card:hover .post-thumb img {
  transform: scale(1.05);
}

.post-thumb-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #26365a, #182641);
}

.product-info,
.post-content {
  padding: 0.95rem;
}

.product-info h3,
.post-content h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.product-price {
  margin: 0.5rem 0 0.7rem;
  color: #f9fbff;
  font-weight: 700;
}

.product-action .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  position: relative;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #081327;
  border: none;
  font-weight: 700;
  padding: 0.62rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.product-action .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: #041020;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--brand-primary) 45%, transparent);
  transform: translateY(-2px);
}

.text-link {
  color: var(--brand-accent);
  font-weight: 600;
}

.cta-box {
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: auto -20% -75% -20%;
  height: 200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-primary) 40%, transparent) 0, transparent 70%);
}

.cta-box h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-box p {
  margin: 0.9rem auto 1.2rem;
  max-width: 700px;
  color: #d5def8;
}

.content-section {
  padding: 0.2rem 0 0;
}

.entry-card {
  padding: 1.6rem;
}

.entry-content,
.entry-content p,
.entry-content li {
  color: #dde8ff;
}

.entry-content a {
  color: var(--brand-accent);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 0.95rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #f4f8ff;
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: #dce7ff;
}

.faq-content details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 0.95rem;
}

.faq-content details + details {
  margin-top: 0.75rem;
}

.faq-content details summary {
  cursor: pointer;
  font-weight: 700;
  color: #f4f8ff;
}

.faq-content details p {
  margin: 0.7rem 0 0;
}

.post-meta {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.shop-content .woocommerce-result-count,
.shop-content .woocommerce-ordering {
  color: #d8e3fd;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem;
  box-shadow: var(--shadow-main);
}

.woocommerce span.onsale {
  background: var(--brand-primary);
  color: #081327;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin-bottom: 0;
}

.woocommerce div.product div.images {
  align-self: start;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .flex-viewport {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.woocommerce div.product div.summary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  grid-column: 1 / -1;
}

.woocommerce div.product .product_title {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #f4fbff;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 700;
  border-left: 4px solid color-mix(in srgb, var(--brand-primary) 72%, #ffcd45 28%);
  padding-left: 0.8rem;
  margin: 1rem 0 1.15rem;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.2rem;
}

.woocommerce div.product form.cart .button {
  min-height: 44px;
  padding-inline: 1.35rem;
}

.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.woocommerce .quantity input.qty {
  width: 3.8rem;
  min-height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.qty-adjust {
  width: 2.4rem;
  min-height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

.qty-adjust:hover {
  background: rgba(255, 255, 255, 0.12);
}

.woocommerce div.product form.variations_form {
  margin-bottom: 1rem;
}

.woocommerce div.product form.variations_form table.variations {
  margin: 0 0 1rem;
  border-spacing: 0 0.85rem;
  border-collapse: separate;
}

.woocommerce div.product form.variations_form table.variations th,
.woocommerce div.product form.variations_form table.variations td {
  vertical-align: middle;
}

.woocommerce div.product form.variations_form table.variations th {
  width: 88px;
  padding-right: 0.8rem;
  color: #ecf4ff;
}

.woocommerce div.product form.variations_form table.variations td {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.woocommerce div.product form.variations_form .bs-variation-select {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.bs-variation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.bs-variation-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #edf3ff;
  min-width: 70px;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bs-variation-pill:hover {
  border-color: color-mix(in srgb, var(--brand-accent) 55%, #fff 45%);
  transform: translateY(-1px);
}

.bs-variation-pill.is-active {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--brand-accent) 55%, #1b2d51 45%);
  background: linear-gradient(135deg, #081a36, #0f2b57 75%);
  box-shadow: 0 8px 18px rgba(3, 17, 40, 0.34);
}

.bs-variation-pill.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.woocommerce div.product form.variations_form .reset_variations {
  color: var(--brand-accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.woocommerce div.product form.variations_form .single_variation {
  margin: 0.9rem 0;
  border-left: 4px solid color-mix(in srgb, var(--brand-primary) 68%, #ffd75a 32%);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.85rem;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .product_meta {
  color: #d9e6ff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.11));
  border-color: color-mix(in srgb, var(--brand-accent) 45%, #fff 55%);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #f0f6ff;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 3px solid color-mix(in srgb, var(--brand-primary) 55%, var(--brand-accent) 45%);
  background: rgba(255, 255, 255, 0.08);
  color: #f3f8ff;
  border-radius: 12px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--brand-accent);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 10, 20, 0.86);
  padding: 2.3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-grid p,
.footer-menu a,
.footer-contact-list a {
  color: #c7d3ee;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-contact-list span {
  color: var(--brand-accent);
  font-weight: 700;
}

.footer-socials {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.65rem;
}

.footer-socials a,
.floating-contact-btn {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e8f2ff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover,
.floating-contact-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(130deg, var(--brand-primary), var(--brand-accent));
  color: #081327;
}

.footer-socials svg,
.floating-contact-btn svg {
  width: 1.35rem;
  height: 1.35rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.9rem;
  font-size: 0.86rem;
  color: #aebad7;
}

.floating-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 95;
  display: grid;
  gap: 0.65rem;
}

.floating-contact-btn {
  width: 3.15rem;
  height: 3.15rem;
  box-shadow: 0 12px 26px rgba(2, 12, 30, 0.42);
}

.empty-note {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  color: #c6d1ec;
}

.pagination-wrap,
.nav-links {
  margin-top: 1rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-links .page-numbers {
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4f8ff;
}

.nav-links .current {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #0a1324;
}

.reveal-item {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --parallax-y: 0px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-y)), 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item[data-reveal="left"] {
  --reveal-x: -44px;
  --reveal-y: 0px;
}

.reveal-item[data-reveal="right"] {
  --reveal-x: 44px;
  --reveal-y: 0px;
}

.reveal-item[data-reveal="up"] {
  --reveal-x: 0px;
  --reveal-y: 34px;
}

.reveal-item.is-visible {
  --reveal-x: 0px;
  --reveal-y: 0px;
  opacity: 1;
}

.text-center {
  text-align: center;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1100px) {
  .hero-slider-xl {
    min-height: 560px;
  }

  .hero-slide-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
  }

  .category-card,
  .product-card,
  .post-card {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product div.summary {
    padding: 1rem;
  }

  .woocommerce div.product form.cart {
    align-items: stretch;
  }

  .woocommerce div.product form.cart .quantity {
    width: max-content;
  }

  .woocommerce div.product form.cart .single_add_to_cart_button,
  .woocommerce div.product form.cart .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .top-contact-inner {
    min-height: 40px;
  }

  .top-contact-list {
    gap: 0.7rem;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    inset: var(--mobile-nav-top) 0 auto;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.26s ease, opacity 0.26s ease;
    background: rgba(6, 12, 24, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.2rem;
    pointer-events: none;
  }

  .site-header.nav-open .primary-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav .menu {
    display: grid;
    gap: 0.8rem;
  }

  .header-tools {
    display: none;
  }

  .search-panel {
    padding: 0.8rem 0;
  }

  .hero-layout-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
  }

  .hero-slider {
    width: 100%;
  }

  .hero-slider-xl {
    height: clamp(440px, 78vh, 640px);
    min-height: 440px;
    max-height: none;
    border-radius: 14px;
  }

  .hero-slide {
    background: #020811;
  }

  .hero-slide-image {
    object-fit: contain;
    object-position: center center;
  }

  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 35%,
      rgba(0, 0, 0, calc(var(--hero-overlay-opacity, 0.3) * 1.06)) 100%
    );
  }

  .hero-slide-content {
    left: 0.8rem;
    right: 0.8rem;
    top: auto;
    bottom: 0.85rem;
    width: auto;
    padding: 0.85rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(4, 10, 20, 0.05), rgba(4, 10, 20, 0.36));
    backdrop-filter: blur(1px);
    transform: translate3d(0, 10px, 0);
  }

  .hero-slide.is-active .hero-slide-content {
    transform: translate3d(0, 0, 0);
  }

  .hero-slide-content h1 {
    font-size: clamp(2rem, 8.4vw, 3.2rem);
  }

  .hero-slide-content p {
    margin-bottom: 0.95rem;
  }

  .category-card,
  .product-card,
  .post-card {
    grid-column: span 12;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .floating-contact-btn {
    width: 2.95rem;
    height: 2.95rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1.1rem));
  }

  .top-contact-item {
    font-size: 0.74rem;
  }

  .hero-slider-xl {
    height: clamp(400px, 72vh, 560px);
    min-height: 400px;
  }

  .hero-slide-content {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.72rem;
  }

  .hero-slide-content h1 {
    font-size: clamp(1.8rem, 8.8vw, 2.8rem);
  }

  .hero-slide-content p {
    font-size: 0.93rem;
  }

  .slider-control {
    width: 2.35rem;
    height: 2.35rem;
  }

  .bs-variation-pill {
    min-width: 64px;
    padding: 0.55rem 0.82rem;
    font-size: 0.84rem;
  }

  .woocommerce div.product form.variations_form table.variations th {
    width: 100%;
    display: block;
    padding-right: 0;
    margin-bottom: 0.35rem;
  }

  .woocommerce div.product form.variations_form table.variations td {
    width: 100%;
  }
}

/* --- Specia-inspired Overrides --- */
.site-header {
  --mobile-nav-top: 76px;
}

.top-contact-bar {
  display: none !important;
}

.about-contact-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 0.2rem;
}

.about-mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f9ff;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-mini-link:hover {
  background: linear-gradient(130deg, var(--brand-primary), var(--brand-accent));
  color: #081327;
  border-color: transparent;
}

.contact-mini-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #eef5ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-mini-btn svg {
  width: 1rem;
  height: 1rem;
}

.contact-mini-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #061022;
}

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
}

.contact-popup[hidden] {
  display: none;
}

.contact-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.62);
  backdrop-filter: blur(2px);
}

.contact-popup-dialog {
  position: relative;
  width: min(560px, calc(100% - 1.2rem));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(8, 18, 36, 0.97), rgba(8, 15, 28, 0.95));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  padding: 1.2rem;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.contact-popup.is-open .contact-popup-dialog {
  transform: none;
  opacity: 1;
}

.contact-popup-close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.contact-popup-dialog h3 {
  margin: 0 0 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.65rem;
}

.contact-popup-dialog p {
  margin: 0 0 0.95rem;
  color: #d7e4ff;
}

.contact-popup-grid {
  display: grid;
  gap: 0.65rem;
}

.contact-popup-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.68rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.contact-popup-item .icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #051224;
}

.contact-popup-item .icon-wrap svg {
  width: 1rem;
  height: 1rem;
}

.contact-popup-item strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.contact-popup-item small {
  color: #f3f7ff;
  font-size: 0.95rem;
}

.contact-popup-item.is-focus {
  border-color: color-mix(in srgb, var(--brand-primary) 56%, #fff 44%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 26px rgba(3, 13, 31, 0.33);
}

body.popup-open {
  overflow: hidden;
}

:root {
  --hero-slider-ratio: 7 / 3;
  --hero-mask-start-delay: 500ms;
  --hero-mask-duration: 580ms;
  --hero-overlay-fade-duration: 520ms;
  --hero-content-start-delay: 1020ms;
  --hero-content-stagger: 90ms;
  --hero-content-duration: 560ms;
  --hero-content-delay-badge: 1060ms;
  --hero-content-delay-title: 1160ms;
  --hero-content-delay-desc: 1260ms;
  --hero-content-delay-btn: 1340ms;
}

.hero-slider-xl {
  aspect-ratio: var(--hero-slider-ratio);
}

@media (min-width: 821px) {
  .hero-slider-xl {
    height: auto !important;
    min-height: 0 !important;
    max-height: min(84vh, 920px) !important;
  }
}

.hero-slide {
  overflow: hidden;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.64s cubic-bezier(0.22, 1, 0.36, 1), transform 0.64s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-image {
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, 0, 0) scale(1.06);
  transition: transform 1.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.3));
  opacity: 0;
  transition: opacity var(--hero-overlay-fade-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.hero-slide-overlay::before,
.hero-slide-overlay::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 50%;
  background: rgba(0, 0, 0, calc(var(--hero-overlay-opacity, 0.3) * 1.08));
  transform: scaleY(0);
  transition: transform var(--hero-mask-duration) cubic-bezier(0.22, 0.88, 0.32, 1);
}

.hero-slide-overlay::before {
  left: 0;
  transform-origin: top;
}

.hero-slide-overlay::after {
  right: 0;
  transform-origin: bottom;
}

.hero-slide-content,
.hero-slide-content > * {
  opacity: 0;
}

.hero-slide-content {
  max-width: 760px;
  transform: translate3d(0, -46%, 0);
  transition: opacity var(--hero-content-duration) cubic-bezier(0.22, 1, 0.36, 1), transform var(--hero-content-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.hero-slide.is-active .hero-slide-overlay {
  opacity: 1;
  transition-delay: var(--hero-mask-start-delay);
}

.hero-slide.is-active .hero-slide-overlay::before {
  transform: scaleY(1);
  transition-delay: var(--hero-mask-start-delay);
}

.hero-slide.is-active .hero-slide-overlay::after {
  transform: scaleY(1);
  transition-delay: var(--hero-mask-start-delay);
}

.hero-slide.is-active .hero-slide-content {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
  transition-delay: var(--hero-content-start-delay);
}

.hero-slide.is-active .hero-slide-content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-slide-content > * {
  transform: translate3d(0, 22px, 0);
  transition: opacity var(--hero-content-duration) cubic-bezier(0.22, 1, 0.36, 1), transform var(--hero-content-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide .hero-badge,
.hero-slide h1,
.hero-slide p,
.hero-slide .btn {
  transition-delay: 0s;
}

.hero-slide.is-active .hero-slide-content .hero-badge {
  transition-delay: var(--hero-content-delay-badge);
}

.hero-slide.is-active .hero-slide-content h1 {
  transition-delay: var(--hero-content-delay-title);
}

.hero-slide.is-active .hero-slide-content p {
  transition-delay: var(--hero-content-delay-desc);
}

.hero-slide.is-active .hero-slide-content .btn {
  transition-delay: var(--hero-content-delay-btn);
}

.hero-slide.is-active .hero-slide-image {
  transform: translate3d(0, -2.5%, 0) scale(1.1);
}

.hero-slide.is-enter-down {
  transform: translate3d(0, 0, 0) scale(1.01);
}

.hero-slide.is-enter-up {
  transform: translate3d(0, 0, 0) scale(1.01);
}

.hero-slide.is-leave-up {
  transform: translate3d(0, 0, 0) scale(1.01);
}

.hero-slide.is-leave-down {
  transform: translate3d(0, 0, 0) scale(1.01);
}

.hero-slide.is-enter-down,
.hero-slide.is-enter-up,
.hero-slide.is-leave-up,
.hero-slide.is-leave-down {
  opacity: 0;
}

.hero-slide.is-enter-down .hero-slide-overlay,
.hero-slide.is-enter-up .hero-slide-overlay,
.hero-slide.is-leave-up .hero-slide-overlay,
.hero-slide.is-leave-down .hero-slide-overlay {
  opacity: 0;
}

.hero-slide.is-enter-down .hero-slide-content,
.hero-slide.is-enter-up .hero-slide-content,
.hero-slide.is-leave-up .hero-slide-content,
.hero-slide.is-leave-down .hero-slide-content {
  opacity: 0;
}

.hero-slide.is-enter-down .hero-slide-content > *,
.hero-slide.is-enter-up .hero-slide-content > *,
.hero-slide.is-leave-up .hero-slide-content > *,
.hero-slide.is-leave-down .hero-slide-content > * {
  opacity: 0;
}

.hero-slide.is-enter-down .hero-slide-image {
  transform: translate3d(0, 9%, 0) scale(1.14);
}

.hero-slide.is-enter-up .hero-slide-image {
  transform: translate3d(0, -9%, 0) scale(1.14);
}

.hero-slide.is-leave-up .hero-slide-image {
  transform: translate3d(0, -12%, 0) scale(1.14);
}

.hero-slide.is-leave-down .hero-slide-image {
  transform: translate3d(0, 12%, 0) scale(1.14);
}

.slider-control {
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(150deg, rgba(5, 11, 21, 0.72), rgba(9, 20, 40, 0.5));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.54), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 1;
  backdrop-filter: blur(3px);
  animation: sliderControlGlow 2.8s ease-in-out infinite;
}

.slider-control::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, color-mix(in srgb, var(--brand-primary) 48%, transparent), color-mix(in srgb, var(--brand-accent) 42%, transparent));
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: -1;
}

.slider-control span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.15rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.66);
}

.slider-prev {
  left: 1.3rem;
}

.slider-next {
  right: 1.3rem;
}

@media (hover: hover) {
  .slider-control:hover::before {
    opacity: 1;
  }

  .slider-control:hover {
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-50%) scale(1.03);
    animation-play-state: paused;
  }
}

.slider-dots {
  bottom: 1.2rem;
}

.slider-dot {
  width: 1.45rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.slider-dot.is-active {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 0 16px rgba(255, 255, 255, 0.36);
}

.hero-section + .quote-banner-section {
  margin-top: -2.2rem;
}

.quote-banner-section {
  --quote-bg-shift: 0px;
  position: relative;
  width: min(1720px, calc(100% - 1rem));
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(130deg, rgba(8, 20, 41, 0.94), rgba(10, 26, 54, 0.86));
  isolation: isolate;
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  background-image: var(--quote-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.54;
  transform: translate3d(0, var(--quote-bg-shift), 0) scale(1.12);
  z-index: -3;
  transition: transform 0.2s ease-out;
}

.quote-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(116deg, rgba(6, 12, 24, 0.68), rgba(6, 12, 24, 0.5));
  z-index: -2;
}

.quote-banner-content {
  position: relative;
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
}

.quote-banner-content h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

.quote-banner-content p {
  margin: 0;
  color: #deebff;
  max-width: 620px;
}

.quote-banner-section:hover::before {
  background: linear-gradient(116deg, rgba(6, 12, 24, 0.64), rgba(6, 12, 24, 0.46));
}

.advantage-section .section-header {
  margin-bottom: 1.25rem;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.advantage-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 1rem;
  min-height: 180px;
}

.advantage-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #081327;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
}

.advantage-card h3 {
  margin: 0.75rem 0 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
}

.advantage-card p {
  margin: 0;
  color: #d5e3ff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  padding: 1rem;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--brand-accent) 40%, #ffffff 60%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #071226;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-top h3 {
  margin: 0;
  font-size: 1.05rem;
}

.testimonial-card p {
  margin: 0;
  color: #d9e6ff;
}

.sample-page-section {
  padding-top: 0.4rem;
}

.sample-page-stack {
  display: grid;
  gap: 1rem;
}

.sample-page-hero {
  padding: 1.4rem;
}

.sample-page-hero h1 {
  margin: 0 0 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.sample-page-hero p {
  margin: 0;
  color: #d7e4ff;
  max-width: 920px;
}

.sample-page-block {
  padding: 1.2rem;
}

.sample-page-block h2 {
  margin: 0 0 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sample-page-block p {
  margin: 0.45rem 0;
  color: #d9e5ff;
}

.sample-highlight-grid,
.sample-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.sample-highlight-card,
.sample-blog-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  padding: 0.95rem;
}

.sample-highlight-card h3,
.sample-blog-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.sample-highlight-card p,
.sample-blog-card p {
  margin: 0;
  color: #d2e0fb;
}

.sample-blog-meta {
  margin: 0 0 0.42rem;
  color: #9fb0d6;
  font-size: 0.83rem;
}

.floating-contact-btn {
  width: 3.55rem;
  height: 3.55rem;
}

.floating-contact-btn svg {
  width: 1.55rem;
  height: 1.55rem;
}

@keyframes sliderControlGlow {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.54), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.62), inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 18px color-mix(in srgb, var(--brand-accent) 26%, transparent);
  }
}

@media (max-width: 1100px) {
  .slider-control {
    width: 4rem;
    height: 4rem;
  }

  .slider-control span {
    font-size: 1.95rem;
  }

  .hero-slide-content h1 {
    font-size: clamp(2.1rem, 5.7vw, 3.6rem);
  }

  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid,
  .sample-highlight-grid,
  .sample-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .primary-nav .menu .sub-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    margin-top: 0.32rem;
    padding: 0.32rem 0 0.32rem 0.7rem;
    border: none;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    background: transparent;
    box-shadow: none;
    gap: 0.15rem;
  }

  .primary-nav .menu .sub-menu a {
    padding: 0.3rem 0;
    font-size: 0.75rem;
    border-radius: 0;
  }

  .brand.has-logo {
    max-width: min(82vw, 360px);
  }

  .brand-logo-image {
    height: clamp(34px, 8vw, 56px);
  }

  .site-header .brand > img,
  .site-header .brand .brand-logo-image {
    height: clamp(34px, 8vw, 56px) !important;
    max-height: 56px !important;
    max-width: min(220px, 48vw) !important;
  }

  .header-tools {
    display: inline-flex;
    justify-self: end;
    gap: 0.45rem;
  }

  .header-tools .search-toggle,
  .header-tools .account-link {
    display: none;
  }

  .about-mini-link {
    display: none;
  }

  .contact-mini-btn {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero-slider-xl {
    aspect-ratio: var(--hero-slider-ratio);
  }

  .hero-slide-content {
    top: 50% !important;
    bottom: auto !important;
    left: 0.9rem !important;
    right: 0.9rem !important;
    width: auto;
    transform: translate3d(0, -43%, 0);
  }

  .hero-slide.is-active .hero-slide-content {
    transform: translate3d(0, -50%, 0);
  }

  .hero-slide-content p {
    display: none;
  }

  .hero-slide-content h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.45rem);
    line-height: 1.02;
  }

  .slider-control {
    width: 3.2rem;
    height: 3.2rem;
  }

  .slider-control span {
    font-size: 1.58rem;
  }

  .quote-banner-section {
    width: min(100%, calc(100% - 0.9rem));
    margin-top: -1.4rem;
  }

  .quote-banner-content {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 1rem;
  }

  .category-grid,
  .product-grid {
    gap: 0.75rem;
  }

  .category-card,
  .product-card {
    grid-column: span 6;
  }

  .category-content,
  .product-info {
    padding: 0.72rem;
  }

  .category-content h3,
  .product-info h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .hero-slider-xl {
    aspect-ratio: var(--hero-slider-ratio);
  }

  .hero-slide-content {
    left: 0.68rem !important;
    right: 0.68rem !important;
  }

  .slider-control {
    display: none !important;
  }

  .floating-contact-btn {
    width: 3.2rem;
    height: 3.2rem;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .sample-highlight-grid,
  .sample-blog-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .product-card {
    grid-column: span 6;
  }

  .category-content p {
    display: none;
  }
}

/* Clean light overrides */
:root {
  --surface-dark: #ffffff;
  --surface-light: #ffffff;
  --text-main: #111111;
  --text-muted: #666666;
}

body {
  background: #ffffff !important;
  color: #111111;
}

.site-header,
.search-panel,
.primary-nav,
.site-footer,
.contact-popup-dialog,
.contact-popup-item,
.faq-item,
.faq-content details,
.entry-card,
.cta-box,
.category-card,
.product-card,
.post-card,
.advantage-card,
.testimonial-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product div.summary,
.quote-banner-section {
  background: #ffffff !important;
  background-image: none !important;
}

.header-gradient,
.orb,
.btn::after,
.cta-box::before,
.quote-banner-bg,
.quote-banner-section::before,
.hero-slide-overlay::before,
.hero-slide-overlay::after {
  display: none !important;
}

.site-header,
.site-footer,
.search-panel,
.primary-nav,
.category-card,
.product-card,
.post-card,
.advantage-card,
.testimonial-card,
.faq-item,
.faq-content details,
.entry-card,
.cta-box,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product div.summary,
.quote-banner-section,
.contact-popup-dialog,
.contact-popup-item {
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: none !important;
}

.hero-slide-overlay {
  background: rgba(0, 0, 0, 0.34) !important;
}

.hero-slide-content {
  background: transparent !important;
  backdrop-filter: none !important;
}

.brand-mark,
.search-submit,
.btn-primary,
.product-action .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.about-mini-link:hover,
.search-toggle:hover,
.account-link:hover,
.mobile-nav-toggle:hover,
.contact-mini-btn:hover,
.footer-socials a:hover,
.floating-contact-btn:hover,
.contact-popup-item .icon-wrap,
.advantage-index,
.woocommerce span.onsale,
.nav-links .current {
  background: #111111 !important;
  background-image: none !important;
  color: #ffffff !important;
}

.search-toggle,
.account-link,
.mobile-nav-toggle,
.about-mini-link,
.contact-mini-btn,
.featured-category-jump,
.category-jump-hint,
.slider-control,
.footer-socials a,
.floating-contact-btn,
.woocommerce .quantity,
.bs-variation-pill {
  background: #ffffff !important;
  background-image: none !important;
  color: #111111 !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
  box-shadow: none !important;
}

.btn:hover,
.product-action .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.footer-socials a:hover,
.floating-contact-btn:hover,
.search-toggle:hover,
.account-link:hover,
.mobile-nav-toggle:hover,
.about-mini-link:hover,
.contact-mini-btn:hover {
  transform: translateY(-1px);
}

.section-header p,
.category-content p,
.featured-category-header p,
.quote-banner-content p,
.advantage-card p,
.testimonial-card p,
.footer-grid p,
.footer-menu a,
.footer-contact-list a,
.empty-note,
.post-meta,
.brand-text small {
  color: #666666 !important;
}

.primary-nav .menu a,
.featured-category-header h3 a,
.product-info h3 a,
.post-content h2 a,
.footer-grid h3,
.footer-grid h4,
.section-header h1,
.section-header h2,
.quote-banner-content h2,
.advantage-card h3,
.testimonial-top h3,
.contact-popup-dialog h3 {
  color: #111111 !important;
}

.hero-badge,
.featured-category-jump,
.category-jump-hint {
  text-transform: none;
}

button:hover,
button:focus,
button:active,
.btn:hover,
.btn:focus,
.btn:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.search-submit:hover,
.search-submit:focus,
.search-submit:active,
.search-toggle:hover,
.search-toggle:focus,
.search-toggle:active,
.account-link:hover,
.account-link:focus,
.account-link:active,
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus,
.mobile-nav-toggle:active,
.about-mini-link:hover,
.about-mini-link:focus,
.about-mini-link:active,
.contact-mini-btn:hover,
.contact-mini-btn:focus,
.contact-mini-btn:active,
.product-action .button:hover,
.product-action .button:focus,
.product-action .button:active,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button:active,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce #respond input#submit:active,
.footer-socials a:hover,
.footer-socials a:focus,
.footer-socials a:active,
.floating-contact-btn:hover,
.floating-contact-btn:focus,
.floating-contact-btn:active,
.slider-control:hover,
.slider-control:focus,
.slider-control:active,
.featured-category-jump:hover,
.featured-category-jump:focus,
.featured-category-jump:active,
.category-jump-hint:hover,
.category-jump-hint:focus,
.category-jump-hint:active,
.qty-adjust:hover,
.qty-adjust:focus,
.qty-adjust:active,
.bs-variation-pill:hover,
.bs-variation-pill:focus,
.bs-variation-pill:active,
.bs-variation-pill.is-active,
.nav-links .page-numbers:hover,
.nav-links .page-numbers:focus,
.nav-links .page-numbers:active,
.nav-links .current,
.primary-nav .menu a:hover,
.primary-nav .menu a:focus,
.primary-nav .menu .sub-menu a:hover,
.primary-nav .menu .sub-menu a:focus {
  background: #111111 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.slider-control:hover::before,
.slider-control:focus::before,
.slider-control:active::before,
.btn-primary:hover::after,
.btn-primary:focus::after,
.btn-primary:active::after {
  display: none !important;
  opacity: 0 !important;
  background: none !important;
}

.scroll-progress {
  display: block !important;
  background: rgba(0, 0, 0, 0.08) !important;
}

.scroll-progress-bar {
  background: #111111 !important;
  background-image: none !important;
}

.product-price,
.product-price *,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce div.product p.price *,
.woocommerce div.product span.price *,
.woocommerce-Price-amount,
.woocommerce-Price-currencySymbol {
  color: #777777 !important;
}

.site-main,
.content-section,
.entry-card,
.entry-content,
.entry-content p,
.entry-content li,
.entry-content span,
.entry-content strong,
.entry-content em,
.entry-content font,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.post-content,
.post-content p,
.post-content li,
.post-content span,
.post-content font,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.faq-item,
.faq-item summary,
.faq-item p,
.faq-content details,
.faq-content details summary,
.faq-content details p,
.faq-content details span,
.faq-content details font,
.woocommerce div.product .product_title,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .woocommerce-product-details__short-description li,
.woocommerce div.product .product_meta,
.woocommerce div.product .product_meta span,
.woocommerce div.product .product_meta a,
.woocommerce div.product form.variations_form table.variations th,
.woocommerce div.product form.variations_form table.variations td,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li,
.woocommerce div.product .woocommerce-tabs .panel span,
.woocommerce div.product .woocommerce-tabs .panel font,
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.shop-content .woocommerce-result-count,
.shop-content .woocommerce-ordering,
.sample-page-hero h1,
.sample-page-hero p,
.sample-page-block h2,
.sample-page-block p,
.sample-highlight-card h3,
.sample-highlight-card p,
.sample-blog-card h3,
.sample-blog-card p {
  color: #111111 !important;
}

.entry-content a,
.post-content a,
.woocommerce div.product .product_meta a,
.text-link {
  color: #555555 !important;
}

.entry-content p,
.entry-content li,
.entry-content span,
.entry-content font,
.post-content p,
.post-content li,
.post-content span,
.post-content font,
.faq-item p,
.faq-content details p,
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li,
.sample-page-hero p,
.sample-page-block p,
.sample-highlight-card p,
.sample-blog-card p,
.shop-content .woocommerce-result-count {
  color: #666666 !important;
}

.woocommerce .quantity {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
}

.woocommerce .quantity input.qty,
.woocommerce .quantity input.qty:hover,
.woocommerce .quantity input.qty:focus,
.woocommerce .quantity input.qty:active {
  background: #ffffff !important;
  color: #111111 !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #111111 !important;
}

.qty-adjust,
.qty-adjust:hover,
.qty-adjust:focus,
.qty-adjust:active {
  background: #ffffff !important;
  color: #111111 !important;
}

.product-card,
.post-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-info,
.post-content,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  position: relative;
}

.product-info,
.post-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.product-info h3,
.product-info h3 a,
.post-content h2,
.post-content h2 a,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8em;
}

.product-price {
  min-height: 1.6em;
}

.product-action {
  margin-top: auto;
}

.related.products ul.products,
.upsells.products ul.products,
.woocommerce .related ul.products,
.woocommerce .upsells ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.related.products ul.products::before,
.related.products ul.products::after,
.upsells.products ul.products::before,
.upsells.products ul.products::after,
.woocommerce .related ul.products::before,
.woocommerce .related ul.products::after,
.woocommerce .upsells ul.products::before,
.woocommerce .upsells ul.products::after {
  content: none;
  display: none;
}

.related.products ul.products li.product,
.upsells.products ul.products li.product,
.woocommerce .related ul.products li.product,
.woocommerce .upsells ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  min-width: 0;
  height: 100%;
}

.related.products ul.products li.product .woocommerce-LoopProduct-link,
.upsells.products ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce .related ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce .upsells ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.related.products ul.products li.product img,
.upsells.products ul.products li.product img,
.woocommerce .related ul.products li.product img,
.woocommerce .upsells ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.related.products ul.products li.product .price,
.upsells.products ul.products li.product .price,
.woocommerce .related ul.products li.product .price,
.woocommerce .upsells ul.products li.product .price {
  display: block;
  min-height: 1.8em;
}

.related.products ul.products li.product .button,
.upsells.products ul.products li.product .button,
.woocommerce .related ul.products li.product .button,
.woocommerce .upsells ul.products li.product .button {
  margin-top: auto;
}

.blog-product-recommendations {
  margin-top: 2rem;
}

@media (max-width: 920px) {
  .related.products ul.products,
  .upsells.products ul.products,
  .woocommerce .related ul.products,
  .woocommerce .upsells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .related.products ul.products,
  .upsells.products ul.products,
  .woocommerce .related ul.products,
  .woocommerce .upsells ul.products {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .woocommerce div.product div.images .flex-viewport,
  .woocommerce div.product div.images .woocommerce-product-gallery__image a {
    aspect-ratio: 1 / 1;
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__image img:not(.zoomImg) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(160deg, rgba(10, 18, 33, 0.92), rgba(20, 34, 56, 0.82));
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__image img.zoomImg {
    width: auto !important;
    height: auto !important;
    object-fit: initial !important;
    background: transparent !important;
  }
}

/* 2026 storefront polish */
:root {
  --storefront-bg: #f7f4ee;
  --storefront-panel: #ffffff;
  --storefront-ink: #171717;
  --storefront-muted: #62605b;
  --storefront-line: rgba(23, 23, 23, 0.1);
  --storefront-soft-shadow: 0 14px 34px rgba(41, 35, 25, 0.08);
  --storefront-accent: #1f7a63;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, var(--storefront-bg) 38rem, #ffffff 100%) !important;
  color: var(--storefront-ink);
  text-rendering: optimizeLegibility;
}

.site-main {
  gap: clamp(2.6rem, 5vw, 4rem);
  padding-top: 0;
}

.site-main > * {
  min-width: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

.header-inner {
  gap: clamp(0.8rem, 1.4vw, 1.35rem);
  min-height: 72px;
}

.brand {
  min-width: 210px;
}

.brand-text strong {
  color: var(--storefront-ink);
  letter-spacing: 0.02em;
}

.brand-text small {
  max-width: 300px;
  color: var(--storefront-muted) !important;
  line-height: 1.25;
}

.primary-nav .menu {
  gap: clamp(0.7rem, 1.45vw, 1.45rem);
  font-size: 0.81rem;
  letter-spacing: 0.06em;
}

.primary-nav .menu a {
  color: var(--storefront-ink) !important;
}

.primary-nav .menu a:hover,
.primary-nav .menu .current-menu-item a {
  color: var(--storefront-accent) !important;
}

.search-toggle,
.account-link,
.mobile-nav-toggle,
.contact-mini-btn {
  border-color: rgba(0, 0, 0, 0.12) !important;
  background: #ffffff !important;
  color: var(--storefront-ink) !important;
}

.search-toggle:hover,
.account-link:hover,
.mobile-nav-toggle:hover,
.contact-mini-btn:hover {
  background: var(--storefront-ink) !important;
  color: #ffffff !important;
}

.hero-slider {
  width: min(100vw, 1760px);
  border: none;
  box-shadow: 0 18px 44px rgba(28, 27, 23, 0.12);
}

.hero-slider-xl {
  height: min(var(--hero-slider-height, 78vh), 760px);
  min-height: 520px;
  max-height: 760px;
}

.hero-slide-image {
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
}

.hero-slide-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.34) 46%, rgba(0, 0, 0, 0.12) 100%) !important;
}

.hero-slide-content {
  width: min(560px, 88%);
}

.hero-slide.is-active .hero-slide-content,
.hero-slide.is-active .hero-slide-content > * {
  opacity: 1 !important;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.52) !important;
  color: #171717;
  letter-spacing: 0.05em;
}

.hero-slide-content h1 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 5.35vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero-slide-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.btn,
.product-action .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 7px;
  letter-spacing: 0.04em;
}

.btn-primary,
.product-action .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.search-submit {
  background: var(--storefront-ink) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.btn-primary:hover,
.product-action .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.search-submit:hover {
  background: var(--storefront-accent) !important;
  color: #ffffff !important;
}

.slider-control {
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #171717 !important;
}

.slider-dot.is-active {
  background: var(--storefront-accent);
  box-shadow: none;
}

.quote-banner-section {
  width: min(1180px, calc(100% - 2.4rem));
  border-radius: 8px;
  background: #f0ede5 !important;
  border: 1px solid var(--storefront-line) !important;
}

.quote-banner-content {
  min-height: 150px;
}

.quote-banner-content h2,
.section-header h1,
.section-header h2 {
  color: var(--storefront-ink) !important;
  letter-spacing: 0.01em;
}

.section-header {
  max-width: 780px;
}

.section-header p,
.featured-category-header p,
.category-content p,
.advantage-card p,
.testimonial-card p {
  color: var(--storefront-muted) !important;
}

.category-card,
.product-card,
.post-card,
.advantage-card,
.testimonial-card,
.entry-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product div.summary {
  border-radius: 8px !important;
  border-color: var(--storefront-line) !important;
  background: var(--storefront-panel) !important;
  box-shadow: var(--storefront-soft-shadow) !important;
}

.fx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 122, 99, 0.28) !important;
}

.category-grid,
.product-grid,
.post-grid {
  gap: 1.1rem;
}

.category-content,
.product-info,
.post-content {
  padding: 1rem;
}

.category-content h3,
.product-info h3,
.product-info h3 a,
.post-content h2,
.post-content h2 a {
  color: var(--storefront-ink) !important;
}

.featured-category-jump,
.category-jump-hint {
  border-radius: 7px;
  color: var(--storefront-accent) !important;
  border-color: rgba(31, 122, 99, 0.22) !important;
  background: rgba(31, 122, 99, 0.06) !important;
}

.product-price,
.woocommerce-Price-amount,
.woocommerce-Price-currencySymbol {
  color: var(--storefront-accent) !important;
}

.advantage-grid,
.testimonial-grid {
  gap: 1.1rem;
}

.advantage-card {
  min-height: 160px;
}

.advantage-index {
  background: rgba(31, 122, 99, 0.1) !important;
  color: var(--storefront-accent) !important;
}

.site-footer {
  background: #171717 !important;
  color: #ffffff;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff !important;
}

.site-footer p,
.footer-menu a,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.72) !important;
}

.reveal-item {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y), 0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 122, 99, 0.36);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .brand {
    min-width: 180px;
  }

  .brand-text small {
    display: none;
  }

  .header-tools {
    gap: 0.45rem;
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .primary-nav {
    background: #ffffff !important;
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.08) !important;
  }

  .primary-nav .menu {
    gap: 0.65rem;
  }

  .hero-slider-xl {
    height: clamp(430px, 68vh, 620px);
    min-height: 430px;
    border-radius: 0;
  }

  .hero-slide-image {
    object-fit: cover;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.68) 100%) !important;
  }

  .hero-slide-content {
    top: auto !important;
    bottom: 1.4rem !important;
    transform: translate3d(0, 12px, 0) !important;
  }

  .hero-slide.is-active .hero-slide-content {
    transform: translate3d(0, 0, 0) !important;
  }

  .hero-slide-content h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-slide-content p {
    display: block;
  }

  .quote-banner-section {
    width: min(100%, calc(100% - 1rem));
  }

  .category-card,
  .product-card,
  .post-card {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1.25rem));
  }

  .site-main {
    gap: 2.4rem;
  }

  .hero-slider-xl {
    height: 500px;
    min-height: 500px;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .hero-slide-content h1 {
    max-width: 12ch;
    font-size: clamp(1.82rem, 9vw, 2.45rem);
    line-height: 1.03;
  }

  .hero-slide-content p {
    display: none;
  }

  .category-card,
  .product-card,
  .post-card {
    grid-column: span 12;
  }

  .category-content p {
    display: block;
  }

  .quote-banner-content {
    padding: 1rem;
  }

  .footer-grid {
    gap: 1.4rem;
  }
}

/* Navigation and shop archive refinements */
.site-header .primary-nav .menu > li > a:hover,
.site-header .primary-nav .menu > li > a:focus,
.site-header .primary-nav .menu > li.current-menu-item > a {
  background: transparent !important;
  color: var(--storefront-accent) !important;
}

.site-header .primary-nav .menu .sub-menu a:hover,
.site-header .primary-nav .menu .sub-menu a:focus {
  background: rgba(31, 122, 99, 0.08) !important;
  color: var(--storefront-accent) !important;
}

.site-header .search-toggle:hover,
.site-header .search-toggle:focus,
.site-header .account-link:hover,
.site-header .account-link:focus,
.site-header .mobile-nav-toggle:hover,
.site-header .mobile-nav-toggle:focus,
.site-header .contact-mini-btn:hover,
.site-header .contact-mini-btn:focus {
  background: rgba(31, 122, 99, 0.08) !important;
  border-color: rgba(31, 122, 99, 0.24) !important;
  color: var(--storefront-accent) !important;
  box-shadow: none !important;
  transform: translateY(-1px);
}

.shop-category-switcher {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  margin: 0.7rem 0 1.25rem;
  padding: 0.2rem 0 0.35rem;
  overflow: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.shop-category-switcher::-webkit-scrollbar {
  display: none;
}

.shop-category-pill {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  border: 1px solid var(--storefront-line);
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--storefront-ink) !important;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.shop-category-pill small {
  display: inline-grid;
  min-width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.08);
  color: var(--storefront-muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.shop-category-pill:hover,
.shop-category-pill:focus {
  border-color: rgba(31, 122, 99, 0.28);
  background: rgba(31, 122, 99, 0.08) !important;
  color: var(--storefront-accent) !important;
  transform: translateY(-1px);
}

.shop-category-pill.is-active {
  border-color: rgba(31, 122, 99, 0.34);
  background: #1f7a63 !important;
  color: #ffffff !important;
}

.shop-category-pill.is-active small {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.shop-content .woocommerce-result-count,
.shop-content .woocommerce-ordering {
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .shop-category-switcher {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0.6rem -0.15rem 1rem;
    padding-inline: 0.15rem;
  }

  .shop-category-pill {
    flex: 0 0 auto;
    min-height: 2.25rem;
    padding: 0.48rem 0.7rem;
    font-size: 0.78rem;
  }
}
