:root {
  --df-bg: #090b10;
  --df-bg-soft: #0d1118;
  --df-panel: #121722;
  --df-panel-2: #171d29;
  --df-line: rgba(255,255,255,.09);
  --df-line-strong: rgba(255,255,255,.17);
  --df-text: #f5f7fb;
  --df-muted: #8f99aa;
  --df-cyan: #43f0d0;
  --df-cyan-soft: rgba(67,240,208,.16);
  --df-amber: #ffb545;
  --df-red: #ff5d73;
  --df-violet: #a682ff;
  --df-pink: #f069d5;
  --df-radius: 18px;
  --df-radius-sm: 12px;
  --df-shadow: 0 28px 70px rgba(0,0,0,.42);
  --df-container: min(1380px, calc(100% - 48px));
  --df-display: "Barlow Condensed", sans-serif;
  --df-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 0%, rgba(67,240,208,.065), transparent 28%),
    radial-gradient(circle at 90% 22%, rgba(166,130,255,.07), transparent 30%),
    var(--df-bg);
  color: var(--df-text);
  font: 400 16px/1.65 var(--df-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.admin-bar .df-header { top: 32px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--df-cyan); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--df-cyan); color: #07100e; }

.df-container { width: var(--df-container); margin-inline: auto; }
.df-site-shell { min-height: 100vh; overflow: clip; }
.df-main { min-height: 55vh; }
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.screen-reader-text:focus,
.df-skip-link:focus {
  position: fixed !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  top: 12px;
  left: 12px;
  z-index: 99999;
  padding: 12px 18px !important;
  background: var(--df-cyan);
  color: #07100e;
  border-radius: 8px;
}

.df-topline {
  min-height: 34px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #07090d;
  color: #758094;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.df-topline__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.df-topline span { display: inline-flex; align-items: center; gap: 9px; }
.df-dot { display: inline-block; width: 7px; height: 7px; border-radius: 99px; background: var(--df-cyan); box-shadow: 0 0 16px var(--df-cyan); }

.df-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--df-line);
  background: rgba(9,11,16,.84);
  backdrop-filter: blur(20px);
  transition: background .2s ease, box-shadow .2s ease;
}
.df-header.is-scrolled { background: rgba(8,10,15,.96); box-shadow: 0 14px 40px rgba(0,0,0,.24); }
.df-header__inner { min-height: 82px; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 22px; }
.df-brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.df-brand__mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(67,240,208,.55);
  background: linear-gradient(145deg, rgba(67,240,208,.18), rgba(67,240,208,.03));
  clip-path: polygon(25% 0,100% 0,100% 75%,75% 100%,0 100%,0 25%);
  box-shadow: inset 0 0 22px rgba(67,240,208,.13), 0 0 24px rgba(67,240,208,.08);
}
.df-brand__mark::before,
.df-brand__mark::after,
.df-brand__mark span { content: ""; position: absolute; background: var(--df-cyan); }
.df-brand__mark::before { width: 16px; height: 2px; transform: rotate(45deg); }
.df-brand__mark::after { width: 16px; height: 2px; transform: rotate(-45deg); }
.df-brand__mark span { width: 4px; height: 4px; border-radius: 50%; box-shadow: 0 0 12px var(--df-cyan); }
.df-brand__word { font: 800 26px/1 var(--df-display); letter-spacing: .035em; }
.df-brand__word span { color: var(--df-cyan); }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { max-height: 54px; width: auto; }

.df-game-switch {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px 0 7px;
  border: 1px solid var(--df-line);
  border-radius: 12px;
  color: var(--df-text);
  background: rgba(255,255,255,.035);
}
.df-game-switch__badge {
  min-width: 35px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0aa37, #d46622);
  color: #100c08;
  font: 800 14px/1 var(--df-display);
}
.df-game-switch__label { font-size: 12px; font-weight: 700; }

.df-nav { justify-self: center; }
.df-nav__list { display: flex; align-items: center; gap: 6px; padding: 0; margin: 0; list-style: none; }
.df-nav__list a {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: #aab2c1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.df-nav__list a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  background: var(--df-cyan);
  box-shadow: 0 0 12px rgba(67,240,208,.65);
  transition: transform .2s ease;
}
.df-nav__list a:hover,
.df-nav__list .current-menu-item > a,
.df-nav__list .current_page_item > a { color: #fff; }
.df-nav__list a:hover::after,
.df-nav__list .current-menu-item > a::after,
.df-nav__list .current_page_item > a::after { transform: scaleX(1); }
.df-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--df-line);
  border-radius: 12px;
  background: #111620;
  box-shadow: var(--df-shadow);
  list-style: none;
}
.df-nav__list li { position: relative; }
.df-nav__list li:hover > .sub-menu { display: block; }

