﻿:root {
  --idwt-bg: #090909;
  --idwt-bg-soft: #111113;
  --idwt-surface: #141418;
  --idwt-surface-2: #1d1d22;
  --idwt-text: #f2f2f3;
  --idwt-muted: #a6a6ad;
  --idwt-line: rgba(255, 255, 255, 0.14);
  --idwt-line-soft: rgba(255, 255, 255, 0.08);
  --idwt-accent: #ba102f;
  --idwt-accent-2: #ff2f56;
  --idwt-success: #23be74;
  --idwt-error: #f25b66;
  --idwt-radius-sm: 8px;
  --idwt-radius: 14px;
  --idwt-radius-lg: 20px;
  --idwt-space-1: 0.5rem;
  --idwt-space-2: 0.8rem;
  --idwt-space-3: 1rem;
  --idwt-space-4: 1.5rem;
  --idwt-space-5: 2.1rem;
  --idwt-space-6: 3rem;
  --idwt-shadow-1: 0 10px 24px rgba(0, 0, 0, 0.32);
  --idwt-shadow-2: 0 26px 60px rgba(0, 0, 0, 0.48);
}

html {
  font-size: 16px;
}

body {
  background:
    radial-gradient(80vw 40vw at 100% -10%, rgba(255, 47, 86, 0.12), transparent 70%),
    radial-gradient(70vw 45vw at -5% 100%, rgba(186, 16, 47, 0.12), transparent 70%),
    linear-gradient(180deg, #0a0a0c 0%, #080809 100%);
  color: var(--idwt-text);
  font-family: "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.ct-container {
  width: min(1320px, calc(100% - 3rem));
}

a {
  color: var(--idwt-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

p {
  color: var(--idwt-text);
}

small,
.has-small-font-size {
  color: var(--idwt-muted);
}

[data-header*="type-1"] {
  position: sticky;
  top: 0;
  z-index: 110;
}

.ct-header {
  backdrop-filter: blur(12px);
}

.ct-sticky-header,
[data-header*="type-1"] .ct-header [data-row] {
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.94), rgba(10, 10, 12, 0.82));
  border-bottom: 1px solid var(--idwt-line-soft);
}

.ct-header [data-id="menu"] > ul > li > a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.ct-header [data-id="menu"] > ul > li.current-menu-item > a,
.ct-header [data-id="menu"] > ul > li > a:hover {
  color: #ffffff;
}

.ct-header-cart,
.ct-header-account,
.ct-header-search {
  border: 1px solid var(--idwt-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ct-header-cart:hover,
.ct-header-account:hover,
.ct-header-search:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

button,
input,
select,
textarea,
.ct-button,
.button,
.add_to_cart_button,
.single_add_to_cart_button,
.checkout-button,
.wc-forward {
  border-radius: 999px;
}

.ct-button,
.button,
.single_add_to_cart_button,
.checkout-button,
.wc-forward {
  min-height: 48px;
  padding: 0.74rem 1.45rem;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--idwt-accent) 0%, var(--idwt-accent-2) 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--idwt-shadow-1);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.ct-button:hover,
.button:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
.wc-forward:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: var(--idwt-shadow-2);
}

.ct-button-ghost,
.is-style-outline > .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.01);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ct-button-ghost:hover,
.is-style-outline > .wp-block-button__link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  border: 1px solid var(--idwt-line);
  background: var(--idwt-surface);
  color: var(--idwt-text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.38);
}

*:focus-visible {
  outline: 2px solid var(--idwt-accent-2);
  outline-offset: 2px;
}