.df-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.df-icon-button,
.df-menu-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--df-line);
  border-radius: 11px;
  background: rgba(255,255,255,.025);
  color: #dce2eb;
}
.df-icon-button:hover,
.df-menu-toggle:hover { color: var(--df-cyan); border-color: rgba(67,240,208,.35); background: rgba(67,240,208,.08); }
.df-icon { flex: none; }
.df-header-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border: 2px solid var(--df-bg);
  border-radius: 99px;
  background: var(--df-cyan);
  color: #08110f;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
}
.df-account-button {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(67,240,208,.35);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(67,240,208,.14), rgba(67,240,208,.04));
  color: var(--df-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.df-account-button:hover { border-color: var(--df-cyan); color: #fff; }
.df-menu-toggle { display: none; }
.df-menu-toggle__close { display: none; }
.df-menu-toggle[aria-expanded="true"] .df-menu-toggle__open { display: none; }
.df-menu-toggle[aria-expanded="true"] .df-menu-toggle__close { display: block; }
.df-search-panel { border-top: 1px solid var(--df-line); padding: 15px 0; background: rgba(10,13,19,.98); }
.df-global-search { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.df-global-search input {
  width: 100%;
  min-height: 46px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 16px;
}
.df-global-search .df-icon { color: var(--df-cyan); }

.df-button,
button.button,
a.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.df-button:hover,
button.button:hover,
a.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { transform: translateY(-2px); }
.df-button--primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: linear-gradient(135deg, #5af7db, #29cfb1) !important;
  color: #07110f !important;
  border-color: rgba(96,255,228,.55) !important;
  box-shadow: 0 12px 35px rgba(67,240,208,.17);
}
.df-button--primary:hover { background: linear-gradient(135deg, #78ffe7, #40e6c7) !important; }
.df-button--ghost { background: rgba(255,255,255,.035) !important; color: #fff !important; border-color: var(--df-line-strong) !important; }
.df-button--ghost:hover { border-color: rgba(67,240,208,.5) !important; background: rgba(67,240,208,.075) !important; }
.df-button--large { min-height: 54px; padding-inline: 23px; }
.df-button--small { min-height: 38px; padding-inline: 13px; font-size: 10px; }
.df-text-link { display: inline-flex; align-items: center; gap: 8px; color: #c8d0dd; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.df-text-link .df-icon { width: 18px; }
.df-text-link:hover { color: var(--df-cyan); }
.df-kicker,
.df-eyebrow { color: var(--df-cyan); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.df-hero {
  position: relative;
  min-height: 720px;
  border-bottom: 1px solid var(--df-line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px,
    radial-gradient(circle at 72% 45%, rgba(67,240,208,.12), transparent 25%),
    radial-gradient(circle at 90% 15%, rgba(255,181,69,.08), transparent 22%),
    #090b10;
  overflow: hidden;
}
.df-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9,11,16,0) 45%, rgba(9,11,16,.5) 100%);
  pointer-events: none;
}
.df-hero__noise { position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E"); }
.df-hero__grid { position: relative; z-index: 2; min-height: 640px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: 50px; padding: 70px 0 54px; }
.df-hero__copy { max-width: 650px; }
.df-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.df-eyebrow span { width: 36px; height: 1px; background: var(--df-cyan); box-shadow: 0 0 12px var(--df-cyan); }
.df-hero h1,
.df-page-hero h1,
.df-section-heading h2,
.df-workflow-panel h2,
.df-giveaway-card h2 {
  margin: 0;
  font-family: var(--df-display);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.df-hero h1 { font-size: clamp(76px, 8.4vw, 146px); }
.df-hero h1 span { display: inline-block; color: transparent; -webkit-text-stroke: 1px rgba(245,247,251,.7); text-shadow: 0 0 42px rgba(67,240,208,.10); }
.df-hero__copy > p { max-width: 590px; margin: 28px 0 32px; color: #9ca6b7; font-size: 17px; line-height: 1.75; }
.df-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.df-hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #7f899b; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.df-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.df-hero__trust .df-icon { width: 17px; color: var(--df-cyan); }

.df-reactor { position: relative; min-height: 540px; display: grid; place-items: center; isolation: isolate; }
.df-reactor__grid { position: absolute; inset: 6% 2%; border: 1px solid rgba(67,240,208,.12); transform: perspective(800px) rotateX(68deg) translateY(130px); background: linear-gradient(90deg, rgba(67,240,208,.12) 1px, transparent 1px) 0 0 / 38px 38px, linear-gradient(rgba(67,240,208,.12) 1px, transparent 1px) 0 0 / 38px 38px; mask-image: radial-gradient(circle, #000 25%, transparent 72%); }
.df-reactor__halo { position: absolute; border-radius: 50%; border: 1px solid rgba(67,240,208,.23); box-shadow: inset 0 0 70px rgba(67,240,208,.05); }
.df-reactor__halo--one { width: 420px; height: 420px; }
.df-reactor__halo--two { width: 560px; height: 560px; border-style: dashed; opacity: .45; }
.df-reactor__halo--two::before,
.df-reactor__halo--two::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--df-cyan); box-shadow: 0 0 18px var(--df-cyan); }
.df-reactor__halo--two::before { top: 15%; left: 18%; }
.df-reactor__halo--two::after { bottom: 17%; right: 15%; }
.df-reactor__core { position: relative; width: 320px; height: 320px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(67,240,208,.26) 0%, rgba(67,240,208,.07) 36%, transparent 70%); filter: drop-shadow(0 35px 45px rgba(0,0,0,.55)); }
.df-case-object { position: relative; width: 220px; height: 200px; transform: rotate(-8deg) skewY(1deg); filter: drop-shadow(0 30px 28px rgba(0,0,0,.6)); }
.df-case-object__front { position: absolute; left: 0; right: 22px; top: 34px; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.17); clip-path: polygon(12% 0,100% 0,100% 85%,86% 100%,0 100%,0 16%); background: linear-gradient(145deg, #27303d, #111722 68%); box-shadow: inset 0 0 45px rgba(67,240,208,.07); }
.df-case-object__front::before { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(67,240,208,.2); clip-path: inherit; }
.df-case-object__symbol { position: relative; color: var(--df-cyan); font: 800 72px/1 var(--df-display); letter-spacing: -.05em; text-shadow: 0 0 28px rgba(67,240,208,.3); }
.df-case-object__front small { position: relative; margin-top: 10px; color: #8591a3; font: 700 10px/1 var(--df-body); letter-spacing: .26em; }
.df-case-object__top { position: absolute; left: 18px; right: 0; top: 0; height: 44px; clip-path: polygon(8% 0,100% 0,88% 100%,0 100%); background: linear-gradient(90deg, #3d4857, #1e2632); border: 1px solid rgba(255,255,255,.12); }
.df-case-object__top::after { content: ""; position: absolute; width: 80px; height: 4px; left: 50%; top: 15px; transform: translateX(-50%); border-radius: 20px; background: var(--df-cyan); box-shadow: 0 0 18px rgba(67,240,208,.8); }
.df-case-object__edge { position: absolute; right: 0; top: 42px; width: 23px; height: 156px; clip-path: polygon(0 0,100% 8%,100% 87%,0 100%); background: linear-gradient(#1c2530,#0e131b); border-right: 1px solid rgba(255,255,255,.11); }
.df-floating-card { position: absolute; min-width: 225px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(17,22,31,.84); backdrop-filter: blur(14px); box-shadow: 0 18px 45px rgba(0,0,0,.36); }
.df-floating-card--left { left: 2%; top: 18%; }
.df-floating-card--right { right: 0; bottom: 15%; }
.df-floating-card div { display: flex; flex-direction: column; line-height: 1.15; }
.df-floating-card small { color: #788396; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.df-floating-card strong { margin-top: 3px; font: 700 18px/1 var(--df-display); }
.df-floating-card div span { color: #a3adbc; font-size: 10px; }
.df-floating-card > b { color: #fff; font-size: 12px; }
.df-rarity { width: 4px; height: 40px; display: block; border-radius: 4px; background: var(--df-cyan); box-shadow: 0 0 14px currentColor; }
.df-rarity--pink { background: var(--df-pink); color: var(--df-pink); }
.df-rarity--red { background: var(--df-red); color: var(--df-red); }
.df-rarity--orange { background: var(--df-amber); color: var(--df-amber); }
.df-live-strip { position: relative; z-index: 3; min-height: 80px; display: grid; grid-template-columns: 190px 1fr; align-items: stretch; border-top: 1px solid var(--df-line); background: rgba(7,9,13,.94); }
.df-live-strip__label { display: flex; align-items: center; gap: 10px; justify-content: center; border-right: 1px solid var(--df-line); color: #b9c3d1; font: 800 11px/1 var(--df-body); letter-spacing: .14em; }
.df-live-strip__items { display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.df-live-strip__items span { min-height: 80px; display: flex; flex-direction: column; justify-content: center; padding: 0 22px; border-right: 1px solid var(--df-line); color: #8a95a6; font-size: 10px; text-transform: uppercase; }
.df-live-strip__items b { color: #fff; font-size: 12px; }
.df-live-strip__items em { color: var(--df-cyan); font-style: normal; font-weight: 700; }

.df-section { position: relative; padding: 100px 0; }
.df-section--muted { background: rgba(255,255,255,.018); border-block: 1px solid var(--df-line); }
.df-section--cases { background: linear-gradient(180deg, rgba(67,240,208,.025), transparent 48%); }
.df-section--shop { border-top: 1px solid var(--df-line); background: #0b0e14; }
.df-section--features { padding-top: 30px; }
.df-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.df-section-heading h2 { margin-top: 9px; font-size: clamp(48px,5vw,74px); }

.df-case-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.df-case-card { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--df-line); border-radius: var(--df-radius); background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); box-shadow: 0 20px 48px rgba(0,0,0,.22); transition: transform .22s ease, border-color .22s ease; }
.df-case-card::before { content: ""; position: absolute; inset: 0; opacity: .16; background: radial-gradient(circle at 50% 36%, currentColor, transparent 46%); }
.df-case-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.06) 42%, transparent 58%); transform: translateX(-100%); transition: transform .5s ease; }
.df-case-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.22); }
.df-case-card:hover::after { transform: translateX(100%); }
.df-case-card--cyan { color: var(--df-cyan); }
.df-case-card--violet { color: var(--df-violet); }
.df-case-card--red { color: var(--df-red); }
.df-case-card--amber { color: var(--df-amber); }
.df-case-card__top { position: relative; z-index: 2; display: flex; justify-content: space-between; padding: 18px 18px 0; color: #8b95a6; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.df-case-card__top span { color: currentColor; }
.df-case-card__visual { position: relative; z-index: 2; min-height: 220px; display: grid; place-items: center; }
.df-mini-case { position: relative; width: 145px; height: 145px; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(-6deg); clip-path: polygon(16% 0,100% 0,100% 84%,84% 100%,0 100%,0 16%); border: 1px solid rgba(255,255,255,.13); background: linear-gradient(145deg, #2a3341, #121923); filter: drop-shadow(0 24px 22px rgba(0,0,0,.45)); }
.df-mini-case::before { content: ""; position: absolute; inset: 10px; border: 1px solid currentColor; opacity: .25; clip-path: inherit; }
.df-mini-case i { position: absolute; top: 16px; width: 48px; height: 3px; border-radius: 10px; background: currentColor; box-shadow: 0 0 14px currentColor; }
.df-mini-case strong { position: relative; font: 800 48px/1 var(--df-display); }
.df-mini-case small { position: relative; color: #7f8998; font-size: 9px; letter-spacing: .25em; }
.df-case-card__body { position: relative; z-index: 2; padding: 0 20px 20px; color: var(--df-text); }
.df-case-card__body h3 { margin: 0; font: 700 28px/1 var(--df-display); text-transform: uppercase; }
.df-case-card__body p { margin: 8px 0 17px; color: #7e899a; font-size: 11px; }
.df-case-card__body > div { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--df-line); }
.df-case-card__body > div > strong { font-size: 16px; }
.df-case-card__body a { display: inline-flex; align-items: center; gap: 6px; color: #aab4c2; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.df-case-card__body a .df-icon { width: 16px; }
.df-case-card__body a:hover { color: currentColor; }

.df-product-placeholders,
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px !important; margin: 0 !important; }
.df-product-placeholder,
.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--df-line);
  border-radius: var(--df-radius);
  background: linear-gradient(160deg, #151b25, #0e1219);
  transition: transform .2s ease, border-color .2s ease;
}
.df-product-placeholder:hover,
.woocommerce ul.products li.product:hover { transform: translateY(-6px); border-color: rgba(67,240,208,.28); }
.df-product-placeholder__media,
.woocommerce ul.products li.product a img { min-height: 220px; object-fit: contain; background: radial-gradient(circle at 50% 58%, rgba(67,240,208,.09), transparent 48%), #10151d; }
.df-product-placeholder__media { position: relative; display: grid; place-items: center; }
.df-product-placeholder__media b { color: rgba(255,255,255,.12); font: 800 52px/1 var(--df-display); }
.df-product-placeholder__media .df-rarity { position: absolute; left: 14px; top: 16px; }
.df-product-placeholder > div:last-child { padding: 16px 18px 20px; }
.df-product-placeholder small { color: #778295; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.df-product-placeholder h3 { margin: 6px 0 12px; font: 700 24px/1 var(--df-display); text-transform: uppercase; }
.df-product-placeholder strong { color: var(--df-cyan); }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: block; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 15px 18px 0 !important; color: #fff; font: 700 23px/1.05 var(--df-display) !important; text-transform: uppercase; }
.woocommerce ul.products li.product .price { display: block; padding: 8px 18px 0; color: var(--df-cyan) !important; font-size: 15px !important; font-weight: 800 !important; }
.woocommerce ul.products li.product .price del { color: #687487; opacity: .7; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button { margin: 16px 18px 18px !important; width: calc(100% - 36px); }
.woocommerce span.onsale { min-width: 0; min-height: 0; top: 14px !important; left: 14px !important; padding: 7px 10px; border-radius: 7px; background: var(--df-red); color: #fff; font-size: 9px; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce a.added_to_cart { display: none !important; }

.df-workflow-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; padding: 52px; border: 1px solid var(--df-line); border-radius: 24px; background: linear-gradient(135deg, rgba(67,240,208,.08), rgba(255,255,255,.02) 35%, rgba(166,130,255,.05)); box-shadow: var(--df-shadow); }
.df-workflow-panel h2 { margin: 10px 0 20px; font-size: clamp(48px,5vw,72px); }
.df-workflow-panel__intro p { color: #909bad; }
.df-workflow-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.df-workflow-steps article { position: relative; min-height: 240px; padding: 26px 20px; border: 1px solid var(--df-line); border-radius: 16px; background: rgba(8,11,16,.54); }
.df-workflow-steps article > span { position: absolute; right: 16px; top: 15px; color: rgba(255,255,255,.14); font: 700 32px/1 var(--df-display); }
.df-workflow-steps .df-icon { width: 30px; height: 30px; color: var(--df-cyan); }
.df-workflow-steps h3 { margin: 55px 0 8px; font: 700 26px/1 var(--df-display); text-transform: uppercase; }
.df-workflow-steps p { margin: 0; color: #8691a3; font-size: 12px; line-height: 1.65; }

.df-section--giveaway { padding-top: 30px; }
.df-giveaway-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 450px; overflow: hidden; border: 1px solid rgba(255,181,69,.24); border-radius: 24px; background: linear-gradient(115deg, rgba(255,181,69,.09), #11151d 43%, #0e1218); box-shadow: var(--df-shadow); }
.df-giveaway-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 44px 44px, linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 44px 44px; mask-image: linear-gradient(90deg,#000,transparent 65%); }
.df-giveaway-card__visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--df-amber); }
.df-giveaway-card__visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(255,181,69,.25); border-radius: 50%; box-shadow: inset 0 0 70px rgba(255,181,69,.08); }
.df-giveaway-card__visual span { position: relative; font-size: 48px; text-shadow: 0 0 34px rgba(255,181,69,.8); }
.df-giveaway-card__visual b { position: relative; margin-top: 12px; font: 800 94px/.8 var(--df-display); color: #fff; }
.df-giveaway-card__visual small { position: relative; margin-top: 15px; letter-spacing: .35em; }
.df-giveaway-card__copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px 70px 60px 30px; }
.df-giveaway-card h2 { margin: 10px 0 20px; font-size: clamp(48px,5vw,76px); }
.df-giveaway-card p { max-width: 580px; margin: 0 0 25px; color: #919cad; }
.df-countdown { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.df-countdown span { min-width: 82px; display: flex; flex-direction: column; align-items: center; padding: 12px 15px; border: 1px solid var(--df-line); border-radius: 12px; background: rgba(255,255,255,.03); }
.df-countdown b { font: 700 32px/1 var(--df-display); }
.df-countdown small { margin-top: 5px; color: #707c8e; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.df-countdown i { color: #596476; font-style: normal; font-weight: 700; }

.df-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.df-feature { min-height: 210px; padding: 28px; border: 1px solid var(--df-line); border-radius: var(--df-radius); background: rgba(255,255,255,.018); }
.df-feature .df-icon { color: var(--df-cyan); }
.df-feature > span { color: var(--df-cyan); font: 700 20px/1 var(--df-display); }
.df-feature h3 { margin: 42px 0 10px; font: 700 25px/1 var(--df-display); text-transform: uppercase; }
.df-feature p { margin: 0; color: #8792a3; font-size: 12px; }

.df-page-hero { position: relative; padding: 110px 0 72px; overflow: hidden; border-bottom: 1px solid var(--df-line); background: linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px, linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px, radial-gradient(circle at 80% 30%, rgba(67,240,208,.09), transparent 30%), #0b0e14; }
.df-page-hero::after { content: "DF"; position: absolute; right: 4vw; bottom: -34px; color: rgba(255,255,255,.025); font: 800 260px/.7 var(--df-display); }
.df-page-hero--compact { padding: 80px 0 50px; }
.df-page-hero .df-container { position: relative; z-index: 2; }
.df-page-hero h1 { max-width: 1000px; margin-top: 12px; font-size: clamp(58px,7vw,102px); }
.df-page-hero p { max-width: 690px; margin: 24px 0 0; color: #929cad; font-size: 16px; }
.df-page-hero--giveaways { background-color: #100f0d; background-image: radial-gradient(circle at 75% 40%, rgba(255,181,69,.12), transparent 28%), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px, linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px; }
.df-page-hero--inventory { background-image: radial-gradient(circle at 75% 40%, rgba(166,130,255,.12), transparent 28%), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px, linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 60px 60px; }
.df-page-hero--policy { padding-bottom: 58px; }

.df-content-layout { padding: 80px 0; }
.df-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding: 80px 0; }
.df-post-card { overflow: hidden; border: 1px solid var(--df-line); border-radius: var(--df-radius); background: var(--df-panel); }
.df-post-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.df-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.df-post-card:hover .df-post-card__media img { transform: scale(1.04); }
.df-post-card__body { padding: 24px; }
.df-post-card h2 { margin: 8px 0 12px; font: 700 30px/1 var(--df-display); }
.df-post-card p { color: #8e98a8; font-size: 13px; }
.df-readable-content,
.df-policy-content { max-width: 920px; padding-top: 72px; padding-bottom: 100px; }
.df-readable-content h2,
.df-policy-content h2 { margin: 2em 0 .7em; font: 700 42px/1 var(--df-display); text-transform: uppercase; }
.df-readable-content h3,
.df-policy-content h3 { margin: 1.7em 0 .5em; font: 700 28px/1 var(--df-display); text-transform: uppercase; }
.df-readable-content p,
.df-readable-content li,
.df-policy-content p,
.df-policy-content li { color: #a0a9b8; }
.df-readable-content a,
.df-policy-content a { color: var(--df-cyan); text-decoration: underline; text-underline-offset: 3px; }
.df-readable-content table,
.df-policy-content table { width: 100%; display: block; overflow-x: auto; border-collapse: collapse; margin: 30px 0; }
.df-readable-content th,
.df-readable-content td,
.df-policy-content th,
.df-policy-content td { min-width: 150px; padding: 13px 16px; border: 1px solid var(--df-line); text-align: left; }
.df-policy-content { animation: none !important; opacity: 1 !important; transform: none !important; visibility: visible !important; }
.df-static-policy .df-reveal { animation: none !important; opacity: 1 !important; transform: none !important; visibility: visible !important; }

.df-giveaway-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.df-giveaway-tile { position: relative; min-height: 420px; padding: 32px; overflow: hidden; border: 1px solid var(--df-line); border-radius: 20px; background: linear-gradient(160deg, rgba(255,181,69,.08), rgba(255,255,255,.02) 40%, rgba(255,255,255,.01)); }
.df-giveaway-tile__index { position: absolute; right: 24px; top: 18px; color: rgba(255,255,255,.09); font: 700 64px/1 var(--df-display); }
.df-giveaway-tile h2 { margin: 10px 0 40px; font: 700 42px/1 var(--df-display); text-transform: uppercase; }
.df-giveaway-tile__prize { min-height: 100px; display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid var(--df-line); border-radius: 14px; background: rgba(0,0,0,.18); }
.df-giveaway-tile__prize .df-icon { color: var(--df-amber); }
.df-giveaway-tile__timer { margin: 27px 0; font: 700 44px/1 var(--df-display); letter-spacing: .04em; }
.df-giveaway-tile button[disabled] { opacity: .65; cursor: not-allowed; }
.df-inventory-shell { border: 1px solid var(--df-line); border-radius: 20px; background: rgba(255,255,255,.018); overflow: hidden; }
.df-inventory-shell__toolbar { display: flex; gap: 8px; padding: 14px; border-bottom: 1px solid var(--df-line); }
.df-inventory-shell__toolbar button { min-height: 38px; padding: 0 15px; border: 1px solid transparent; border-radius: 9px; background: transparent; color: #7e899a; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.df-inventory-shell__toolbar button.is-active { border-color: rgba(67,240,208,.3); background: rgba(67,240,208,.08); color: var(--df-cyan); }
.df-empty-state { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px 20px; text-align: center; }
.df-empty-state__mark { width: 80px; height: 80px; display: grid; place-items: center; border: 1px solid rgba(67,240,208,.3); border-radius: 20px; background: rgba(67,240,208,.08); color: var(--df-cyan); font: 800 32px/1 var(--df-display); }
.df-empty-state h2 { margin: 23px 0 8px; font: 700 38px/1 var(--df-display); text-transform: uppercase; }
.df-empty-state p { max-width: 520px; margin: 0 0 23px; color: #8792a3; }
.df-faq-list { max-width: 980px; }
.df-faq-item { border-bottom: 1px solid var(--df-line); }
.df-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; font: 700 26px/1.2 var(--df-display); text-transform: uppercase; list-style: none; }
.df-faq-item summary::-webkit-details-marker { display: none; }
.df-faq-item summary span { color: var(--df-cyan); font-size: 28px; }
.df-faq-item[open] summary span { transform: rotate(45deg); }
.df-faq-item p { max-width: 780px; margin: 0 0 26px; color: #8e98a8; }
.df-about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.df-about-card { min-height: 340px; padding: 32px; border: 1px solid var(--df-line); border-radius: 18px; background: linear-gradient(150deg, rgba(67,240,208,.06), rgba(255,255,255,.015)); }
.df-about-card > span { color: var(--df-cyan); font: 800 24px/1 var(--df-display); }
.df-about-card h2 { margin: 100px 0 14px; font: 700 40px/1 var(--df-display); text-transform: uppercase; }
.df-about-card p { color: #8e98a8; }
.df-contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 48px; border: 1px solid var(--df-line); border-radius: 20px; background: linear-gradient(135deg, rgba(67,240,208,.08), rgba(255,255,255,.02)); }
.df-contact-panel h2 { margin: 10px 0; font: 700 48px/1 var(--df-display); }
.df-contact-panel p { color: #8c97a8; }
.df-error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.df-error-page__code { color: transparent; -webkit-text-stroke: 1px rgba(67,240,208,.4); font: 800 180px/.8 var(--df-display); }
.df-error-page h1 { margin: 20px 0 10px; font: 700 58px/1 var(--df-display); text-transform: uppercase; }
.df-error-page p { color: #8c97a7; }

/* WooCommerce shell */
.df-commerce-shell { padding: 72px 0 110px; }
.woocommerce .woocommerce-breadcrumb { margin: 0 0 25px; color: #657185; font-size: 11px; }
.woocommerce .woocommerce-breadcrumb a { color: #9aa5b5; }
.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title,
.woocommerce-account .woocommerce h2,
.woocommerce-cart h1,
.woocommerce-checkout h1 { color: #fff; font: 800 clamp(48px,6vw,82px)/.95 var(--df-display); text-transform: uppercase; }
.woocommerce .woocommerce-result-count { color: #7f8a9c; font-size: 12px; }
.woocommerce .woocommerce-ordering select { min-height: 44px; padding: 0 38px 0 14px; border: 1px solid var(--df-line); border-radius: 10px; background: #121722; color: #fff; }
.df-shop-filter { clear: both; display: grid; grid-template-columns: minmax(220px,1.5fr) minmax(170px,.8fr) 115px 115px auto auto; gap: 10px; align-items: center; margin: 0 0 26px; padding: 14px; border: 1px solid var(--df-line); border-radius: 15px; background: rgba(255,255,255,.025); }
.df-shop-filter__summary { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 7px; padding: 2px 2px 5px; color: #778396; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.df-shop-filter__summary strong { color: var(--df-cyan); font-size: 14px; }
.df-shop-filter__summary i { color: #4e5a6d; font-style: normal; }
.df-field { min-height: 46px; display: flex; align-items: center; gap: 9px; padding: 0 12px; border: 1px solid var(--df-line); border-radius: 10px; background: #10151d; color: #667286; }
.df-field--search .df-icon { width: 18px; color: var(--df-cyan); }
.df-field input,
.df-field select { width: 100%; border: 0; outline: 0; background: transparent; color: #fff; }
.df-field select option { color: #10151d; }
.df-field--price span { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.df-field--price input { min-width: 0; }
.woocommerce nav.woocommerce-pagination { margin-top: 42px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--df-line); border-radius: 10px; background: #121722; color: #aeb7c5; }
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--df-cyan); color: #07110f; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(380px,.9fr); gap: 58px; align-items: start; }
.woocommerce div.product div.images,
.woocommerce div.product div.summary { width: 100%; float: none; margin: 0; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { border: 1px solid var(--df-line); border-radius: 20px; overflow: hidden; background: radial-gradient(circle at 50% 55%, rgba(67,240,208,.08), transparent 46%), #10151d; }
.woocommerce div.product div.images .flex-control-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 10px; }
.woocommerce div.product div.images .flex-control-thumbs li { width: auto; float: none; border: 1px solid var(--df-line); border-radius: 9px; overflow: hidden; }
.woocommerce div.product .summary { padding: 34px; border: 1px solid var(--df-line); border-radius: 20px; background: linear-gradient(155deg, #171d28, #0f131b); }
.woocommerce div.product .product_title { margin: 0 0 18px; font-size: clamp(46px,5vw,72px); }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--df-cyan); font-size: 28px; font-weight: 800; }
.woocommerce div.product form.cart { display: flex; gap: 10px; margin-top: 28px; }
.woocommerce .quantity .qty { min-height: 48px; width: 72px; border: 1px solid var(--df-line); border-radius: 10px; background: #0e131a; color: #fff; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; width: 100%; padding-top: 30px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; margin: 0 0 22px; display: flex; gap: 8px; border-bottom: 1px solid var(--df-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: 0; background: transparent; margin: 0; padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 13px 18px; color: #7f8a9c; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--df-cyan); border-bottom: 2px solid var(--df-cyan); }
.woocommerce div.product .woocommerce-tabs .panel { color: #9ca6b5; }
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products { grid-column: 1/-1; width: 100%; margin-top: 40px; }
.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 { margin-bottom: 28px; font: 800 48px/1 var(--df-display); text-transform: uppercase; }
.product_meta .posted_in,
.product_meta .tagged_as { display: none !important; }

.woocommerce table.shop_table { border: 1px solid var(--df-line); border-radius: 15px; overflow: hidden; background: #10151d; }
.woocommerce table.shop_table th,
.woocommerce table.shop_table td { padding: 15px; border-color: var(--df-line); color: #aab3c1; }
.woocommerce table.shop_table th { color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.woocommerce-cart-form .product-thumbnail img { width: 80px; border-radius: 10px; background: #151b25; }
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content { padding: 24px; border: 1px solid var(--df-line); border-radius: 16px; background: #111720; }
.woocommerce form .form-row label { color: #b9c1cd; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single { min-height: 48px; border: 1px solid var(--df-line); border-radius: 10px; background: #0d1219; color: #fff; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea { padding: 12px 14px; }
.woocommerce form .form-row input::placeholder,
.woocommerce form .form-row textarea::placeholder { color: #798497; opacity: 1; }
.select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff; line-height: 46px; }
.woocommerce-info,
.woocommerce-message,
.woocommerce-error { border: 1px solid var(--df-line); border-top: 2px solid var(--df-cyan); border-radius: 12px; background: #121821; color: #c0c8d4; }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--df-cyan); }
.woocommerce-error { border-top-color: var(--df-red); }
.woocommerce-error::before { color: var(--df-red); }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 260px 1fr; gap: 22px; }
.woocommerce-account .woocommerce h2:first-child,
.woocommerce-account .entry-title + .woocommerce h2:first-child,
.woocommerce-account .woocommerce > h2:first-child { display: none !important; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 12px 13px; border-radius: 9px; color: #8994a6; font-size: 12px; font-weight: 700; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: rgba(67,240,208,.08); color: var(--df-cyan); }
.woocommerce-account .woocommerce-MyAccount-content { float: none; width: 100%; }
.woocommerce-account .woocommerce-MyAccount-navigation { float: none; width: 100%; }
.wishlist_table,
.tinv-wishlist table { color: #fff; }
.tinv-wishlist .product-remove button,
.tinvwl_add_to_wishlist_button,
.yith-wcwl-add-to-wishlist a { color: #fff !important; }

.df-footer { position: relative; margin-top: 70px; overflow: hidden; border-top: 1px solid var(--df-line); background: #07090d; }
.df-footer__grid { pointer-events: none; position: absolute; inset: 0; opacity: .22; background: linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 60px 60px, linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 60px 60px; mask-image: linear-gradient(#000,transparent 70%); }
.df-footer__top { position: relative; display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 50px; padding: 72px 0 54px; }
.df-footer__brand p { max-width: 420px; margin: 22px 0; color: #747f91; font-size: 13px; }
.df-footer__signals { display: flex; flex-wrap: wrap; gap: 16px; color: #657184; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.df-footer__signals span { display: inline-flex; align-items: center; gap: 7px; }
.df-footer__column { display: flex; flex-direction: column; gap: 10px; }
.df-footer__column h3 { margin: 0 0 10px; color: #fff; font: 700 19px/1 var(--df-display); text-transform: uppercase; }
.df-footer__column a,
.df-footer-link-button { width: fit-content; padding: 0; border: 0; background: transparent; color: #778396; font-size: 12px; text-align: left; }
.df-footer__column a:hover,
.df-footer-link-button:hover { color: var(--df-cyan); }
.df-footer__widgets { position: relative; padding-bottom: 35px; }
.df-footer__bottom { position: relative; display: flex; justify-content: space-between; gap: 30px; padding: 26px 0 32px; border-top: 1px solid var(--df-line); color: #5f6a7c; font-size: 10px; }
.df-footer__bottom > div:first-child { display: flex; flex-direction: column; }
.df-footer__legal-company { max-width: 650px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px 15px; text-align: right; }
.df-footer__legal-company strong { color: #9aa5b5; }

.df-cookie { position: fixed; z-index: 3000; left: 50%; bottom: 18px; width: min(920px, calc(100% - 28px)); transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 15px 16px 15px 20px; border: 1px solid rgba(67,240,208,.28); border-radius: 14px; background: rgba(13,17,24,.96); backdrop-filter: blur(18px); box-shadow: 0 22px 60px rgba(0,0,0,.55); }
.df-cookie[hidden] { display: none !important; }
.df-cookie__copy { display: flex; flex-direction: column; }
.df-cookie__copy strong { font: 700 18px/1 var(--df-display); text-transform: uppercase; }
.df-cookie__copy span { margin-top: 4px; color: #8d98a9; font-size: 11px; }
.df-cookie__actions { display: flex; flex: none; gap: 8px; }
.df-toast { position: fixed; right: 18px; bottom: 18px; z-index: 3500; max-width: 360px; padding: 14px 18px; border: 1px solid rgba(67,240,208,.35); border-radius: 12px; background: #111820; color: #fff; box-shadow: var(--df-shadow); font-size: 12px; font-weight: 700; }
.df-toast[hidden] { display: none !important; }

/* Reveal effects are progressive enhancement. Content is visible until JavaScript opts in. */
html.df-js body:not(.df-static-policy) .df-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.df-js body:not(.df-static-policy) .df-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .df-reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 1180px) {
  :root { --df-container: min(100% - 36px, 1100px); }
  .df-header__inner { grid-template-columns: auto auto 1fr auto; gap: 13px; }
  .df-game-switch__label { display: none; }
  .df-nav__list a { padding-inline: 9px; }
  .df-account-button span { display: none; }
  .df-account-button { width: 42px; padding: 0; justify-content: center; }
  .df-hero__grid { grid-template-columns: minmax(0,1fr) minmax(440px,1fr); gap: 15px; }
  .df-case-grid,
  .woocommerce ul.products,
  .df-product-placeholders { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .df-workflow-panel { grid-template-columns: 1fr; }
  .df-footer__top { grid-template-columns: 1.4fr repeat(3,1fr); gap: 30px; }
  .df-shop-filter { grid-template-columns: 1.5fr 1fr 110px 110px; }
  .df-shop-filter .df-button { width: 100%; }
}

@media (max-width: 900px) {
  body.admin-bar .df-header { top: 46px; }
  .df-topline { display: none; }
  .df-header__inner { min-height: 70px; grid-template-columns: auto 1fr auto; }
  .df-game-switch { justify-self: start; }
  .df-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 15px 18px 24px; border-top: 1px solid var(--df-line); border-bottom: 1px solid var(--df-line); background: rgba(9,11,16,.98); }
  .df-nav.is-open { display: block; }
  .df-nav__list { flex-direction: column; align-items: stretch; }
  .df-nav__list a { min-height: 48px; padding: 0 8px; border-bottom: 1px solid var(--df-line); }
  .df-nav__list a::after { display: none; }
  .df-menu-toggle { display: grid; }
  .df-header-actions .df-icon-button:first-child { display: none; }
  .df-hero { min-height: auto; }
  .df-hero__grid { min-height: auto; grid-template-columns: 1fr; padding-top: 75px; }
  .df-hero__copy { max-width: 760px; }
  .df-reactor { min-height: 500px; }
  .df-live-strip { grid-template-columns: 150px 1fr; overflow: hidden; }
  .df-live-strip__items { grid-template-columns: repeat(4,220px); overflow-x: auto; }
  .df-workflow-steps { grid-template-columns: repeat(3,1fr); }
  .df-giveaway-card { grid-template-columns: 1fr; }
  .df-giveaway-card__visual { min-height: 360px; }
  .df-giveaway-card__copy { padding: 30px 38px 45px; }
  .df-giveaway-grid,
  .df-feature-grid,
  .df-about-grid,
  .df-post-grid { grid-template-columns: 1fr 1fr; }
  .df-footer__top { grid-template-columns: 1fr 1fr; }
  .df-footer__brand { grid-column: 1/-1; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .df-shop-filter { grid-template-columns: 1fr 1fr; }
  .df-shop-filter .df-field--search { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  :root { --df-container: calc(100% - 24px); --df-radius: 14px; }
  .df-header__inner { gap: 8px; }
  .df-brand__mark { width: 34px; height: 34px; }
  .df-brand__word { font-size: 22px; }
  .df-game-switch { display: none; }
  .df-header__inner { grid-template-columns: 1fr auto; }
  .df-header-actions .df-icon-button:nth-child(1),
  .df-header-actions .df-icon-button:nth-child(2) { display: none; }
  .df-account-button { display: none; }
  .df-global-search { grid-template-columns: auto 1fr; }
  .df-global-search .df-button { grid-column: 1/-1; }
  .df-hero__grid { padding: 58px 0 34px; }
  .df-hero h1 { font-size: clamp(64px,22vw,94px); line-height: .9; }
  .df-hero__copy > p { font-size: 14px; }
  .df-hero__actions { flex-direction: column; }
  .df-hero__actions .df-button { width: 100%; }
  .df-hero__trust { gap: 12px; }
  .df-reactor { min-height: 400px; margin-inline: -20px; }
  .df-reactor__halo--one { width: 310px; height: 310px; }
  .df-reactor__halo--two { width: 390px; height: 390px; }
  .df-reactor__core { width: 260px; height: 260px; }
  .df-case-object { transform: scale(.8) rotate(-8deg); }
  .df-floating-card { min-width: 180px; padding: 10px; }
  .df-floating-card--left { left: 3%; top: 12%; }
  .df-floating-card--right { right: 2%; bottom: 9%; }
  .df-live-strip { grid-template-columns: 115px 1fr; }
  .df-live-strip__label { font-size: 9px; }
  .df-section { padding: 72px 0; }
  .df-section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 25px; }
  .df-section-heading h2 { font-size: 48px; }
  .df-case-grid,
  .woocommerce ul.products,
  .df-product-placeholders,
  .df-giveaway-grid,
  .df-feature-grid,
  .df-about-grid,
  .df-post-grid { grid-template-columns: 1fr !important; }
  .df-case-card { min-height: 360px; }
  .df-workflow-panel { padding: 28px 20px; }
  .df-workflow-panel h2 { font-size: 50px; }
  .df-workflow-steps { grid-template-columns: 1fr; }
  .df-workflow-steps article { min-height: 190px; }
  .df-giveaway-card__visual { min-height: 300px; }
  .df-giveaway-card__visual::before { width: 250px; height: 250px; }
  .df-giveaway-card__visual b { font-size: 72px; }
  .df-giveaway-card__copy { padding: 25px 20px 32px; }
  .df-giveaway-card h2 { font-size: 50px; }
  .df-countdown { gap: 7px; width: 100%; }
  .df-countdown span { min-width: 0; flex: 1; padding-inline: 8px; }
  .df-countdown b { font-size: 25px; }
  .df-page-hero { padding: 78px 0 48px; }
  .df-page-hero h1 { font-size: 56px; }
  .df-page-hero::after { font-size: 150px; }
  .df-contact-panel { align-items: flex-start; flex-direction: column; padding: 28px 20px; }
  .df-contact-panel h2 { font-size: 34px; overflow-wrap: anywhere; }
  .df-shop-filter { grid-template-columns: 1fr; }
  .df-shop-filter .df-field--search { grid-column: auto; }
  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering { float: none; }
  .woocommerce .woocommerce-ordering { margin-bottom: 20px; }
  .woocommerce div.product .summary { padding: 22px 18px; }
  .woocommerce div.product form.cart { flex-wrap: wrap; }
  .woocommerce div.product form.cart .button { flex: 1; }
  .df-footer__top { grid-template-columns: 1fr; gap: 34px; padding-top: 55px; }
  .df-footer__brand { grid-column: auto; }
  .df-footer__bottom { flex-direction: column; }
  .df-footer__legal-company { justify-content: flex-start; text-align: left; }
  .df-cookie { align-items: stretch; flex-direction: column; gap: 12px; padding: 15px; }
  .df-cookie__actions { width: 100%; }
  .df-cookie__actions .df-button { flex: 1; }
}

/* My Account layout */
.df-account-shell{padding:54px 0 110px}.woocommerce-account .df-readable-content{width:var(--df-container);max-width:none}.woocommerce-account .woocommerce{display:grid;width:100%;grid-template-columns:minmax(230px,280px) minmax(0,1fr);align-items:start;gap:24px}.woocommerce-account .woocommerce-MyAccount-navigation{position:sticky;top:118px;min-width:0;padding:18px}.woocommerce-account .woocommerce-MyAccount-content{min-width:0;padding:28px}.woocommerce-account .woocommerce-MyAccount-navigation li+li{margin-top:4px}.woocommerce-account .woocommerce-MyAccount-navigation li a{min-height:44px;display:flex;align-items:center;padding:10px 13px}.woocommerce-account .woocommerce-MyAccount-content>.dfc-inventory-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.woocommerce-account .woocommerce-MyAccount-content .dfc-inventory-item{width:auto;max-width:none}.woocommerce-account .woocommerce-MyAccount-content p:first-child{margin-top:0}
@media(max-width:1180px){.woocommerce-account .woocommerce{grid-template-columns:220px minmax(0,1fr)}.woocommerce-account .woocommerce-MyAccount-content>.dfc-inventory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:900px){.df-account-shell{padding-top:34px}.woocommerce-account .woocommerce{grid-template-columns:1fr}.woocommerce-account .woocommerce-MyAccount-navigation{position:static}.woocommerce-account .woocommerce-MyAccount-navigation ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:5px}.woocommerce-account .woocommerce-MyAccount-navigation li+li{margin-top:0}}
@media(max-width:640px){.woocommerce-account .woocommerce-MyAccount-navigation ul{grid-template-columns:1fr}.woocommerce-account .woocommerce-MyAccount-content{padding:18px}.woocommerce-account .woocommerce-MyAccount-content>.dfc-inventory-grid{grid-template-columns:1fr}}


/* DropForge v1.2.3: two-row header and full-width Cart / Checkout */
.df-header__inner{display:block;min-height:0}
.df-header__primary{min-height:72px;display:grid;grid-template-columns:auto auto minmax(20px,1fr) auto;align-items:center;gap:22px}
.df-header__secondary{min-height:54px;display:flex;align-items:center;gap:18px;border-top:1px solid rgba(255,255,255,.065)}
.df-header__secondary .df-nav{flex:1;justify-self:auto}
.df-header__secondary .df-nav__list{justify-content:flex-start;flex-wrap:wrap}
.df-header__secondary .df-nav__list a{min-height:53px}
.df-cases-cta{min-width:190px;min-height:42px;display:inline-flex;align-items:center;gap:11px;padding:6px 16px 6px 10px;border:1px solid rgba(67,240,208,.42);border-radius:12px;background:linear-gradient(135deg,rgba(67,240,208,.22),rgba(67,240,208,.07));box-shadow:inset 0 0 24px rgba(67,240,208,.05);color:#fff;text-transform:uppercase}
.df-cases-cta:hover{border-color:var(--df-cyan);background:linear-gradient(135deg,rgba(67,240,208,.32),rgba(67,240,208,.1));color:#fff;transform:translateY(-1px)}
.df-cases-cta__icon{width:30px;height:30px;display:grid;place-items:center;border-radius:9px;background:var(--df-cyan);box-shadow:0 0 20px rgba(67,240,208,.35);color:#06110f;font-size:13px}
.df-cases-cta span:last-child{display:flex;flex-direction:column;line-height:1}
.df-cases-cta small{margin-bottom:4px;color:#8ecfc4;font-size:8px;font-weight:800;letter-spacing:.14em}
.df-cases-cta strong{font:800 16px/1 var(--df-display);letter-spacing:.05em}
.df-page-hero--commerce{background-image:radial-gradient(circle at 78% 36%,rgba(67,240,208,.11),transparent 30%),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px) 0 0/60px 60px,linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px) 0 0/60px 60px}
.df-cart-shell,.df-checkout-shell{padding:54px 0 110px}
.df-commerce-page-content{width:var(--df-container);max-width:none;padding:0}
.df-commerce-page-content>.woocommerce,.df-commerce-page-content>.wp-block-woocommerce-cart,.df-commerce-page-content>.wp-block-woocommerce-checkout{width:100%;max-width:none;margin:0}

/* Classic WooCommerce cart */
.woocommerce-cart .df-commerce-page-content .woocommerce{display:grid;grid-template-columns:minmax(0,1fr) minmax(330px,390px);align-items:start;gap:24px}
.woocommerce-cart .woocommerce-notices-wrapper,.woocommerce-cart .woocommerce-form-coupon-toggle,.woocommerce-cart .woocommerce-message,.woocommerce-cart .woocommerce-info,.woocommerce-cart .woocommerce-error{grid-column:1/-1}
.woocommerce-cart .woocommerce-cart-form{min-width:0;margin:0}
.woocommerce-cart .cart-collaterals{width:100%;min-width:0;margin:0}
.woocommerce-cart .cart-collaterals .cart_totals{float:none;width:100%;margin:0;padding:26px;border:1px solid var(--df-line);border-radius:18px;background:#111720;position:sticky;top:170px}
.woocommerce-cart .cart-collaterals .cart_totals h2{margin:0 0 20px;font:800 34px/1 var(--df-display);text-transform:uppercase}
.woocommerce-cart table.shop_table{width:100%;margin:0;table-layout:auto}
.woocommerce-cart table.shop_table td.product-name{min-width:220px}
.woocommerce-cart table.shop_table td.product-name a{color:#fff;font-weight:750}
.woocommerce-cart table.shop_table .product-price,.woocommerce-cart table.shop_table .product-subtotal{white-space:nowrap}
.woocommerce-cart table.shop_table .actions{padding:18px}
.woocommerce-cart table.shop_table .actions .coupon{display:flex;gap:8px;max-width:460px}
.woocommerce-cart table.shop_table .actions .coupon .input-text{width:100%;min-height:46px;margin:0;padding:0 14px;border:1px solid var(--df-line);border-radius:10px;background:#0d1219;color:#fff}
.woocommerce-cart .wc-proceed-to-checkout{padding:18px 0 0}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{width:100%;min-height:54px;margin:0;background:var(--df-cyan);color:#06110f;font-size:13px}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover{background:#7df9e2;color:#06110f}

/* Classic WooCommerce checkout */
.woocommerce-checkout .df-commerce-page-content>.woocommerce{width:100%}
.woocommerce-checkout form.checkout{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);align-items:start;gap:0 24px}
.woocommerce-checkout form.checkout>.woocommerce-NoticeGroup,.woocommerce-checkout form.checkout>.woocommerce-NoticeGroup-checkout{grid-column:1/-1}
.woocommerce-checkout #customer_details{grid-column:1;grid-row:1/span 3;min-width:0;padding:28px;border:1px solid var(--df-line);border-radius:18px;background:#111720}
.woocommerce-checkout #customer_details .col-1,.woocommerce-checkout #customer_details .col-2{float:none;width:100%}
.woocommerce-checkout #customer_details .col-2{margin-top:24px}
.woocommerce-checkout #customer_details h3,.woocommerce-checkout #order_review_heading{margin:0 0 22px;color:#fff;font:800 34px/1 var(--df-display);text-transform:uppercase}
.woocommerce-checkout #order_review_heading{grid-column:2;grid-row:1;padding:24px 26px 0;margin:0;border:1px solid var(--df-line);border-bottom:0;border-radius:18px 18px 0 0;background:#111720}
.woocommerce-checkout #order_review{grid-column:2;grid-row:2;min-width:0;padding:18px 26px 26px;border:1px solid var(--df-line);border-top:0;border-radius:0 0 18px 18px;background:#111720}
.woocommerce-checkout #order_review table.shop_table{margin:0 0 20px;background:#0d1219}
.woocommerce-checkout #payment{background:#0d1219;border:1px solid var(--df-line);border-radius:14px;color:#c1c8d3}
.woocommerce-checkout #payment ul.payment_methods{border-bottom-color:var(--df-line)}
.woocommerce-checkout #payment div.payment_box{background:#151c26;color:#aeb7c5}
.woocommerce-checkout #payment div.payment_box:before{border-bottom-color:#151c26}
.woocommerce-checkout #place_order{width:100%;min-height:54px;background:var(--df-cyan);color:#06110f}
.woocommerce-checkout #place_order:hover{background:#7df9e2;color:#06110f}
.woocommerce-checkout .woocommerce-form-coupon-toggle,.woocommerce-checkout .woocommerce-form-login-toggle{margin-bottom:14px}

/* WooCommerce Cart and Checkout Blocks */
.woocommerce-cart .wp-block-woocommerce-cart,.woocommerce-checkout .wp-block-woocommerce-checkout{width:100%;max-width:none}
.wc-block-cart,.wc-block-checkout{gap:24px}
.wc-block-cart__main,.wc-block-checkout__main{min-width:0}
.wc-block-cart__sidebar,.wc-block-checkout__sidebar{border:1px solid var(--df-line);border-radius:18px;background:#111720;padding:24px!important}
.wc-block-components-sidebar-layout .wc-block-components-main{padding-right:0!important}
.wc-block-components-sidebar{margin-top:0!important}
.wc-block-components-totals-wrapper{border-top-color:var(--df-line)!important}
.wc-block-components-product-name,.wc-block-components-order-summary-item__description a{color:#fff!important}
.wc-block-components-button:not(.is-link){min-height:52px;border-radius:11px;background:var(--df-cyan)!important;color:#06110f!important;font-weight:800;text-transform:uppercase}
.wc-block-components-text-input input,.wc-block-components-combobox .wc-block-components-combobox-control input{border-color:var(--df-line)!important;border-radius:10px!important;background:#0d1219!important;color:#fff!important}
.wc-block-components-checkout-step{border:1px solid var(--df-line);border-radius:18px;background:#111720;padding:24px!important;margin-bottom:18px!important}

@media(max-width:1180px){
  .df-header__primary{gap:13px}
  .df-header__secondary{gap:10px}
  .df-cases-cta{min-width:170px}
  .df-header__secondary .df-nav__list a{padding-inline:10px;font-size:12px}
  .woocommerce-cart .df-commerce-page-content .woocommerce{grid-template-columns:minmax(0,1fr) 330px}
  .woocommerce-checkout form.checkout{grid-template-columns:minmax(0,1fr) 360px}
}
@media(max-width:900px){
  .df-header__primary{min-height:70px;grid-template-columns:auto 1fr auto}
  .df-header__primary .df-game-switch{display:none}
  .df-header__secondary{display:none;position:absolute;top:100%;left:0;right:0;min-height:0;padding:16px 18px 24px;flex-direction:column;align-items:stretch;border-top:1px solid var(--df-line);border-bottom:1px solid var(--df-line);background:rgba(9,11,16,.99);box-shadow:0 28px 50px rgba(0,0,0,.35)}
  .df-header__secondary.is-open{display:flex}
  .df-cases-cta{width:100%;min-height:52px}
  .df-header__secondary .df-nav{display:block;width:100%}
  .df-header__secondary .df-nav__list{flex-direction:column;align-items:stretch}
  .df-header__secondary .df-nav__list a{min-height:48px;padding:0 8px;border-bottom:1px solid var(--df-line)}
  .df-header__secondary .df-nav__list a::after{display:none}
  .woocommerce-cart .df-commerce-page-content .woocommerce,.woocommerce-checkout form.checkout{display:block}
  .woocommerce-cart .cart-collaterals{margin-top:24px}
  .woocommerce-cart .cart-collaterals .cart_totals{position:static}
  .woocommerce-checkout #customer_details,.woocommerce-checkout #order_review_heading,.woocommerce-checkout #order_review{display:block;width:100%;margin:0}
  .woocommerce-checkout #order_review_heading{margin-top:24px}
}
@media(max-width:700px){
  .df-cart-shell,.df-checkout-shell{padding:34px 0 80px}
  .woocommerce-cart-form{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .woocommerce-cart table.shop_table{min-width:680px}
  .woocommerce-cart table.shop_table .actions .coupon{max-width:none}
  .wc-block-cart__sidebar,.wc-block-checkout__sidebar,.wc-block-components-checkout-step{padding:18px!important}
}
@media(max-width:480px){
  .df-topline__inner span:last-child{display:none}
  .df-brand__word{font-size:23px}
  .df-cases-cta strong{font-size:15px}
  .woocommerce-cart table.shop_table .actions .coupon{flex-direction:column}
}

/* ========================================================================
   DropForge 1.2.4 — shop, wishlist and account stability fixes
   ===================================================================== */

/* WooCommerce's clearfix pseudo-elements become real grid cells when a
   product list or account wrapper is converted to CSS Grid. Remove them so
   the first card never starts in the second column and Related Products do
   not contain an empty tile. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after,
.woocommerce-cart .woocommerce::before,
.woocommerce-cart .woocommerce::after,
.woocommerce-checkout .woocommerce::before,
.woocommerce-checkout .woocommerce::after {
  content: none !important;
  display: none !important;
}

/* Product cards */
.woocommerce ul.products li.product {
  position: relative;
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 250px !important;
  min-height: 250px;
  margin: 0 !important;
  object-fit: contain;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 64px;
  overflow-wrap: anywhere;
}
.woocommerce ul.products li.product .price {
  margin-top: auto;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 36px) !important;
  min-height: 54px;
  margin: 16px 18px 18px !important;
  padding: 0 16px !important;
  text-align: center !important;
  line-height: 1.15 !important;
  white-space: normal;
}

/* Native wishlist controls */
.df-wishlist-toggle {
  border: 1px solid var(--df-line-strong);
  background: rgba(10, 14, 20, .88);
  color: #c5cedb;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.df-wishlist-toggle:hover,
.df-wishlist-toggle.is-active {
  border-color: rgba(240, 105, 213, .72);
  background: rgba(240, 105, 213, .14);
  color: #ff8de6;
}
.df-wishlist-toggle.is-loading { opacity: .62; cursor: progress; }
.df-wishlist-toggle--loop {
  position: absolute;
  z-index: 8;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 11px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
}
.df-wishlist-toggle--loop .df-icon { width: 20px; height: 20px; }
.df-wishlist-toggle--single {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.df-wishlist-page { padding-top: 64px; }
.df-wishlist-products { width: 100%; }
.df-wishlist-page .df-empty-state { min-height: 360px; }
.df-wishlist-page .df-empty-state > .df-icon { width: 42px; height: 42px; color: var(--df-pink); }

/* Always-visible shop tools */
.df-shop-tools {
  clear: both;
  width: 100%;
  margin: 22px 0 34px;
  padding: 22px;
  border: 1px solid var(--df-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(67, 240, 208, .055), rgba(255, 255, 255, .018));
}
.df-shop-tools__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.df-shop-tools__heading h2 {
  margin: 5px 0 0;
  color: #fff;
  font: 800 34px/1 var(--df-display);
  text-transform: uppercase;
}
.df-shop-tools .df-shop-filter__summary {
  grid-column: auto;
  justify-content: flex-end;
  padding: 0;
}
.df-shop-tools .df-shop-filter {
  grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(135px, .8fr)) 100px 100px minmax(150px, .9fr) auto auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.df-shop-tools .df-field { min-width: 0; }
.df-shop-tools .df-field select,
.df-shop-tools .df-field input { min-width: 0; }
.df-shop-tools .df-field--sort { min-width: 150px; }
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count { display: none !important; }

/* My Account: prevent pseudo-grid cells, floats and reveal effects from moving
   the navigation away from its content. */
.woocommerce-account .df-account-shell { overflow: visible; }
.woocommerce-account .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  position: static !important;
  grid-column: 1;
  grid-row: 1;
  padding: 14px !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2;
  grid-row: 1;
  padding: 30px !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul,
.woocommerce-account .woocommerce-MyAccount-navigation li,
.woocommerce-account .woocommerce-MyAccount-navigation a {
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li + li { margin-top: 5px; }
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border: 1px solid transparent;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  border-color: rgba(67, 240, 208, .18);
}
.woocommerce-account .woocommerce-MyAccount-content > p:first-child { margin-top: 0; }
.woocommerce-account .woocommerce-MyAccount-content a:not(.button) { color: var(--df-cyan); }
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
  float: none;
  width: auto;
  padding: 20px;
  border: 1px solid var(--df-line);
  border-radius: 14px;
  background: #0d1219;
}

/* Rich About and Contact pages */
.df-section--soft { background: rgba(255, 255, 255, .012); border-block: 1px solid var(--df-line); }
.df-section--cta { padding-top: 20px; }
.df-about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: center;
  gap: 60px;
}
.df-about-emblem {
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(67, 240, 208, .24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 240, 208, .16), transparent 55%);
  box-shadow: inset 0 0 80px rgba(67, 240, 208, .06);
}
.df-about-emblem span { font: 800 120px/.8 var(--df-display); color: #fff; }
.df-about-emblem small { position: absolute; margin-top: 145px; color: var(--df-cyan); letter-spacing: .18em; }
.df-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.df-about-stats article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--df-line);
  border-radius: 18px;
  background: #111720;
}
.df-about-stats strong { display: block; color: var(--df-cyan); font: 800 58px/.9 var(--df-display); }
.df-about-stats span { display: block; margin-top: 13px; color: #fff; font-weight: 800; text-transform: uppercase; }
.df-about-stats p { margin-bottom: 0; color: #8e98a8; }
.df-about-values {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}
.df-about-values h2 { margin: 10px 0 18px; font-size: clamp(44px, 5vw, 68px); }
.df-about-values > div:first-child p { color: #929cad; }
.df-value-list { display: grid; gap: 12px; }
.df-value-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--df-line);
  border-radius: 15px;
  background: #111720;
}
.df-value-list .df-icon { color: var(--df-cyan); }
.df-value-list h3 { margin: 0 0 5px; font: 700 25px/1 var(--df-display); text-transform: uppercase; }
.df-value-list p { margin: 0; color: #8e98a8; }

.df-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}
.df-contact-sidebar { display: grid; gap: 12px; }
.df-contact-sidebar > article,
.df-contact-email,
.df-contact-form-card {
  border: 1px solid var(--df-line);
  border-radius: 18px;
  background: #111720;
}
.df-contact-sidebar > article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 22px;
}
.df-contact-sidebar .df-icon { color: var(--df-cyan); }
.df-contact-sidebar article span,
.df-contact-email span { color: var(--df-cyan); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.df-contact-sidebar h2 { margin: 5px 0 8px; font: 700 26px/1.05 var(--df-display); text-transform: uppercase; }
.df-contact-sidebar p { margin: 0; color: #8e98a8; font-size: 13px; }
.df-contact-email { padding: 22px; }
.df-contact-email a { display: block; margin-top: 7px; color: #fff; font-weight: 800; overflow-wrap: anywhere; }
.df-contact-form-card { padding: 30px; }
.df-contact-form-card h2 { margin: 6px 0 24px; font: 800 44px/1 var(--df-display); text-transform: uppercase; }
.df-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.df-contact-form label { display: grid; gap: 7px; }
.df-contact-form label > span { color: #bac3cf; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.df-contact-form input,
.df-contact-form select,
.df-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--df-line);
  border-radius: 10px;
  outline: 0;
  background: #0d1219;
  color: #fff;
}
.df-contact-form input:focus,
.df-contact-form select:focus,
.df-contact-form textarea:focus { border-color: rgba(67, 240, 208, .55); }
.df-contact-form select option { color: #111; }
.df-contact-form__message { grid-column: 1 / -1; }
.df-contact-form textarea { resize: vertical; }
.df-contact-form .df-button { justify-self: start; }
.df-contact-honeypot { position: absolute !important; left: -9999px !important; }

@media (max-width: 1380px) {
  .df-shop-tools .df-shop-filter {
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(135px, .8fr)) 100px 100px minmax(150px, .9fr);
  }
  .df-shop-tools .df-shop-filter .df-button { width: 100%; }
}

@media (max-width: 1080px) {
  .df-shop-tools .df-shop-filter { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .df-shop-tools .df-field--search { grid-column: 1 / -1; }
  .df-about-hero-grid,
  .df-about-values,
  .df-contact-layout { grid-template-columns: 1fr; }
  .df-about-emblem { width: 280px; }
}

@media (max-width: 900px) {
  .woocommerce-account .woocommerce { grid-template-columns: 1fr !important; }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content { grid-column: 1; }
  .woocommerce-account .woocommerce-MyAccount-navigation { grid-row: 1; }
  .woocommerce-account .woocommerce-MyAccount-content { grid-row: 2; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li + li { margin-top: 0; }
  .df-about-stats { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .df-shop-tools { padding: 18px; }
  .df-shop-tools__heading { align-items: flex-start; flex-direction: column; }
  .df-shop-tools .df-shop-filter { grid-template-columns: 1fr; }
  .df-shop-tools .df-field--search { grid-column: auto; }
  .df-shop-tools .df-shop-filter__summary { justify-content: flex-start; flex-wrap: wrap; }
  .woocommerce ul.products li.product a img { height: 210px !important; min-height: 210px; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses { grid-template-columns: 1fr; }
  .df-contact-form { grid-template-columns: 1fr; }
  .df-contact-form__message { grid-column: auto; }
}

@media (max-width: 560px) {
  .woocommerce-account .woocommerce-MyAccount-navigation ul { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce-MyAccount-content { padding: 20px !important; }
  .df-about-emblem { width: 220px; }
  .df-about-emblem span { font-size: 90px; }
  .df-contact-form-card { padding: 22px; }
}

/* Logged-out account forms should remain full-width and must not inherit the
   two-column navigation layout used for signed-in customers. */
body:not(.logged-in).woocommerce-account .woocommerce {
  display: block !important;
}

/* ========================================================================
   DropForge 1.2.5 — resilient catalogue, site artwork and consent centre
   ===================================================================== */

/* The product HTML is present even when a cache/optimisation layer leaves the
   WooCommerce loop with stale hidden or reveal styles. These rules make the
   catalogue and related products authoritative and visible. */
body.woocommerce-shop .woocommerce ul.products,
body.post-type-archive-product .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_tag .woocommerce ul.products,
body.single-product .woocommerce .related ul.products,
body.single-product .woocommerce .upsells ul.products,
.woocommerce ul.products.df-products-ready {
  position: relative !important;
  inset: auto !important;
  z-index: 1;
  display: grid !important;
  width: 100% !important;
  height: auto !important;
  min-height: 1px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clear: both !important;
  float: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  clip: auto !important;
  clip-path: none !important;
  list-style: none !important;
}
body.woocommerce-shop .woocommerce ul.products li.product,
body.post-type-archive-product .woocommerce ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.tax-product_tag .woocommerce ul.products li.product,
body.single-product .woocommerce .related ul.products li.product,
body.single-product .woocommerce .upsells ul.products li.product,
.woocommerce ul.products.df-products-ready li.product {
  position: relative !important;
  inset: auto !important;
  display: flex !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 460px !important;
  max-height: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  float: none !important;
  clear: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  clip: auto !important;
  clip-path: none !important;
}
body.woocommerce-shop .woocommerce ul.products li.product:hover,
body.post-type-archive-product .woocommerce ul.products li.product:hover,
body.single-product .woocommerce .related ul.products li.product:hover,
body.single-product .woocommerce .upsells ul.products li.product:hover {
  transform: translateY(-5px) !important;
}
.woocommerce ul.products li.product .screen-reader-text {
  position: absolute !important;
}

/* Filters wrap instead of overflowing outside the panel. Action buttons are
   always visible, regardless of how many optional product attributes exist. */
.df-shop-tools .df-shop-filter {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.df-shop-tools .df-field {
  flex: 1 1 165px;
  min-height: 52px;
}
.df-shop-tools .df-field--search { flex: 2 1 290px; }
.df-shop-tools .df-field--price { flex: 0 1 112px; }
.df-shop-tools .df-field--sort { flex: 1 1 185px; }
.df-shop-tools .df-shop-filter > .df-button {
  flex: 0 1 auto;
  min-height: 52px;
  white-space: nowrap;
}
.df-shop-tools .df-field select,
.df-shop-tools .df-field input { min-height: 50px; }

/* Randomised media-library artwork. */
.df-visual-deck {
  position: relative;
  padding: 26px 0 10px;
  border-top: 1px solid var(--df-line);
  background: #090d13;
}
.df-visual-deck__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr 1.1fr;
  grid-auto-rows: 230px;
  gap: 12px;
}
.df-visual-deck__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--df-line);
  border-radius: 16px;
  background: #111720;
}
.df-visual-deck__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 8, 12, .88));
}
.df-visual-deck__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
  transition: transform .35s ease, filter .35s ease;
}
.df-visual-deck__item:hover img { transform: scale(1.035); filter: saturate(1.05) contrast(1.08); }
.df-visual-deck__item figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.df-visual-deck__item figcaption span { color: var(--df-cyan); }

.df-about-media {
  position: relative;
  justify-self: center;
  width: min(500px, 100%);
  min-height: 440px;
}
.df-about-media::before {
  content: "";
  position: absolute;
  inset: 24px 40px 30px 10px;
  border: 1px solid rgba(67,240,208,.26);
  border-radius: 22px;
  background: radial-gradient(circle, rgba(67,240,208,.14), transparent 60%);
}
.df-about-media__image {
  position: absolute;
  width: 72%;
  height: 78%;
  object-fit: cover;
  border: 1px solid var(--df-line-strong);
  border-radius: 18px;
  background: #10151d;
  box-shadow: var(--df-shadow);
}
.df-about-media__image--1 { top: 0; right: 0; }
.df-about-media__image--2 { bottom: 0; left: 0; width: 52%; height: 48%; }
.df-about-media > span {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 24px;
  padding: 8px 11px;
  border: 1px solid rgba(67,240,208,.32);
  border-radius: 9px;
  background: rgba(8,12,17,.88);
  color: var(--df-cyan);
  font: 800 14px/1 var(--df-display);
  letter-spacing: .12em;
}
.df-contact-visual {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--df-line);
  border-radius: 18px;
  background: #111720;
}
.df-contact-visual img { width: 100%; height: 220px; object-fit: cover; }
.df-contact-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 48%,rgba(7,10,14,.9)); pointer-events:none; }
.df-contact-visual figcaption { position:absolute; z-index:2; left:18px; bottom:15px; color:#fff; font:800 19px/1 var(--df-display); text-transform:uppercase; }

/* Cookie consent centre. It closes into a small bottom-centre tab instead of
   taking space in the footer. */
.df-cookie-tab {
  position: fixed;
  z-index: 2990;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(67,240,208,.28);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  background: rgba(13,17,24,.96);
  color: #bac5d2;
  box-shadow: 0 -10px 32px rgba(0,0,0,.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.df-cookie-tab:hover { color: var(--df-cyan); border-color: rgba(67,240,208,.55); }
.df-cookie-tab .df-icon { width: 16px; height: 16px; }
.df-cookie-tab[hidden] { display: none !important; }

.df-cookie {
  position: fixed;
  z-index: 4000;
  left: 50%;
  bottom: 18px;
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  display: block;
  overflow: auto;
  transform: translateX(-50%);
  padding: 25px;
  border: 1px solid rgba(67,240,208,.3);
  border-radius: 20px;
  background: rgba(12,16,23,.985);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0,0,0,.68);
}
.df-cookie[hidden] { display: none !important; }
.df-cookie__header { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.df-cookie__header h2 { margin:6px 0 0; color:#fff; font:800 38px/.95 var(--df-display); text-transform:uppercase; }
.df-cookie__close { flex:none; width:42px; height:42px; display:grid; place-items:center; padding:0; border:1px solid var(--df-line); border-radius:11px; background:#111720; color:#9ca8b8; }
.df-cookie__close:hover { color:#fff; border-color:rgba(67,240,208,.4); }
.df-cookie__intro { margin:18px 0; color:#929dad; font-size:13px; }
.df-cookie__categories { display:grid; gap:9px; }
.df-cookie-choice {
  min-height: 74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 15px;
  border:1px solid var(--df-line);
  border-radius:13px;
  background:#10161f;
  cursor:pointer;
}
.df-cookie-choice.is-required { cursor:default; background:rgba(67,240,208,.045); }
.df-cookie-choice__copy { display:grid; gap:3px; }
.df-cookie-choice__copy strong { color:#fff; font-size:13px; }
.df-cookie-choice__copy small { color:#7f8a9b; font-size:11px; line-height:1.45; }
.df-cookie-switch { position:relative; flex:none; width:48px; height:27px; }
.df-cookie-switch input { position:absolute; opacity:0; pointer-events:none; }
.df-cookie-switch i { position:absolute; inset:0; border:1px solid var(--df-line-strong); border-radius:99px; background:#202735; transition:.18s ease; }
.df-cookie-switch i::after { content:""; position:absolute; top:3px; left:3px; width:19px; height:19px; border-radius:50%; background:#8c96a6; transition:.18s ease; }
.df-cookie-switch input:checked + i { border-color:rgba(67,240,208,.5); background:rgba(67,240,208,.22); }
.df-cookie-switch input:checked + i::after { transform:translateX(21px); background:var(--df-cyan); }
.df-cookie-switch input:disabled + i { opacity:.75; }
.df-cookie__links { display:flex; gap:16px; margin:16px 0 0; }
.df-cookie__links a { color:#9aa7b8; font-size:11px; text-decoration:underline; text-underline-offset:3px; }
.df-cookie__links a:hover { color:var(--df-cyan); }
.df-cookie__actions { display:flex; justify-content:flex-end; flex-wrap:wrap; gap:9px; margin-top:20px; }
.df-cookie__actions .df-button { min-height:46px; }

@media (max-width: 1080px) {
  .df-visual-deck__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  body.woocommerce-shop .woocommerce ul.products li.product,
  body.post-type-archive-product .woocommerce ul.products li.product,
  .woocommerce ul.products.df-products-ready li.product { min-height: 410px !important; }
  .df-shop-tools .df-field,
  .df-shop-tools .df-field--search,
  .df-shop-tools .df-field--price,
  .df-shop-tools .df-field--sort,
  .df-shop-tools .df-shop-filter > .df-button { flex: 1 1 100%; }
  .df-visual-deck__grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .df-about-media { min-height: 360px; }
  .df-cookie { bottom:10px; width:calc(100% - 20px); max-height:calc(100vh - 20px); padding:19px; border-radius:16px; }
  .df-cookie__header h2 { font-size:31px; }
  .df-cookie-choice { align-items:flex-start; }
  .df-cookie__actions { display:grid; grid-template-columns:1fr; }
  .df-cookie__actions .df-button { width:100%; }
}