.ct-footer {
  border-top: 1px solid var(--idwt-line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    linear-gradient(90deg, rgba(255, 47, 86, 0.03), rgba(9, 9, 9, 0));
}

.ct-footer [class*="widget-title"] {
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
}

.ct-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.ct-footer a:hover {
  color: #ffffff;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  margin-bottom: 1rem;
  border: 1px solid var(--idwt-line);
  border-left-width: 4px;
  border-radius: 12px;
  background: var(--idwt-surface);
}

.woocommerce-message {
  border-left-color: var(--idwt-success);
}

.woocommerce-error {
  border-left-color: var(--idwt-error);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* --- Studio Polish: Global rhythm and typography --- */
:root {
  --idwt-muted: #b7b7bf;
  --idwt-line: rgba(255, 255, 255, 0.16);
  --idwt-line-soft: rgba(255, 255, 255, 0.1);
  --idwt-radius-sm: 10px;
  --idwt-radius: 16px;
  --idwt-radius-lg: 22px;
  --idwt-shadow-1: 0 14px 30px rgba(0, 0, 0, 0.34);
  --idwt-shadow-2: 0 28px 64px rgba(0, 0, 0, 0.5);
}

body {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.045em;
  line-height: 1.02;
}

p,
li,
input,
select,
textarea {
  font-size: 0.98rem;
}

.ct-container {
  width: min(1320px, calc(100% - 3.4rem));
}

.ct-button,
.button,
.single_add_to_cart_button,
.checkout-button,
.wc-forward {
  min-height: 46px;
  border-radius: 10px;
}

.ct-button-ghost,
.is-style-outline > .wp-block-button__link {
  min-height: 46px;
  border-radius: 10px;
}

.ct-header [data-id="menu"] > ul > li > a {
  letter-spacing: 0.11em;
  font-size: 0.76rem;
}

@media (max-width: 782px) {
  .ct-container {
    width: min(1320px, calc(100% - 1.6rem));
  }

  p,
  li,
  input,
  select,
  textarea {
    font-size: 0.95rem;
  }
}

/* --- Global full-width premium layout (all pages) --- */
.ct-container {
  width: calc(100% - 2vw) !important;
  max-width: none !important;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .ct-container {
    width: calc(100% - 1.6rem) !important;
  }
}

/* --- Header refinement after global full-width --- */
.ct-header .ct-container {
  width: min(1560px, calc(100% - 2.8rem)) !important;
  max-width: 1560px !important;
}

.ct-header [data-row] {
  min-height: 78px;
}

.ct-header [data-id="menu"] > ul {
  gap: 1.15rem;
}

.ct-header [data-id="menu"] > ul > li > a {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.ct-header [data-id="logo"] .site-title,
.site-branding {
  font-size: clamp(1.55rem, 1.7vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  .ct-header .ct-container {
    width: calc(100% - 1.2rem) !important;
    max-width: none !important;
  }

  .ct-header [data-row] {
    min-height: 66px;
  }
}

/* --- Header fix: align with global 1% layout --- */
.ct-header .ct-container {
  width: calc(100% - 2vw) !important;
  max-width: none !important;
}

.ct-header [data-row] {
  min-height: 72px;
}

.ct-header [data-id="menu"] > ul {
  gap: clamp(0.8rem, 1.1vw, 1.45rem);
}

.ct-header [data-id="menu"] > ul > li > a {
  font-size: 0.72rem;
  letter-spacing: 0.115em;
}

.ct-header [data-id="logo"] .site-title,
.site-branding {
  font-size: clamp(1.32rem, 1.4vw, 1.72rem);
  font-weight: 800;
}

@media (max-width: 980px) {
  .ct-header .ct-container {
    width: calc(100% - 1.2rem) !important;
  }

  .ct-header [data-row] {
    min-height: 64px;
  }
}

/* --- Header composition fix: less stretched on desktop --- */
@media (min-width: 981px) {
  #header[data-id="type-1"] [data-device="desktop"] [data-row="middle"] > .ct-container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: clamp(1.4rem, 3.4vw, 4.6rem);
  }

  #header[data-id="type-1"] [data-device="desktop"] [data-row="middle"] [data-column="end"] {
    justify-self: center;
    width: min(980px, 100%);
  }

  #header[data-id="type-1"] [data-device="desktop"] [data-row="middle"] [data-column="end"] > [data-placements],
  #header[data-id="type-1"] [data-device="desktop"] [data-row="middle"] [data-column="end"] [data-items] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  #header[data-id="type-1"] [data-id="menu"] > ul {
    justify-content: center;
    gap: clamp(0.7rem, 1vw, 1.2rem);
  }

  #header[data-id="type-1"] [data-id="menu"] > ul > li > a {
    font-size: 0.71rem;
    letter-spacing: 0.105em;
    white-space: nowrap;
  }
}

/* Header width and menu breathing room */
.site-header .ct-container,
.ct-header .ct-container {
  width: min(1760px, calc(100% - 2rem));
}

.ct-header [data-id="menu"] > ul {
  width: min(980px, 66vw);
  justify-content: space-between;
}

/* Footer legal links bar */
.idwt-footer-links {
  border-top: 1px solid var(--idwt-line-soft);
  border-bottom: 1px solid var(--idwt-line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.idwt-footer-links-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.9rem 0;
}

.idwt-footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.idwt-footer-links a:hover {
  color: #fff;
}

/* Search page as Woo archive */
.idwt-search-page .page-numbers {
  margin: 1.5rem 0 0;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}

.idwt-search-page .page-numbers a,
.idwt-search-page .page-numbers span {
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--idwt-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.idwt-search-page .page-numbers .current,
.idwt-search-page .page-numbers a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .site-header .ct-container,
  .ct-header .ct-container {
    width: min(1760px, calc(100% - 1.1rem));
  }

  .ct-header [data-id="menu"] > ul {
    width: auto;
  }
}

/* Brand logo visual */
.site-branding[data-id="logo"] .site-title a {
  display: block;
  width: clamp(250px, 21vw, 460px);
  height: clamp(48px, 4.4vw, 86px);
  background-image: url('/wp-content/uploads/2026/03/idwt-brand/3583-2302-max_white.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  color: transparent !important;
  font-size: 0;
  line-height: 0;
}

.site-branding[data-id="logo"] .site-title {
  margin: 0;
}


@media (max-width: 782px) {
  .site-branding[data-id="logo"] .site-title a {
    width: clamp(190px, 52vw, 260px);
    height: clamp(40px, 10vw, 56px);
  }
}

/* --- Global controls unification (no blue, deathcore elegant) --- */
.ct-button,
.button,
.single_add_to_cart_button,
.checkout-button,
.wc-forward,
.wp-block-button__link {
  border-radius: 6px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #f2f2f3 !important;
  box-shadow: none !important;
  letter-spacing: 0.11em;
  font-size: 0.7rem;
}

.ct-button:hover,
.button:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
.wc-forward:hover,
.wp-block-button__link:hover {
  background: linear-gradient(180deg, rgba(186, 16, 47, 0.46), rgba(117, 8, 29, 0.52)) !important;
  border-color: rgba(255, 47, 86, 0.62) !important;
  color: #fff !important;
}

:root {
  --theme-button-background-initial-color: #141418;
  --theme-button-text-initial-color: #f2f2f3;
  --theme-button-background-hover-color: #7f1128;
  --theme-button-text-hover-color: #ffffff;
}

/* --- TOUR 3: mobile header/navigation refinement --- */
@media (max-width: 980px) {
  .ct-header [data-row] {
    min-height: 58px !important;
  }

  .ct-header .ct-container {
    width: calc(100% - 0.9rem) !important;
  }

  .site-branding[data-id="logo"] .site-title a {
    width: clamp(150px, 44vw, 210px);
    height: clamp(34px, 9vw, 50px);
  }

  .ct-header-cart,
  .ct-header-account,
  .ct-header-search,
  .ct-toggle-close,
  .ct-header-trigger {
    width: 34px;
    height: 34px;
    border-radius: 8px !important;
  }

  .ct-header [data-id="menu"] > ul > li > a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 782px) {
  .ct-header [data-id="menu"] > ul {
    gap: 0.6rem;
  }

  .ct-panel-content,
  .ct-drawer-canvas {
    background: #09090b;
  }
}
