@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.page-404 {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.page-corso {
  background: #06040e;
  color: #f0eeff;
}

body.page-order {
  background: #06040e;
  color: #f0eeff;
  cursor: auto;
  min-height: 100vh;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes strike {
  to {
    transform: scaleX(1);
  }
}
@keyframes scrollln {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes annscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes slideRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes glitch1 {
  0%, 90%, 100% {
    clip-path: none;
    transform: none;
  }
  92% {
    clip-path: inset(30% 0 40% 0);
    transform: translateX(-4px);
  }
  94% {
    clip-path: inset(60% 0 10% 0);
    transform: translateX(4px);
  }
  96% {
    clip-path: inset(10% 0 70% 0);
    transform: translateX(-2px);
  }
}
@keyframes glitch2 {
  0%, 88%, 100% {
    clip-path: none;
    transform: none;
    opacity: 1;
  }
  90% {
    clip-path: inset(50% 0 20% 0);
    transform: translateX(6px);
    opacity: 0.7;
  }
  93% {
    clip-path: inset(20% 0 60% 0);
    transform: translateX(-6px);
    opacity: 0.8;
  }
  97% {
    clip-path: inset(70% 0 5% 0);
    transform: translateX(3px);
    opacity: 0.6;
  }
}
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}

.rvl {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s, transform 0.7s;
}
.rvl.on {
  opacity: 1;
  transform: translateX(0);
}

.rvr {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.rvr.on {
  opacity: 1;
  transform: translateX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #c9a84c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: rgb(139, 92, 246);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.2s, height 0.2s, opacity 0.2s;
}

section {
  padding: 120px 0;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a84c;
}
.section-label.purple {
  color: #c4b5fd;
}
.section-label.purple::before {
  background: rgb(139, 92, 246);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: #c9a84c;
}
.section-title.purple em {
  color: #c4b5fd;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8c87a;
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.btn-p:hover::before {
  transform: translateX(0);
}
.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.25);
}
.btn-p span,
.btn-p .btn-arr {
  position: relative;
  z-index: 1;
}
.btn-p .btn-arr {
  font-size: 18px;
  transition: transform 0.2s;
}
.btn-p:hover .btn-arr {
  transform: translateX(4px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8c87a;
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.25);
}
.btn-primary span,
.btn-primary .arr {
  position: relative;
  z-index: 1;
}
.btn-primary .arr {
  font-size: 18px;
  transition: transform 0.2s;
}
.btn-primary:hover .arr {
  transform: translateX(4px);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-o:hover {
  background: #c9a84c;
  color: #0a0a0a;
}

.btn-g {
  font-size: 13px;
  color: #c8c4bc;
  text-decoration: none;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-g:hover {
  color: #f5f0e8;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgb(139, 92, 246);
  color: #f0eeff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 20px 48px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7c3aed;
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.btn-main:hover::before {
  transform: translateX(0);
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.35);
}
.btn-main span,
.btn-main .btn-main-arrow {
  position: relative;
  z-index: 1;
}
.btn-main .btn-main-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}
.btn-main:hover .btn-main-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgb(139, 92, 246);
}

.btn-pkg {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-pkg-p {
  background: #c9a84c;
  color: #0a0a0a;
}
.btn-pkg-p:hover {
  background: #e8c87a;
}
.btn-pkg-o {
  border: 1px solid #c9a84c;
  color: #c9a84c;
}
.btn-pkg-o:hover {
  background: #c9a84c;
  color: #0a0a0a;
}

.btn-ct {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #e9d5ff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ct:hover {
  background: rgba(139, 92, 246, 0.35);
  border-color: rgba(139, 92, 246, 0.8);
}

/* ------------------------------------------------------------- */
/* Import Pages */
/* ------------------------------------------------------------- */
.page-not-found {
  position: relative;
  z-index: 1;
  flex: 1;
}
.page-not-found .bg {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100vh;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 55% 60% at 20% 20%, rgba(181, 39, 26, 0.1) 0%, transparent 65%), radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%), linear-gradient(160deg, #0a0a0a 0%, #0e0905 50%, #0a0a0a 100%);
}
.page-not-found .bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100vh;
  height: 100%;
  inset: 0;
  z-index: 3;
  background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-not-found .ornament-tl,
.page-not-found .ornament-br,
.page-not-found .ornament-bl,
.page-not-found .ornament-tr {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 4;
  opacity: 0.4;
}
.page-not-found .ornament-tl {
  top: 110px;
  left: 20px;
  border-top: 1px solid #c9a84c;
  border-left: 1px solid #c9a84c;
}
.page-not-found .ornament-br {
  bottom: 20px;
  right: 20px;
  border-bottom: 1px solid #c9a84c;
  border-right: 1px solid #c9a84c;
}
.page-not-found .ornament-bl {
  bottom: 20px;
  left: 20px;
  border-bottom: 1px solid #c9a84c;
  border-left: 1px solid #c9a84c;
}
.page-not-found .ornament-tr {
  top: 110px;
  right: 20px;
  border-top: 1px solid #c9a84c;
  border-right: 1px solid #c9a84c;
}
.page-not-found .content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  padding: 120px 0;
}
.page-not-found .content .left {
  position: relative;
}
.page-not-found .content .left .left-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s 0.3s both;
}
.page-not-found .content .left .left-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #c9a84c;
}
.page-not-found .content .left .number-icon {
  position: relative;
  display: inline-block;
}
.page-not-found .content .left .number-icon .four-oh-four {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(140px, 16vw, 220px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.18);
  position: relative;
  user-select: none;
  animation: fadeInLeft 0.9s 0.1s both, glitch1 7s 2s infinite;
}
.page-not-found .content .left .number-icon .four-oh-four-solid {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(140px, 16vw, 220px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #c9a84c 0%, rgba(201, 168, 76, 0.25) 60%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInLeft 0.9s 0.2s both, glitch2 7s 2.1s infinite;
  pointer-events: none;
}
.page-not-found .content .left .red-line {
  width: 80px;
  height: 2px;
  background: #b5271a;
  margin: 28px 0;
  animation: slideRight 0.7s 0.5s both;
  transform-origin: left;
}
.page-not-found .content .left .left-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  color: #c8c4bc;
  animation: fadeInUp 0.7s 0.45s both;
}
.page-not-found .content .left .left-tagline em {
  font-style: italic;
  color: #f5f0e8;
}
.page-not-found .content .right {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: fadeInRight 0.9s 0.2s both;
}
.page-not-found .content .right .right-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888880;
  margin-bottom: 20px;
}
.page-not-found .content .right .right-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.page-not-found .content .right .right-title em {
  font-style: italic;
  color: #c9a84c;
}
.page-not-found .content .right .right-desc {
  font-size: 15px;
  color: #c8c4bc;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 420px;
}
.page-not-found .content .right .right-desc strong {
  color: #f5f0e8;
}
.page-not-found .content .right .links-list {
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 36px;
}
.page-not-found .content .right .links-list .link-item {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  text-decoration: none;
  color: #c8c4bc;
  font-size: 14px;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: color 0.2s, background 0.2s;
}
.page-not-found .content .right .links-list .link-item:last-child {
  border-bottom: none;
}
.page-not-found .content .right .links-list .link-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #c9a84c;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.page-not-found .content .right .links-list .link-item:hover {
  color: #f5f0e8;
  background: rgba(201, 168, 76, 0.04);
}
.page-not-found .content .right .links-list .link-item:hover .link-arrow {
  transform: translateX(4px);
  color: #c9a84c;
}
.page-not-found .content .right .links-list .link-item:hover::before {
  transform: scaleY(1);
}
.page-not-found .content .right .links-list .link-item .link-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: #c9a84c;
}
.page-not-found .content .right .links-list .link-item .link-label {
  flex: 1;
}
.page-not-found .content .right .links-list .link-item .link-arrow {
  font-size: 16px;
  color: #888880;
  transition: transform 0.2s, color 0.2s;
}
.page-not-found .content .right .cta-note {
  margin-top: 14px;
  font-size: 11px;
  color: #888880;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-not-found .content .right .cta-note::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #888880;
}

/* Nav */
.nav-corso {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav-corso.scrolled {
  background: rgba(6, 4, 14, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-corso .nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--violet-light);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-corso .nav-back {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav-corso .nav-back:hover {
  color: #f0eeff;
}
.nav-corso .nav-cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 24px;
  border: 1px solid rgb(139, 92, 246);
  color: #c4b5fd;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-corso .nav-cta:hover {
  background: rgb(139, 92, 246);
  color: #f0eeff;
}

#hero-corso {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 60px 200px;
  overflow: hidden;
}
#hero-corso .hero-fullbg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 30%, rgba(139, 92, 246, 0.18) 0%, transparent 65%), radial-gradient(ellipse 60% 60% at 20% 80%, rgba(76, 29, 149, 0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 80% 60%, rgba(181, 39, 26, 0.07) 0%, transparent 55%), linear-gradient(180deg, #06040e 0%, #0a0718 50%, #06040e 100%);
}
#hero-corso .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}
#hero-corso .hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
#hero-corso .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 8px 20px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease both;
}
#hero-corso .hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(139, 92, 246);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
#hero-corso .hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
#hero-corso .hero-headline-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: #c4b5fd;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s 0.2s ease both;
}
#hero-corso .hero-desc {
  font-size: 18px;
  color: #b8b4d0;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeInUp 0.7s 0.3s ease both;
}
#hero-corso .hero-desc strong {
  color: #f0eeff;
}
#hero-corso .hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}
#hero-corso .hero-price-note {
  font-size: 13px;
  color: #7a7890;
  margin-top: 20px;
  animation: fadeInUp 0.7s 0.5s ease both;
}
#hero-corso .hero-price-note s {
  color: rgba(139, 92, 246, 0.4);
}
#hero-corso .hero-price-note strong {
  color: #c4b5fd;
  font-size: 18px;
}

#curriculum {
  padding: 120px 60px;
  background: #06040e;
}
#curriculum .curriculum-header {
  margin-bottom: 70px;
}
#curriculum .curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 60px;
}
#curriculum .curriculum-card {
  background: #06040e;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
#curriculum .curriculum-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, rgb(139, 92, 246), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
#curriculum .curriculum-card:hover::after {
  transform: scaleX(1);
}
#curriculum .curriculum-card:hover {
  background: #110f1e;
}
#curriculum .curriculum-card .curriculum-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #c4b5fd;
  margin-bottom: 20px;
}
#curriculum .curriculum-card .curriculum-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
#curriculum .curriculum-card .curriculum-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
#curriculum .curriculum-card .curriculum-desc {
  font-size: 13px;
  color: #7a7890;
  line-height: 1.65;
}
#curriculum .curriculum-card .curriculum-desc li {
  list-style: none;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
#curriculum .curriculum-card .curriculum-desc li::before {
  content: "·";
  color: rgb(139, 92, 246);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
#curriculum .curriculum-bonus {
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
#curriculum .curriculum-bonus .curriculum-bonus-icon {
  font-size: 36px;
  flex-shrink: 0;
}
#curriculum .curriculum-bonus .curriculum-bonus-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 6px;
}
#curriculum .curriculum-bonus .curriculum-bonus-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
#curriculum .curriculum-bonus .curriculum-bonus-desc {
  font-size: 14px;
  color: #b8b4d0;
  line-height: 1.6;
}

#why-me {
  padding: 120px 60px;
  background: #06040e;
}
#why-me .why-me-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
#why-me .why-me-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
#why-me .why-stat {
  background: #06040e;
  padding: 36px 28px;
  transition: background 0.3s;
}
#why-me .why-stat:hover {
  background: #110f1e;
}
#why-me .why-stat .why-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  color: #c4b5fd;
  line-height: 1;
  letter-spacing: -0.02em;
}
#why-me .why-stat .why-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a7890;
  margin-top: 6px;
}
#why-me .why-me-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
#why-me .why-me-row {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: #b8b4d0;
  transition: background 0.2s;
}
#why-me .why-me-row:last-child {
  border-bottom: none;
}
#why-me .why-me-row:hover {
  background: rgba(139, 92, 246, 0.12);
}
#why-me .why-me-row::before {
  content: "✦";
  color: #c4b5fd;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
#why-me .why-me-row strong {
  color: #f0eeff;
}
#why-me .why-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
#why-me .why-soc-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: #110f1e;
  text-decoration: none;
  color: #b8b4d0;
  font-size: 12px;
  transition: border-color 0.2s, color 0.2s;
}
#why-me .why-soc-pill:hover {
  border-color: rgb(139, 92, 246);
  color: #f0eeff;
}
#why-me .why-soc-count {
  color: #c4b5fd;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
}

#buy-cta {
  padding: 140px 60px;
  background: #06040e;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#buy-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
#buy-cta .buy-cta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
#buy-cta .buy-cta-label::before, #buy-cta .buy-cta-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgb(139, 92, 246);
}
#buy-cta .buy-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
#buy-cta .buy-title em {
  font-style: italic;
  color: #c4b5fd;
}
#buy-cta .buy-desc {
  font-size: 17px;
  color: #b8b4d0;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
#buy-cta .buy-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
#buy-cta .buy-old-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #7a7890;
  text-decoration: line-through;
  font-weight: 300;
}
#buy-cta .buy-new-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  color: #f0eeff;
  font-weight: 300;
  line-height: 1;
}
#buy-cta .buy-new-currency {
  font-size: 28px;
  color: #c4b5fd;
}
#buy-cta .buy-new-period {
  font-size: 14px;
  color: #7a7890;
}
#buy-cta .buy-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
#buy-cta .buy-guarantee {
  font-size: 12px;
  color: #b8b4d0;
  display: flex;
  align-items: center;
  gap: 6px;
}
#buy-cta .buy-guarantee::before {
  content: "✓";
  color: #c4b5fd;
  font-size: 14px;
}
#buy-cta .buy-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.page-newsletter {
  background: #0a0a0a;
  min-height: 100vh;
}
.page-newsletter .nl-hero {
  position: relative;
  padding: calc(40px + 100px) 0 120px;
  overflow: hidden;
}
.page-newsletter .nl-hero .nl-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 75% 40%, rgba(181, 39, 26, 0.1) 0%, transparent 65%), radial-gradient(ellipse 50% 60% at 15% 70%, rgba(201, 168, 76, 0.07) 0%, transparent 60%), linear-gradient(160deg, #0a0a0a, #0f0a08, #0a0a0a);
}
.page-newsletter .nl-hero .nl-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}
.page-newsletter .nl-hero .nl-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1000px) {
  .page-newsletter .nl-hero .nl-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 8px 18px;
  margin-bottom: 28px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-badge .nl-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a84c;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-title em {
  font-style: italic;
  color: #c9a84c;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-sub {
  font-size: 17px;
  color: #c8c4bc;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-list li {
  font-size: 15px;
  color: #c8c4bc;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-list li::before {
  content: "✦";
  color: #c9a84c;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: #111;
  padding: 20px 0;
  max-width: 380px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-social-proof .nl-sp-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-social-proof .nl-sp-item .nl-sp-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: #c9a84c;
  line-height: 1;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-social-proof .nl-sp-item .nl-sp-lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888880;
  margin-top: 4px;
}
.page-newsletter .nl-hero .nl-hero-inner .nl-hero-copy .nl-hero-social-proof .nl-sp-sep {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s;
  overflow: hidden;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-topbar {
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #b5271a, #c9a84c);
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: #888880;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-close:hover {
  border-color: #c9a84c;
  color: #f5f0e8;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body {
  padding: 48px 48px 40px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-title em {
  font-style: italic;
  color: #c9a84c;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-description {
  font-size: 14px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-guide {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 2px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-name {
  font-size: 14px;
  color: #f5f0e8;
  font-weight: 500;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-sub-label {
  font-size: 12px;
  color: #888880;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-input-name {
  background: #0a0a0a;
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 24px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-input-name:focus {
  border-color: #c9a84c;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-input-name::placeholder {
  color: rgba(136, 136, 128, 0.5);
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body input {
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  width: 100%;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body input:focus {
  border-color: #c9a84c;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body input::placeholder {
  color: rgba(136, 136, 128, 0.4);
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body input.newsletter-name-input {
  width: 100%;
  margin-bottom: 20px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-section-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-section-fields .newsletter-section-btn {
  background: #c9a84c;
  color: #0a0a0a;
  border: none;
  padding: 14px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-section-fields .newsletter-section-btn:hover {
  background: #e8c87a;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-privacy {
  font-size: 12px;
  color: #888880;
  margin-top: 10px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-form-guarantees {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-box .newsletter-body .newsletter-form-guarantees .newsletter-form-guarantee {
  font-size: 11px;
  color: #c8c4bc;
  letter-spacing: 0.04em;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-form-below {
  margin-top: 16px;
  font-size: 13px;
  color: #888880;
  text-align: center;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-form-below a {
  color: #c9a84c;
  text-decoration: none;
}
.page-newsletter .nl-hero .nl-hero-inner .newsletter-hero-form-col .newsletter-form-below a:hover {
  color: #e8c87a;
}
.page-newsletter .nl-preview {
  background: #111;
  padding: 120px 0;
}
.page-newsletter .nl-preview .nl-preview-header {
  margin-bottom: 60px;
}
.page-newsletter .nl-preview .nl-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
@media (max-width: 900px) {
  .page-newsletter .nl-preview .nl-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .page-newsletter .nl-preview .nl-preview-grid {
    grid-template-columns: 1fr;
  }
}
.page-newsletter .nl-preview .nl-preview-grid .nl-preview-card {
  background: #111;
  padding: 40px 32px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.page-newsletter .nl-preview .nl-preview-grid .nl-preview-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.page-newsletter .nl-preview .nl-preview-grid .nl-preview-card:hover {
  background: #161616;
}
.page-newsletter .nl-preview .nl-preview-grid .nl-preview-card:hover::after {
  transform: scaleX(1);
}
.page-newsletter .nl-preview .nl-preview-grid .nl-preview-card .nl-preview-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #c9a84c;
  margin-bottom: 20px;
}
.page-newsletter .nl-preview .nl-preview-grid .nl-preview-card .nl-preview-ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.page-newsletter .nl-preview .nl-preview-grid .nl-preview-card .nl-preview-dsc {
  font-size: 13px;
  color: #888880;
  line-height: 1.65;
}
.page-newsletter .nl-about {
  padding: 120px 0;
  background: #0a0a0a;
  max-width: 750px;
  margin: 0 auto;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text {
  margin-bottom: 24px;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-desc {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.8;
  margin-bottom: 32px;
  margin-top: 20px;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-desc strong {
  color: #f5f0e8;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-hl-list {
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 0;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-hl-list .nl-about-hl-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 14px;
  color: #c8c4bc;
  transition: background 0.2s;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-hl-list .nl-about-hl-row:last-child {
  border-bottom: none;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-hl-list .nl-about-hl-row:hover {
  background: rgba(201, 168, 76, 0.04);
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-hl-list .nl-about-hl-row strong {
  color: #f5f0e8;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-text .nl-about-hl-list .nl-about-hl-row .nl-about-hl-icon {
  color: #c9a84c;
  font-size: 14px;
  flex-shrink: 0;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-form-wrap {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 32px;
  text-align: center;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-form-wrap .nl-about-form-label {
  font-size: 13px;
  color: #c8c4bc;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.page-newsletter .nl-about .nl-about-inner .nl-about-form-wrap .nl-about-fields a {
  margin-bottom: 10px;
}
.page-newsletter .nl-final-cta {
  background: #111;
  padding: 120px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}
.page-newsletter .nl-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(181, 39, 26, 0.07), transparent 70%);
  pointer-events: none;
}
.page-newsletter .nl-final-cta .nl-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.page-newsletter .nl-final-cta .nl-final-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-newsletter .nl-final-cta .nl-final-title em {
  font-style: italic;
  color: #c9a84c;
}
.page-newsletter .nl-final-cta .nl-final-desc {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.75;
  margin-bottom: 36px;
}
.page-newsletter .nl-final-cta .nl-final-note {
  margin-top: 16px;
  font-size: 12px;
  color: #888880;
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .page-newsletter .nl-hero {
    padding: calc(40px + 80px) 0 80px;
  }
  .page-newsletter .nl-preview {
    padding: 80px 0;
  }
  .page-newsletter .nl-about {
    padding: 80px 0;
  }
  .page-newsletter .nl-final-cta {
    padding: 80px 0;
  }
  .page-newsletter .nl-hero-social-proof {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .page-newsletter .nl-hero-title {
    font-size: 42px;
  }
  .page-newsletter .nl-form-card .nl-form-card-body {
    padding: 28px 24px;
  }
  .page-newsletter .nl-form-guarantees {
    flex-direction: column;
    gap: 8px;
  }
}

.page {
  padding: 120px 0;
}
.page .container h1,
.page .container h2,
.page .container strong {
  color: #c9a84c;
}
.page .container p {
  margin-bottom: 15px;
  margin-top: 15px;
  color: #c8c4bc;
}
.page .container a {
  color: #c9a84c;
  text-decoration: none;
}
.page .container details a, .page .container details p, .page .container details div {
  color: #0a0a0a;
}

.page-index {
  background: #0a0a0a;
  min-height: 100vh;
}
.page-index section.index-content {
  padding: 90px 0;
}
.page-index .index-hero {
  position: relative;
  padding: calc(40px + 100px) 0 80px;
  overflow: hidden;
}
.page-index .index-hero .index-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(181, 39, 26, 0.1) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%), linear-gradient(160deg, #0a0a0a, #0f0a08, #0a0a0a);
}
.page-index .index-hero .index-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 20%, transparent 80%);
}
.page-index .index-hero .index-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.page-index .index-hero .index-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  margin-top: 16px;
}
.page-index .index-hero .index-hero-title em {
  font-style: italic;
  color: #c9a84c;
}
.page-index .index-hero .index-hero-sub {
  font-size: 17px;
  color: #c8c4bc;
  line-height: 1.7;
  max-width: 480px;
}
.page-index .index-posts {
  padding: 80px 0 120px;
}
.page-index .index-posts .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1000px) {
  .page-index .index-posts .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .page-index .index-posts .posts-grid {
    grid-template-columns: 1fr;
  }
}
.page-index .post-card {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.page-index .post-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
}
.page-index .post-card-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.page-index .post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.page-index .post-card-thumb:hover img {
  transform: scale(1.04);
}
.page-index .post-card-thumb .post-card-thumb-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.6) 100%);
}
.page-index .post-card-thumb--no-img {
  background: linear-gradient(135deg, #161616, #111);
}
.page-index .post-card-thumb .post-card-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.page-index .post-card-thumb .post-card-thumb-placeholder span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.3);
  text-align: center;
  line-height: 1.3;
}
.page-index .post-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.page-index .post-card-cat {
  margin-bottom: 12px;
}
.page-index .post-card-cat a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  text-decoration: none;
  transition: color 0.2s;
}
.page-index .post-card-cat a:hover {
  color: #e8c87a;
}
.page-index .post-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
  flex: 1;
}
.page-index .post-card-title a {
  color: #f5f0e8;
  text-decoration: none;
  transition: color 0.2s;
}
.page-index .post-card-title a:hover {
  color: #c9a84c;
}
.page-index .post-card-excerpt {
  font-size: 14px;
  color: #888880;
  line-height: 1.65;
  margin-bottom: 20px;
}
.page-index .post-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #888880;
}
.page-index .post-card-meta .post-card-read {
  padding: 3px 10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #c8c4bc;
}
.page-index .post-card-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.page-index .post-card-link:hover {
  gap: 10px;
  color: #e8c87a;
}
.page-index .post-card-link span {
  font-size: 16px;
}
.page-index .index-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.page-index .index-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-index .index-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 13px;
  color: #c8c4bc;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.page-index .index-pagination .page-numbers:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}
.page-index .index-pagination .page-numbers.current {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0a0a0a;
  font-weight: 600;
}
.page-index .index-pagination .page-numbers.prev, .page-index .index-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.page-index .index-pagination .page-numbers.dots {
  border-color: transparent;
  pointer-events: none;
}
.page-index .index-empty {
  padding: 80px 0;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.page-index .index-empty .index-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  margin: 12px 0 16px;
}
.page-index .index-empty .index-empty-title em {
  font-style: italic;
  color: #c9a84c;
}
.page-index .index-empty .index-empty-desc {
  font-size: 15px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-bottom: 36px;
}
.page-index .index-nl-cta {
  background: #111;
  padding: 100px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}
.page-index .index-nl-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 168, 76, 0.04), transparent 65%);
  pointer-events: none;
}
.page-index .index-nl-cta .index-nl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .page-index .index-nl-cta .index-nl-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.page-index .index-nl-cta .index-nl-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 16px;
}
.page-index .index-nl-cta .index-nl-title em {
  font-style: italic;
  color: #c9a84c;
}
.page-index .index-nl-cta .index-nl-desc {
  font-size: 15px;
  color: #c8c4bc;
  line-height: 1.7;
}
.page-index .index-nl-cta .index-nl-form-wrap {
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 36px;
}
.page-index .index-nl-cta .index-nl-guide {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.05);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.page-index .index-nl-cta .index-nl-guide .index-nl-guide-ico {
  font-size: 28px;
  flex-shrink: 0;
}
.page-index .index-nl-cta .index-nl-guide .index-nl-guide-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
}
.page-index .index-nl-cta .index-nl-guide .index-nl-guide-name {
  font-size: 13px;
  color: #f5f0e8;
  font-weight: 500;
}
.page-index .index-nl-cta .index-nl-fields {
  display: flex;
  margin-bottom: 10px;
}
.page-index .index-nl-cta .index-nl-input {
  flex: 1;
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.page-index .index-nl-cta .index-nl-input:focus {
  border-color: #c9a84c;
}
.page-index .index-nl-cta .index-nl-input::placeholder {
  color: rgba(136, 136, 128, 0.4);
}
.page-index .index-nl-cta .index-nl-btn {
  background: #c9a84c;
  color: #0a0a0a;
  border: none;
  padding: 13px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.page-index .index-nl-cta .index-nl-btn:hover {
  background: #e8c87a;
}
.page-index .index-nl-cta .index-nl-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
.page-index .index-nl-cta .index-nl-priv {
  font-size: 11px;
  color: #888880;
  line-height: 1.5;
}

#hero {
  position: relative;
  min-height: 100vh;
  align-content: center;
  overflow: hidden;
  padding-top: calc(40px + 80px);
  padding-left: calc((100vw - 1140px) * 0.5);
  padding-right: 90px;
}
#hero .h-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(181, 39, 26, 0.12) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 20% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 60%), linear-gradient(160deg, #0a0a0a, #0f0a08, #0a0505);
}
#hero .h-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 30%, transparent 80%);
}
#hero .h-vis {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  z-index: 1;
  overflow: hidden;
}
#hero .h-vis .h-vis-in {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0a0a, transparent 40%), linear-gradient(to top, #0a0a0a, transparent 30%), linear-gradient(135deg, #1a0f08, #0d0808, #110a0a);
}
#hero .h-vis .h-vis-in .h-sil {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 100% at 60% 70%, rgba(181, 39, 26, 0.15) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 50% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}
#hero .h-vis .h-vis-in .h-sil img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 95vh;
}
#hero .h-roman {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  z-index: 1;
  animation: fadeIn 1.5s 0.5s both;
}
#hero .h-content {
  padding-left: 15px;
  position: relative;
  z-index: 2;
  max-width: 700px;
}
#hero .h-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 8px 18px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s both;
}
#hero .h-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a84c;
  animation: pulse 2s infinite;
}
#hero .h-hl {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.15s both;
}
#hero .h-hl em {
  font-style: italic;
  color: #c9a84c;
}
#hero .h-hl .strike {
  position: relative;
  color: #888880;
}
#hero .h-hl .strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #b5271a;
  transform: scaleX(0);
  transform-origin: left;
  animation: strike 0.5s 1.2s forwards;
}
#hero .h-sub {
  font-size: 17px;
  color: #c8c4bc;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.3s both;
}
#hero .h-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeInUp 0.8s 0.45s both;
}
#hero .scroll-ind {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1s both;
}
#hero .scroll-ind .scroll-txt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888880;
  writing-mode: vertical-lr;
}
#hero .scroll-ind .scroll-ln {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: scrollln 2s ease-in-out infinite;
}

#benefits {
  background: #0a0a0a;
}
#benefits .ben-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
#benefits .ben-desc {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.75;
  max-width: 440px;
}
#benefits .ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
#benefits .ben-card {
  background: #0a0a0a;
  padding: 44px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
#benefits .ben-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
#benefits .ben-card:hover::after {
  transform: scaleX(1);
}
#benefits .ben-card:hover {
  background: #161616;
}
#benefits .ben-card .ben-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #c9a84c;
  margin-bottom: 24px;
}
#benefits .ben-card .ben-ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}
#benefits .ben-card .ben-dsc {
  font-size: 14px;
  color: #888880;
  line-height: 1.65;
}

#process {
  background: #0a0a0a;
}
#process .proc-hd {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
#process .proc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  position: relative;
}
#process .proc-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c, #c9a84c, transparent);
}
#process .step {
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
#process .step:hover .step-circ {
  background: #c9a84c;
  color: #0a0a0a;
}
#process .step-circ {
  width: 72px;
  height: 72px;
  border: 1px solid #c9a84c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #c9a84c;
  background: #0a0a0a;
  transition: background 0.3s, color 0.3s;
}
#process .step-ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}
#process .step-dsc {
  font-size: 14px;
  color: #888880;
  line-height: 1.7;
}

#about {
  background: #111;
}
#about .about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
#about .about-photo-wrap {
  position: relative;
}
#about .about-photo-wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-top: 1px solid #c9a84c;
  border-left: 1px solid #c9a84c;
  z-index: 2;
  pointer-events: none;
}
#about .about-photo-wrap::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  border-bottom: 1px solid #c9a84c;
  border-right: 1px solid #c9a84c;
  z-index: 2;
  pointer-events: none;
}
#about .about-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
}
#about .about-photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1008, #0f0c08, #0d0a0a);
}
#about .about-photo-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 0.7) 100%);
}
#about .about-photo-ov img {
  width: 100%;
  height: auto;
  padding: 5px;
}
#about .about-photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 60%, rgba(181, 39, 26, 0.06) 100%);
  pointer-events: none;
}
#about .about-sil {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 88%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
#about .about-sil-h {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.15);
}
#about .about-sil-b {
  width: 120px;
  height: 260px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px 12px 0 0;
}
#about .about-ph-lbl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.3);
  text-align: center;
  pointer-events: none;
  line-height: 2;
}
#about .about-tv {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: #c9a84c;
  color: #0a0a0a;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  z-index: 3;
  max-width: 180px;
  text-align: center;
}
#about .about-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 8px;
}
#about .about-name em {
  font-style: italic;
  color: #c9a84c;
}
#about .about-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888880;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 6px 16px;
  margin-bottom: 32px;
}
#about .about-bio {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.8;
  margin-bottom: 40px;
}
#about .about-bio strong {
  color: #f5f0e8;
}
#about .about-hl-list {
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 40px;
}
#about .about-hl-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 14px;
  color: #c8c4bc;
  transition: background 0.2s;
}
#about .about-hl-row:last-child {
  border-bottom: none;
}
#about .about-hl-row:hover {
  background: rgba(201, 168, 76, 0.04);
}
#about .about-hl-row strong {
  color: #f5f0e8;
}
#about .about-hl-icon {
  color: #c9a84c;
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.soc-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.soc-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: #161616;
  text-decoration: none;
  color: #c8c4bc;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.soc-pill:hover {
  border-color: #c9a84c;
  color: #f5f0e8;
  background: #0a0a0a;
}

.soc-pill-icon {
  font-size: 18px;
}

.soc-pill-name {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soc-pill-cnt {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #c9a84c;
  font-weight: 600;
  margin-left: 4px;
}

#video-proof {
  background: #0a0a0a;
}
#video-proof .vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
#video-proof .vid-ph {
  aspect-ratio: 9/16;
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  max-height: 380px;
}
#video-proof .vid-ph:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
}
#video-proof .vid-ph .vid-bg {
  position: absolute;
  inset: 0;
}
#video-proof .vid-ph .vid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.9) 100%);
}
#video-proof .vid-ph:nth-child(1) .vid-bg {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(181, 39, 26, 0.06), #0f0a0a);
}
#video-proof .vid-ph:nth-child(2) .vid-bg {
  background: linear-gradient(135deg, rgba(181, 39, 26, 0.1), #0f0f0f, rgba(201, 168, 76, 0.05));
}
#video-proof .vid-ph:nth-child(3) .vid-bg {
  background: linear-gradient(135deg, #0f0a0a, rgba(201, 168, 76, 0.07), rgba(181, 39, 26, 0.08));
}
#video-proof .vid-ph .vid-sil {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  z-index: 1;
}
#video-proof .vid-ph .vid-sil .vid-sil-h {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin: 0 auto 6px;
}
#video-proof .vid-ph .vid-sil .vid-sil-b {
  width: 60px;
  height: 100px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
}
#video-proof .vid-ph .vid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c9a84c;
  transition: background 0.2s, transform 0.2s;
}
#video-proof .vid-ph:hover .vid-play {
  background: rgba(201, 168, 76, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}
#video-proof .vid-ph .vid-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 20px;
}
#video-proof .vid-ph .vid-badge {
  display: inline-block;
  background: rgba(181, 39, 26, 0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  color: #f5f0e8;
  margin-bottom: 8px;
}
#video-proof .vid-ph .vid-name {
  font-size: 14px;
  color: #f5f0e8;
  font-weight: 500;
}
#video-proof .vid-ph .vid-detail {
  font-size: 12px;
  color: #c8c4bc;
}
#video-proof .img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
#video-proof .img-ph {
  aspect-ratio: 4/5;
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
#video-proof .img-ph:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: scale(1.02);
}
#video-proof .img-ph:nth-child(1) {
  background: linear-gradient(160deg, #1a1208, #0f0c06, #0a0808);
}
#video-proof .img-ph:nth-child(2) {
  background: linear-gradient(160deg, #0d0808, #110a0a, #0a0808);
}
#video-proof .img-ph:nth-child(3) {
  background: linear-gradient(160deg, #0a0a08, #0f0f0a, #1a1208);
}
#video-proof .img-ph:nth-child(4) {
  background: linear-gradient(160deg, #0f0808, #0a0a08, #111008);
}
#video-proof .img-ph .img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10, 10, 10, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
#video-proof .img-ph .img-hint {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 55%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.03);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-proof .img-ph .img-hint span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.25);
}
#video-proof .img-ph .img-txt {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  color: #c8c4bc;
  line-height: 1.4;
  margin-bottom: 6px;
}
#video-proof .img-ph .img-txt span {
  color: #c9a84c;
  font-style: normal;
}
#video-proof .img-ph .img-auth {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888880;
}

.proof-bar {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: #161616;
}
.proof-bar .proof-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}
.proof-bar .proof-item:last-child {
  border-right: none;
}
.proof-bar .proof-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #c9a84c;
}
.proof-bar .proof-txt {
  font-size: 13px;
  color: #c8c4bc;
  line-height: 1.4;
}
.proof-bar .proof-txt strong {
  display: block;
  color: #f5f0e8;
}

#packages {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
#packages::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
  pointer-events: none;
}
#packages .pkg-hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
#packages .pkg-hd .s-lbl {
  justify-content: center;
}
#packages .pkg-hd .s-lbl::before {
  display: none;
}
#packages .pkg-desc {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-top: 20px;
}
#packages .pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
#packages .pkg-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 48px 40px;
  position: relative;
  background: #111;
  transition: border-color 0.3s, transform 0.3s;
}
#packages .pkg-card:hover {
  border-color: #c9a84c;
  transform: translateY(-6px);
}
#packages .pkg-card.featured {
  border-color: #c9a84c;
  background: #161616;
}
#packages .pkg-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: #c9a84c;
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
}
#packages .pkg-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 20px;
}
#packages .pkg-price {
  font-family: "Cormorant Garamond", serif;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
#packages .pkg-eur {
  font-size: 24px;
  color: #c9a84c;
  font-weight: 300;
}
#packages .pkg-amt {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: #f5f0e8;
}
#packages .pkg-old {
  font-size: 18px;
  color: #888880;
  text-decoration: line-through;
  margin-bottom: 6px;
}
#packages .pkg-period {
  font-size: 13px;
  color: #888880;
  margin-bottom: 36px;
}
#packages .pkg-feats {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#packages .pkg-feats li {
  font-size: 14px;
  color: #c8c4bc;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
#packages .pkg-feats li::before {
  content: "✦";
  color: #c9a84c;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}
#packages .free-cta {
  max-width: 900px;
  margin: 60px auto 0;
  border: 1px solid rgba(181, 39, 26, 0.3);
  background: rgba(181, 39, 26, 0.06);
  padding: 40px;
  text-align: center;
  position: relative;
}
#packages .free-cta::before {
  content: "— PRIMA DI TUTTO —";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.25em;
  background: transparent;
  padding: 0 20px;
  color: #c9a84c;
  white-space: nowrap;
}
#packages .free-cta-ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
#packages .free-cta-dsc {
  font-size: 15px;
  color: #c8c4bc;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
#packages .course-teaser {
  max-width: 900px;
  margin: 48px auto 0;
  border: 1px solid rgba(100, 60, 200, 0.35);
  background: linear-gradient(135deg, rgba(26, 15, 52, 0.9), rgba(15, 12, 30, 0.95));
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
#packages .course-teaser::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), rgba(196, 181, 253, 0.6), rgba(139, 92, 246, 0.8), transparent);
}
#packages .course-teaser:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-4px);
}
#packages .ct-inner {
  display: grid;
  grid-template-columns: 1fr auto;
}
#packages .ct-content {
  padding: 40px 40px 40px 48px;
}
#packages .ct-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.12);
  padding: 5px 14px;
  margin-bottom: 18px;
}
#packages .ct-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(139, 92, 246);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
#packages .ct-ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #f5f0e8;
}
#packages .ct-ttl em {
  font-style: italic;
  color: #c4b5fd;
}
#packages .ct-dsc {
  font-size: 14px;
  color: rgba(196, 181, 253, 0.7);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 500px;
}
#packages .ct-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
#packages .ct-pill {
  font-size: 11px;
  letter-spacing: 0.08em;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
  padding: 5px 14px;
}
#packages .ct-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
#packages .ct-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #c4b5fd;
  font-weight: 300;
}
#packages .ct-price small {
  font-size: 14px;
  color: rgba(196, 181, 253, 0.5);
  text-decoration: line-through;
  margin-right: 6px;
}
#packages .ct-vis {
  width: 200px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(76, 29, 149, 0.1));
  border-left: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
}
#packages .ct-vis-ico {
  font-size: 48px;
}
#packages .ct-vis-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.5);
  text-align: center;
}

#final-cta {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(181, 39, 26, 0.08), transparent 70%);
  pointer-events: none;
}
#final-cta .cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}
#final-cta .cta-lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
#final-cta .cta-lbl::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a84c;
}
#final-cta .cta-ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
}
#final-cta .cta-ttl em {
  font-style: italic;
  color: #c9a84c;
}
#final-cta .cta-dsc {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.75;
  margin-bottom: 40px;
}
#final-cta .cta-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
#final-cta .cta-note {
  font-size: 12px;
  color: #888880;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
#final-cta .cta-soc-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}
#final-cta .cta-soc-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
#final-cta .cf-wrap {
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 48px 40px;
  position: relative;
}
#final-cta .cf-wrap::before {
  content: "— OPPURE SCRIVIMI —";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.25em;
  background: transparent;
  padding: 0 20px;
  color: #c9a84c;
  white-space: nowrap;
}
#final-cta .cf-ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
#final-cta .cf-sub {
  font-size: 14px;
  color: #888880;
  margin-bottom: 32px;
  line-height: 1.5;
}
#final-cta .form-grp {
  margin-bottom: 20px;
}
#final-cta .form-lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8c4bc;
  margin-bottom: 8px;
}
#final-cta .form-in,
#final-cta .form-sel,
#final-cta .form-ta {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
#final-cta .form-in:focus,
#final-cta .form-sel:focus,
#final-cta .form-ta:focus {
  border-color: #c9a84c;
}
#final-cta .form-in::placeholder,
#final-cta .form-ta::placeholder {
  color: rgba(136, 136, 128, 0.5);
}
#final-cta .form-ta {
  resize: vertical;
  min-height: 100px;
}
#final-cta .form-sel {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23c9a84c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
#final-cta .form-sel option {
  background: #111;
}
#final-cta .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#final-cta .btn-form {
  width: 100%;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
#final-cta .btn-form:hover {
  background: #e8c87a;
  transform: translateY(-1px);
}
#final-cta .form-priv {
  font-size: 11px;
  color: #888880;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.5;
}
#final-cta .form-priv a {
  color: #888880;
  text-decoration: underline;
}

/* ------------------------------------------------------------- */
/* Import Components */
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
/* Header Style */
/* ------------------------------------------------------------- */
/* ── NAV ── */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.top {
  top: 40px;
}
.nav.sc {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav .nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #c9a84c;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav .nav-logo:hover {
  opacity: 0.8;
}
.nav .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav .nav-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8c4bc;
  text-decoration: none;
  transition: color 0.2s;
}
.nav .nav-links a:hover {
  color: #c9a84c;
}
.nav .nav-cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 28px;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav .nav-cta:hover {
  background: #c9a84c;
  color: #0a0a0a;
}
@media (max-width: 900px) {
  .nav {
    padding: 20px 24px;
  }
  .nav .nav-links {
    display: none;
  }
}

.shop-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-shop {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 18px 60px;
  width: 100%;
}
.nav-shop .nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #c9a84c;
  text-transform: uppercase;
  text-decoration: none;
  justify-self: start;
  transition: opacity 0.2s;
}
.nav-shop .nav-logo:hover {
  opacity: 0.8;
}
.nav-shop .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-shop .nav-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8c4bc;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-shop .nav-links a:hover {
  color: #c9a84c;
}
.nav-shop .nav-cart {
  justify-self: end;
}
@media (max-width: 900px) {
  .nav-shop {
    grid-template-columns: 1fr 1fr;
    padding: 16px 24px;
    gap: 0;
  }
  .nav-shop .nav-links {
    display: none;
  }
  .nav-shop .nav-cart {
    justify-self: end;
  }
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-wrapper {
  position: relative;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  padding: 0;
}
.cart-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.cart-icon:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.06);
}
.cart-wrapper.open .cart-icon {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.06);
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.cart-count:empty, .cart-count[data-count="0"] {
  display: none;
}

.mini-cart-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 340px;
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 999;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.mini-cart-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, rgba(201, 168, 76, 0.3), transparent);
}
.cart-wrapper.open .mini-cart-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}
.mini-cart-dropdown .mini-cart-header {
  padding: 16px 20px 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888880;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.mini-cart-dropdown .woocommerce-mini-cart {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 320px;
  overflow-y: auto;
}
.mini-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar {
  width: 4px;
}
.mini-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar-track {
  background: #111;
}
.mini-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.2);
  border-radius: 2px;
}
.mini-cart-dropdown .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: background 0.2s;
}
.mini-cart-dropdown .woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}
.mini-cart-dropdown .woocommerce-mini-cart-item:hover {
  background: rgba(201, 168, 76, 0.03);
}
.mini-cart-dropdown .woocommerce-mini-cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: block;
}
.mini-cart-dropdown .woocommerce-mini-cart-item .mini-cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-cart-dropdown .woocommerce-mini-cart-item a:not(.remove) {
  font-size: 13px;
  color: #f5f0e8;
  text-decoration: none;
  line-height: 1.35;
  font-weight: 500;
  transition: color 0.2s;
}
.mini-cart-dropdown .woocommerce-mini-cart-item a:not(.remove):hover {
  color: #c9a84c;
}
.mini-cart-dropdown .woocommerce-mini-cart-item .quantity {
  font-size: 12px;
  color: #888880;
  margin-top: 2px;
}
.mini-cart-dropdown .woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
  color: #c8c4bc;
}
.mini-cart-dropdown .woocommerce-mini-cart-item .remove {
  font-size: 16px;
  color: #888880;
  text-decoration: none;
  line-height: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  margin-top: 2px;
}
.mini-cart-dropdown .woocommerce-mini-cart-item .remove:hover {
  color: #b5271a;
}
.mini-cart-dropdown .woocommerce-mini-cart__empty-message {
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
  color: #888880;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
.mini-cart-dropdown .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
}
.mini-cart-dropdown .woocommerce-mini-cart__total strong {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888880;
  font-weight: 400;
}
.mini-cart-dropdown .woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1;
}
.mini-cart-dropdown .woocommerce-mini-cart__total .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 14px;
  color: #c9a84c;
  margin-right: 2px;
}
.mini-cart-dropdown .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.mini-cart-dropdown .woocommerce-mini-cart__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mini-cart-dropdown .woocommerce-mini-cart__buttons .button:not(.checkout) {
  background: transparent;
  color: #c8c4bc;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}
.mini-cart-dropdown .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
  background: rgba(201, 168, 76, 0.06);
  color: #c9a84c;
}
.mini-cart-dropdown .woocommerce-mini-cart__buttons .checkout {
  background: #c9a84c;
  color: #0a0a0a;
}
.mini-cart-dropdown .woocommerce-mini-cart__buttons .checkout:hover {
  background: #e8c87a;
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 198;
  background: transparent;
}
.cart-wrapper.open ~ .cart-overlay {
  display: block;
}

.nav-corso {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(6, 4, 14, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  transition: background 0.3s;
}
.nav-corso .nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #c4b5fd;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-corso .nav-back {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8c4bc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav-corso .nav-back:hover {
  color: #f5f0e8;
}
.nav-corso .nav-cta--viola {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 24px;
  border: 1px solid rgb(139, 92, 246);
  color: #c4b5fd;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-corso .nav-cta--viola:hover {
  background: rgb(139, 92, 246);
  color: #f5f0e8;
}
@media (max-width: 900px) {
  .nav-corso {
    padding: 18px 24px;
  }
}

@media (max-width: 600px) {
  .mini-cart-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    transform: translateY(20px);
  }
  .cart-wrapper.open .mini-cart-dropdown {
    transform: translateY(0);
  }
}
/* ------------------------------------------------------------- */
/* Footer Style */
/* ------------------------------------------------------------- */
/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #111;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 10;
}
footer .footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
footer .footer-top.purple {
  border-color: rgba(139, 92, 246, 0.3);
}
footer .footer-top .footer-brand .footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #c9a84c;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}
footer .footer-top .footer-brand .footer-logo.purple {
  color: #c4b5fd;
}
footer .footer-top .footer-brand p {
  font-size: 13px;
  color: #888880;
  line-height: 1.7;
  margin-bottom: 24px;
}
footer .footer-top .footer-brand .footer-canale {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .footer-top .footer-brand .footer-canale.purple {
  color: #c4b5fd;
}
footer .footer-top .footer-brand .footer-social {
  display: flex;
  gap: 12px;
}
footer .footer-top .footer-brand .footer-social .footer-social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888880;
  text-decoration: none;
  font-size: 16px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
footer .footer-top .footer-brand .footer-social .footer-social-btn.purple {
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}
footer .footer-top .footer-brand .footer-social .footer-social-btn.purple:hover {
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  background-color: rgba(139, 92, 246, 0.12);
}
footer .footer-top .footer-brand .footer-social .footer-social-btn:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.15);
}
footer .footer-top .footer-menu .footer-column-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 24px;
}
footer .footer-top .footer-menu .footer-column-title.purple {
  color: rgb(139, 92, 246);
}
footer .footer-top .footer-menu .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer-top .footer-menu .footer-links li a {
  font-size: 13px;
  color: #888880;
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-top .footer-menu .footer-links li a:hover {
  color: #f5f0e8;
}
footer .footer-top .footer-menu .footer-links li a.purple {
  color: #7a7890;
}
footer .footer-top .footer-menu .footer-links li a.purple:hover {
  color: #c4b5fd;
}
footer .footer-top .footer-menu .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .footer-top .footer-menu .footer-contact .footer-column-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
footer .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-icon {
  color: #c9a84c;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
footer .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text {
  font-size: 13px;
  color: #888880;
  line-height: 1.4;
}
footer .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text a {
  color: #888880;
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text a.purple:hover {
  color: rgb(139, 92, 246);
}
footer .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text a:hover {
  color: #c9a84c;
}
footer .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text strong {
  display: block;
  color: #c8c4bc;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
footer .footer-top .footer-menu .footer-legal-box {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
}
footer .footer-top .footer-menu .footer-legal-box.purple {
  border-color: rgba(139, 92, 246, 0.3);
  background-color: rgba(139, 92, 246, 0.12);
}
footer .footer-top .footer-menu .footer-legal-box p {
  font-size: 11px;
  color: #888880;
  line-height: 1.6;
}
footer .footer-top .footer-menu .footer-legal-box strong {
  display: block;
  color: #c8c4bc;
  margin-bottom: 4px;
}
footer .footer-bottom {
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer-bottom .footer-copy {
  font-size: 12px;
  color: #888880;
}
footer .footer-bottom .footer-copy.purple {
  color: #7a7890;
}
footer .footer-bottom .footer-rai {
  font-size: 11px;
  color: rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-bottom .footer-rai::before {
  content: "📺";
  font-size: 14px;
}
footer .footer-bottom .footer-rai.purple {
  color: #c4b5fd;
}
footer .footer-bottom .footer-legal-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
footer .footer-bottom .footer-legal-links a {
  font-size: 11px;
  color: #888880;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
footer .footer-bottom .footer-legal-links a:hover {
  color: #c9a84c;
}
footer .footer-bottom .footer-legal-links a.purple:hover {
  color: rgb(139, 92, 246);
}
footer.purple {
  background: #0c0a18;
  border-top-color: rgba(139, 92, 246, 0.2);
}
footer.purple .footer-top {
  border-color: rgba(139, 92, 246, 0.3);
}
footer.purple .footer-top .footer-brand .footer-logo {
  color: #c4b5fd;
}
footer.purple .footer-top .footer-brand p {
  color: #7a7890;
}
footer.purple .footer-top .footer-brand .footer-canale {
  color: #c4b5fd;
}
footer.purple .footer-top .footer-brand .footer-social .footer-social-btn {
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}
footer.purple .footer-top .footer-brand .footer-social .footer-social-btn:hover {
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  background-color: rgba(139, 92, 246, 0.12);
}
footer.purple .footer-top .footer-menu .footer-column-title {
  color: rgb(139, 92, 246);
}
footer.purple .footer-top .footer-menu .footer-links li a {
  color: #7a7890;
}
footer.purple .footer-top .footer-menu .footer-links li a:hover {
  color: #c4b5fd;
}
footer.purple .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text a {
  color: #7a7890;
}
footer.purple .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text a:hover {
  color: rgb(139, 92, 246);
}
footer.purple .footer-top .footer-menu .footer-contact .footer-column-row .footer-column-text strong {
  color: #7a7890;
}
footer.purple .footer-top .footer-menu .footer-legal-box {
  border-color: rgba(139, 92, 246, 0.3);
  background-color: rgba(139, 92, 246, 0.12);
}
footer.purple .footer-top .footer-menu .footer-legal-box p {
  color: #7a7890;
}
footer.purple .footer-top .footer-menu .footer-legal-box strong {
  color: #b8b4d0;
}
footer.purple .footer-bottom .footer-copy {
  color: #7a7890;
}
footer.purple .footer-bottom .footer-rai {
  color: #c4b5fd;
}
footer.purple .footer-bottom .footer-legal-links a:hover {
  color: rgb(139, 92, 246);
}

.cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #c9a84c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cur.purple {
  background: rgb(139, 92, 246);
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cur-ring.purple {
  border-color: rgba(139, 92, 246, 0.5);
}

#ann {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 40px;
  background: linear-gradient(90deg, #1a0f2e, #1e1040, #180d28);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  overflow: hidden;
}
#ann .ann-track {
  display: flex;
  gap: 0;
  animation: annscroll 24s linear infinite;
  white-space: nowrap;
}
#ann .ann-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(220, 210, 255, 0.8);
}
#ann .ann-badge {
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 3px 10px;
}
#ann .ann-link {
  color: #c4b5fd;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(196, 181, 253, 0.3);
  transition: color 0.2s;
}
#ann .ann-link:hover {
  color: #e9d5ff;
}
#ann .ann-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.5);
  flex-shrink: 0;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 4, 10, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  padding: 24px;
}
.newsletter-modal.on {
  opacity: 1;
  pointer-events: all;
}
.newsletter-modal.on .newsletter-box {
  transform: translateY(0) scale(1);
}
.newsletter-modal .newsletter-box {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s;
  overflow: hidden;
}
.newsletter-modal .newsletter-box .newsletter-topbar {
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #b5271a, #c9a84c);
}
.newsletter-modal .newsletter-box .newsletter-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: #888880;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.newsletter-modal .newsletter-box .newsletter-close:hover {
  border-color: #c9a84c;
  color: #f5f0e8;
}
.newsletter-modal .newsletter-box .newsletter-body {
  padding: 48px 48px 40px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-title em {
  font-style: italic;
  color: #c9a84c;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-description {
  font-size: 14px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-bottom: 24px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-guide {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 2px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-name {
  font-size: 14px;
  color: #f5f0e8;
  font-weight: 500;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-guide .newsletter-guide-sub-label {
  font-size: 12px;
  color: #888880;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-input-name {
  background: #0a0a0a;
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 24px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-input-name:focus {
  border-color: #c9a84c;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-input-name::placeholder {
  color: rgba(136, 136, 128, 0.5);
}
.newsletter-modal .newsletter-box .newsletter-body input {
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-modal .newsletter-box .newsletter-body input:focus {
  border-color: #c9a84c;
}
.newsletter-modal .newsletter-box .newsletter-body input::placeholder {
  color: rgba(136, 136, 128, 0.4);
}
.newsletter-modal .newsletter-box .newsletter-body input.newsletter-name-input {
  width: 100%;
  margin-bottom: 20px;
}
.newsletter-modal .newsletter-box .newsletter-body input.newsletter-email-input {
  flex: 1;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-section-fields {
  display: flex;
  margin-bottom: 10px;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-section-fields .newsletter-section-btn {
  background: #c9a84c;
  color: #0a0a0a;
  border: none;
  padding: 14px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-section-fields .newsletter-section-btn:hover {
  background: #e8c87a;
}
.newsletter-modal .newsletter-box .newsletter-body .newsletter-privacy {
  font-size: 12px;
  color: #888880;
  margin-top: 10px;
  line-height: 1.5;
}

.newsletter {
  background: #111;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201, 168, 76, 0.04), transparent 65%);
  pointer-events: none;
}
.newsletter .newsletter-section-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter .newsletter-section-inner .newsletter-section-text .newsletter-section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.newsletter .newsletter-section-inner .newsletter-section-text .newsletter-section-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a84c;
}
.newsletter .newsletter-section-inner .newsletter-section-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}
.newsletter .newsletter-section-inner .newsletter-section-text h2 em {
  font-style: italic;
  color: #c9a84c;
}
.newsletter .newsletter-section-inner .newsletter-section-text p {
  font-size: 15px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-top: 16px;
}
.newsletter .newsletter-section-inner .newsletter-section-form {
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 36px;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-guide {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.05);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-guide .newsletter-section-guide-icon {
  font-size: 28px;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-guide .newsletter-section-guide-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-guide .newsletter-section-guide-name {
  font-size: 13px;
  color: #f5f0e8;
  font-weight: 500;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-guide .newsletter-section-guide-sub-label {
  font-size: 11px;
  color: #888880;
}
.newsletter .newsletter-section-inner .newsletter-section-form input {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter .newsletter-section-inner .newsletter-section-form input:focus {
  border-color: #c9a84c;
}
.newsletter .newsletter-section-inner .newsletter-section-form input::placeholder {
  color: rgba(136, 136, 128, 0.4);
}
.newsletter .newsletter-section-inner .newsletter-section-form input.newsletter-name-input {
  width: 100%;
  margin-bottom: 20px;
}
.newsletter .newsletter-section-inner .newsletter-section-form input.newsletter-email-input {
  flex: 1;
}
.newsletter .newsletter-section-inner .newsletter-section-form input {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter .newsletter-section-inner .newsletter-section-form input:focus {
  border-color: #c9a84c;
}
.newsletter .newsletter-section-inner .newsletter-section-form input::placeholder {
  color: rgba(136, 136, 128, 0.4);
}
.newsletter .newsletter-section-inner .newsletter-section-form input.newsletter-name-input {
  width: 100%;
  margin-bottom: 20px;
}
.newsletter .newsletter-section-inner .newsletter-section-form input.newsletter-email-input {
  flex: 1;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-fields {
  display: flex;
  margin-bottom: 10px;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-fields .newsletter-section-btn {
  background: #c9a84c;
  color: #0a0a0a;
  border: none;
  padding: 13px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-fields .newsletter-section-btn:hover {
  background: #e8c87a;
}
.newsletter .newsletter-section-inner .newsletter-section-form .newsletter-section-privacy {
  font-size: 11px;
  color: #888880;
  line-height: 1.5;
  margin-top: 10px;
}
.newsletter.purple {
  background: #0c0a18;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-text .newsletter-section-label {
  color: #c4b5fd;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-text .newsletter-section-label::before {
  background: rgb(139, 92, 246);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-text h2 em {
  color: #c4b5fd;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-text p {
  color: #b8b4d0;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form {
  background: #110f1e;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .newsletter-section-guide {
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.12);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .newsletter-section-guide .newsletter-section-guide-label {
  color: #c4b5fd;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .newsletter-section-guide .newsletter-section-guide-name {
  color: #f0eeff;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form input {
  background: #06040e;
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #f0eeff;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form input:focus {
  border-color: rgb(139, 92, 246);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form input::placeholder {
  color: rgba(120, 116, 144, 0.5);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .newsletter-section-fields {
  display: flex;
  margin-bottom: 10px;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .newsletter-section-fields .newsletter-section-btn {
  background: rgb(139, 92, 246);
  color: #f0eeff;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .newsletter-section-fields .newsletter-section-btn:hover {
  background: #7c3aed;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .checkbox-group label .wpcf7-list-item-label {
  color: #f0eeff;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .checkbox-group label input + span::before {
  border-color: rgba(139, 92, 246, 0.3);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .checkbox-group label input + span::after,
.newsletter.purple .newsletter-section-inner .newsletter-section-form .checkbox-group label input:checked ~ span::before {
  border-color: rgb(139, 92, 246);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .privacy-policy {
  color: #f0eeff;
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .privacy-policy a {
  color: rgb(139, 92, 246);
}
.newsletter.purple .newsletter-section-inner .newsletter-section-form .newsletter-section-privacy {
  color: #7a7890;
}

/* Gestione Nuova Checkbox Newsletter Widget */
.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
  margin-top: 20px;
}
.checkbox-group label {
  display: flex;
  margin: 0;
  text-transform: none;
  position: relative;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-group label .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.checkbox-group label .wpcf7-list-item-label {
  padding-left: 30px;
}
.checkbox-group label .wpcf7-list-item-label {
  color: #f5f0e8;
}
.checkbox-group label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-group label input + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 0;
  background-color: transparent;
}
.checkbox-group label input + span::before.purple {
  border-color: #c4b5fd;
}
.checkbox-group label input + span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #c9a84c;
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
.checkbox-group label input:checked ~ span::before {
  border-color: #c9a84c;
}
.checkbox-group label input:checked ~ span::before.purple {
  border-color: rgb(139, 92, 246);
}
.checkbox-group label input:checked ~ span::after {
  display: block;
}
.checkbox-group.purple input + span::before {
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.checkbox-group.purple input + span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid rgb(139, 92, 246);
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
.checkbox-group.purple input:checked ~ span::before {
  border-color: rgb(139, 92, 246);
}

.privacy-policy {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #f5f0e8;
  margin-bottom: 5px;
}
.privacy-policy a {
  color: #c9a84c;
  text-decoration: none;
}
.privacy-policy a.purple {
  color: rgb(139, 92, 246);
}

.wpcf7 form .wpcf7-response-output {
  padding: 10px 20px;
  border: 0;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  width: fit-content;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background-color: #0a0a0a;
  color: #f5f0e8;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
  display: none;
}

/* ------------------------------------------------------------- */
/* Animations Style & Settings */
/* ------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
@keyframes strike {
  to {
    transform: scaleX(1);
  }
}
@keyframes strikethrough {
  to {
    transform: scaleX(1);
  }
}
@keyframes scrollln {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes annscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.on {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.on {
  opacity: 1;
  transform: translateX(0);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.recensioni {
  background: #111;
}
.recensioni .section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8c87a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.recensioni .section-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a84c;
}
.recensioni .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.recensioni .section-title em {
  font-style: italic;
  color: #e8c87a;
}
.recensioni .testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.recensioni .testi-grid .testi-card {
  background: #161616;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.recensioni .testi-grid .testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
}
.recensioni .testi-grid .testi-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}
.recensioni .testi-grid .testi-card .testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: #c8c4bc;
  margin-bottom: 24px;
}
.recensioni .testi-grid .testi-card .testi-text strong {
  color: #e8c87a;
  font-style: normal;
}
.recensioni .testi-grid .testi-card .testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.recensioni .testi-grid .testi-card .testi-author .testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #c9a84c;
}
.recensioni .testi-grid .testi-card .testi-author .testi-name {
  font-size: 14px;
  font-weight: 500;
  color: #f5f0e8;
  letter-spacing: 0.05em;
}
.recensioni .testi-grid .testi-card .testi-author .testi-detail {
  font-size: 12px;
  color: #888880;
  margin-top: 2px;
}
.recensioni .testi-grid .testi-card .testi-author .testi-badge {
  margin-left: auto;
  background: rgba(181, 39, 26, 0.15);
  border: 1px solid rgba(181, 39, 26, 0.3);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #e05d50;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.recensioni.purple {
  background: #0c0a18;
}
.recensioni.purple .section-label {
  color: #c4b5fd;
}
.recensioni.purple .section-label::before {
  background: rgb(139, 92, 246);
}
.recensioni.purple .section-title em {
  color: #c4b5fd;
}
.recensioni.purple .testi-grid .testi-card {
  background: #110f1e;
  border-color: rgba(139, 92, 246, 0.2);
}
.recensioni.purple .testi-grid .testi-card::before {
  color: rgba(139, 92, 246, 0.1);
}
.recensioni.purple .testi-grid .testi-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
}
.recensioni.purple .testi-grid .testi-card .testi-text {
  color: #b8b4d0;
}
.recensioni.purple .testi-grid .testi-card .testi-text strong {
  color: #c4b5fd;
}
.recensioni.purple .testi-grid .testi-card .testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.recensioni.purple .testi-grid .testi-card .testi-author .testi-avatar {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}
.recensioni.purple .testi-grid .testi-card .testi-author .testi-name {
  color: #f0eeff;
}
.recensioni.purple .testi-grid .testi-card .testi-author .testi-detail {
  color: #7a7890;
}
.recensioni.purple .testi-grid .testi-card .testi-author .testi-badge {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

.faq {
  background: #111;
}
.faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.faq .faq-grid .faq-sidebar {
  position: sticky;
  top: 100px;
}
.faq .faq-grid .faq-sidebar .faq-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq .faq-grid .faq-sidebar .faq-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a84c;
}
.faq .faq-grid .faq-sidebar .faq-sidebar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}
.faq .faq-grid .faq-sidebar .faq-sidebar-title em {
  font-style: italic;
  color: #c9a84c;
}
.faq .faq-grid .faq-sidebar .faq-sidebar-description {
  font-size: 14px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-bottom: 36px;
}
.faq .faq-grid .faq-list {
  display: flex;
  flex-direction: column;
}
.faq .faq-grid .faq-list .faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.faq .faq-grid .faq-list .faq-item .faq-question {
  padding: 24px 0;
  font-size: 16px;
  color: #f5f0e8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq .faq-grid .faq-list .faq-item .faq-question:hover {
  color: #c9a84c;
}
.faq .faq-grid .faq-list .faq-item .faq-question.corso-dating {
  color: #f0eeff;
}
.faq .faq-grid .faq-list .faq-item .faq-question.corso-dating:hover {
  color: #c4b5fd;
}
.faq .faq-grid .faq-list .faq-item .faq-answer {
  font-size: 14px;
  color: #888880;
  line-height: 1.75;
  padding: 0 0 24px;
  max-width: 500px;
}
.faq .faq-grid .faq-list .faq-item .faq-answer.corso-dating {
  color: #7a7890;
}
.faq .faq-grid .faq-list .faq-item.corso-dating {
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.faq .faq-grid .faq-list .faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: #c9a84c;
  transition: transform 0.3s, background 0.2s;
}
.faq .faq-grid .faq-list .faq-toggle.corso-dating {
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.faq .faq-grid .faq-list details[open] .faq-toggle {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.15);
}
.faq .faq-grid .faq-list details[open] .faq-toggle.corso-dating {
  background: rgba(139, 92, 246, 0.12);
}
.faq.purple {
  background: #0c0a18;
}
.faq.purple .faq-grid .faq-sidebar {
  color: #b8b4d0;
}
.faq.purple .faq-grid .faq-sidebar .faq-label {
  color: #c4b5fd;
}
.faq.purple .faq-grid .faq-sidebar .faq-label::before {
  background: rgb(139, 92, 246);
}
.faq.purple .faq-grid .faq-sidebar .faq-sidebar-title em {
  color: #c4b5fd;
}
.faq.purple .faq-grid .faq-sidebar .faq-sidebar-description {
  color: #b8b4d0;
}
.faq.purple .faq-grid .faq-list .faq-item {
  border-color: rgba(139, 92, 246, 0.2);
}
.faq.purple .faq-grid .faq-list .faq-item .faq-question {
  color: #f0eeff;
}
.faq.purple .faq-grid .faq-list .faq-item .faq-question:hover {
  color: #c4b5fd;
}
.faq.purple .faq-grid .faq-list .faq-item .faq-answer {
  color: #7a7890;
}
.faq.purple .faq-grid .faq-list .faq-toggle {
  border-color: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}
.faq.purple .faq-grid .faq-list details[open] .faq-toggle {
  background: rgba(139, 92, 246, 0.12);
}

.transformation {
  background: #111;
  position: relative;
  overflow: hidden;
}
.transformation .transformation-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}
.transformation .transformation-intro .transformation-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.transformation .transformation-intro .transformation-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c9a84c;
}
.transformation .transformation-intro .transformation-label.purple {
  color: #c4b5fd;
}
.transformation .transformation-intro .transformation-label.purple::before {
  background: rgb(139, 92, 246);
}
.transformation .transformation-intro .transformation-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.transformation .transformation-intro .transformation-title em {
  font-style: italic;
  color: #c9a84c;
}
.transformation .transformation-intro .transformation-title.purple em {
  color: #c4b5fd;
}
.transformation .transformation-intro p {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.75;
  margin-top: 20px;
}
.transformation .transformation-wrap {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.transformation .transformation-wrap .transformation-column {
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.transformation .transformation-wrap .transformation-column .transformation-head {
  padding: 20px 32px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.transformation .transformation-wrap .transformation-column .transformation-row {
  padding: 18px 32px;
  font-size: 14px;
  color: #c8c4bc;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
  transition: background 0.2s;
}
.transformation .transformation-wrap .transformation-column .transformation-row:last-child {
  border-bottom: none;
}
.transformation .transformation-wrap .transformation-before .transformation-head {
  color: #b5271a;
  background: rgba(181, 39, 26, 0.07);
}
.transformation .transformation-wrap .transformation-after .transformation-head {
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.07);
}
.transformation .transformation-wrap .transformation-before .transformation-row::before {
  content: "✕";
  color: #b5271a;
  font-size: 12px;
  flex-shrink: 0;
}
.transformation .transformation-wrap .transformation-after .transformation-row::before {
  content: "✔";
  color: #c9a84c;
  font-size: 12px;
  flex-shrink: 0;
}
.transformation .transformation-wrap .transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: #c9a84c;
  opacity: 0.5;
}
.transformation .transformation-cta {
  text-align: center;
  margin-top: 60px;
}
.transformation .transformation-cta p {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: italic;
  color: #c8c4bc;
  margin-bottom: 28px;
}
.transformation .transformation-cta p strong {
  color: #f5f0e8;
  font-style: normal;
}
.transformation.purple {
  background: #0c0a18;
}
.transformation.purple .transformation-intro .transformation-label {
  color: #c4b5fd;
}
.transformation.purple .transformation-intro .transformation-label::before {
  background: rgb(139, 92, 246);
}
.transformation.purple .transformation-intro .transformation-title em {
  color: #c4b5fd;
}
.transformation.purple .transformation-intro p {
  color: #b8b4d0;
}
.transformation.purple .transformation-wrap .transformation-column {
  border-color: rgba(139, 92, 246, 0.2);
}
.transformation.purple .transformation-wrap .transformation-column .transformation-head {
  border-color: rgba(139, 92, 246, 0.2);
}
.transformation.purple .transformation-wrap .transformation-column .transformation-row {
  color: #b8b4d0;
  border-color: rgba(139, 92, 246, 0.2);
}
.transformation.purple .transformation-wrap .transformation-before .transformation-head {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.07);
}
.transformation.purple .transformation-wrap .transformation-after .transformation-head {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.12);
}
.transformation.purple .transformation-wrap .transformation-before .transformation-row::before {
  color: #ef4444;
}
.transformation.purple .transformation-wrap .transformation-after .transformation-row::before {
  color: #c4b5fd;
}
.transformation.purple .transformation-wrap .transformation-arrow {
  color: rgb(139, 92, 246);
}
.transformation.purple .transformation-cta p {
  color: #b8b4d0;
}
.transformation.purple .transformation-cta p strong {
  color: #f0eeff;
}

.marq-strip {
  padding: 60px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
}
.marq-strip .marq-track {
  display: flex;
  gap: 60px;
  animation: marq 24s linear infinite;
  white-space: nowrap;
}
.marq-strip .marq-track .marq-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: #888880;
  flex-shrink: 0;
}
.marq-strip .marq-track .marq-item span {
  color: #c9a84c;
}
.marq-strip.purple {
  background: #0c0a18;
  border-top-color: rgba(139, 92, 246, 0.2);
  border-bottom-color: rgba(139, 92, 246, 0.2);
}
.marq-strip.purple .marq-track .marq-item {
  color: #7a7890;
}
.marq-strip.purple .marq-track .marq-item span {
  color: #c4b5fd;
}

.hero-stats-container {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.hero-stats-container .hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 1s 0.6s ease both;
}
.hero-stats-container .hero-stats-bar .hero-stat {
  padding: 28px 40px;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
}
.hero-stats-container .hero-stats-bar .hero-stat:last-child {
  border-right: none;
}
.hero-stats-container .hero-stats-bar .hero-stat .hero-stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  color: #c9a84c;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stats-container .hero-stats-bar .hero-stat .hero-stat-number span {
  color: #b5271a;
  font-size: 0.6em;
}
.hero-stats-container .hero-stats-bar .hero-stat .hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888880;
  margin-top: 6px;
}
.hero-stats-container.purple {
  border-top-color: rgba(139, 92, 246, 0.2);
  border-bottom-color: rgba(139, 92, 246, 0.2);
}
.hero-stats-container.purple .hero-stats-bar .hero-stat {
  border-right-color: rgba(139, 92, 246, 0.2);
}
.hero-stats-container.purple .hero-stats-bar .hero-stat .hero-stat-number {
  color: #c4b5fd;
}
.hero-stats-container.purple .hero-stats-bar .hero-stat .hero-stat-number span {
  color: rgb(139, 92, 246);
}
.hero-stats-container.purple .hero-stats-bar .hero-stat .hero-stat-label {
  color: #7a7890;
}

.pain {
  background: #111;
  position: relative;
  overflow: hidden;
}
.pain::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 39, 26, 0.08), transparent 70%);
  pointer-events: none;
}
.pain .pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.pain .pain-grid .pain-intro {
  font-size: 20px;
  color: #c8c4bc;
  line-height: 1.65;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  margin-top: 28px;
}
.pain .pain-grid .pain-intro strong {
  color: #f5f0e8;
  font-style: normal;
}
.pain .pain-grid .pain-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.pain .pain-grid .pain-list .pain-item {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  color: #c8c4bc;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, color 0.2s;
}
.pain .pain-grid .pain-list .pain-item:last-child {
  border-bottom: none;
}
.pain .pain-grid .pain-list .pain-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #b5271a;
  transform: scaleY(0);
  transition: transform 0.3s;
}
.pain .pain-grid .pain-list .pain-item:hover {
  background: rgba(181, 39, 26, 0.05);
  color: #f5f0e8;
}
.pain .pain-grid .pain-list .pain-item:hover::before {
  transform: scaleY(1);
}
.pain .pain-grid .pain-list .pain-item .pain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b5271a;
  flex-shrink: 0;
}
.pain.purple {
  background: #06040e;
}
.pain.purple .section-label {
  color: #c4b5fd;
}
.pain.purple .section-label::before {
  background: rgb(139, 92, 246);
}
.pain.purple .pain-grid .section-title em {
  color: #c4b5fd;
}
.pain.purple .pain-grid .pain-intro {
  color: #b8b4d0;
}
.pain.purple .pain-grid .pain-intro strong {
  color: #f0eeff;
}
.pain.purple .pain-grid .pain-list {
  border-color: rgba(139, 92, 246, 0.2);
}
.pain.purple .pain-grid .pain-list .pain-item {
  border-color: rgba(139, 92, 246, 0.2);
  align-items: flex-start;
  gap: 14px;
  color: #b8b4d0;
}
.pain.purple .pain-grid .pain-list .pain-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgb(139, 92, 246);
  transform: scaleY(0);
  transition: transform 0.3s;
}
.pain.purple .pain-grid .pain-list .pain-item::before {
  content: "→";
  color: rgb(139, 92, 246);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  width: 13px;
  background: transparent;
  transform: none;
  transition: none;
}
.pain.purple .pain-grid .pain-list .pain-item:hover {
  background: rgba(139, 92, 246, 0.12);
  color: #f0eeff;
}
.pain.purple .pain-grid .pain-list .pain-item:hover::after {
  transform: scaleY(1);
}

/* ------------------------------------------------------------- */
/* Container Style & Settings */
/* ------------------------------------------------------------- */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
:root {
  --wc-color-primary: #c9a84c;
  --wc-color-primary-dark: #e8c87a;
  --wc-color-secondary: #111;
  --wc-color-text: #f5f0e8;
  --wc-color-text-muted: #c8c4bc;
  --wc-color-border: rgba(201, 168, 76, 0.2);
  --wc-color-background: #0a0a0a;
  --wc-color-background-alt: #111;
  --wc-color-success: #22c55e;
  --wc-color-error: #b5271a;
  --wc-border-radius: 0;
  --wc-gap: 1px;
}

/* ------------------------------------------------------------- */
/* WooCommerce Container Style & Settings */
/* ------------------------------------------------------------- */
.wc-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .wc-container {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (min-width: 576px) {
  .wc-container {
    max-width: 540px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (min-width: 768px) {
  .wc-container {
    max-width: 720px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (min-width: 992px) {
  .wc-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .wc-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .wc-container {
    max-width: 1320px;
  }
}
.wc-page {
  background: #0a0a0a;
  color: #f5f0e8;
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  background: #0a0a0a;
  min-height: 50vh;
  position: relative;
  padding: 90px 0 40px;
  overflow: hidden;
}

.woocommerce .login .lost_password a {
  color: #f5f0e8;
}

.wc-page-hero {
  position: relative;
  padding: calc(40px + 50px) 0 40px;
  overflow: hidden;
}
.wc-page-hero .wc-page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 70% 50%, rgba(181, 39, 26, 0.08) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 15% 40%, rgba(201, 168, 76, 0.05) 0%, transparent 55%), linear-gradient(160deg, #0a0a0a, #0d0908, #0a0a0a);
}
.wc-page-hero .wc-page-hero-content {
  position: relative;
  z-index: 1;
}

.wc-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.wc-page-title em {
  font-style: italic;
  color: #c9a84c;
}

.wc-page-hero-sub {
  font-size: 16px;
  color: #c8c4bc;
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.7;
}

.wc-sidebar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 28px;
}
.wc-sidebar-title em {
  font-style: italic;
  color: #c9a84c;
}

.wc-checkout-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f5f0e8;
}
.wc-checkout-section-title .wc-section-icon {
  font-size: 18px;
}

.wc-cart-trust {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wc-cart-trust .wc-trust-item {
  font-size: 13px;
  color: #c8c4bc;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wc-cart-trust .wc-trust-item::before {
  display: none;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce-page input.input-text,
.woocommerce-page textarea,
.woocommerce-page select {
  background: #111 !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  color: #f5f0e8 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  padding: 13px 16px !important;
  border-radius: 0 !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  appearance: none !important;
  width: 100% !important;
}
.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.woocommerce-page input.input-text:focus,
.woocommerce-page textarea:focus,
.woocommerce-page select:focus {
  border-color: #c9a84c !important;
  box-shadow: none !important;
}
.woocommerce input.input-text::placeholder,
.woocommerce textarea::placeholder,
.woocommerce select::placeholder,
.woocommerce-page input.input-text::placeholder,
.woocommerce-page textarea::placeholder,
.woocommerce-page select::placeholder {
  color: rgba(136, 136, 128, 0.5) !important;
}
.woocommerce label,
.woocommerce-page label {
  display: block !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #c8c4bc !important;
  margin-bottom: 7px !important;
  font-weight: 400 !important;
}
.woocommerce label .required,
.woocommerce-page label .required {
  color: #c9a84c !important;
  margin-left: 3px;
}
.woocommerce .form-row,
.woocommerce-page .form-row {
  margin-bottom: 20px !important;
  padding: 0 !important;
}
.woocommerce .form-row-first,
.woocommerce .form-row-last,
.woocommerce-page .form-row-first,
.woocommerce-page .form-row-last {
  width: 48% !important;
  float: none !important;
  display: inline-block;
}
.woocommerce .form-row-wide,
.woocommerce-page .form-row-wide {
  width: 100% !important;
}
.woocommerce .button,
.woocommerce button[type=submit],
.woocommerce input[type=submit],
.woocommerce-page .button,
.woocommerce-page button[type=submit],
.woocommerce-page input[type=submit] {
  background: #c9a84c !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none !important;
}
.woocommerce .button:hover,
.woocommerce button[type=submit]:hover,
.woocommerce input[type=submit]:hover,
.woocommerce-page .button:hover,
.woocommerce-page button[type=submit]:hover,
.woocommerce-page input[type=submit]:hover {
  background: #e8c87a !important;
  color: #0a0a0a !important;
  transform: translateY(-1px) !important;
}
.woocommerce .button.alt,
.woocommerce .button-secondary,
.woocommerce-page .button.alt,
.woocommerce-page .button-secondary {
  background: transparent !important;
  border: 1px solid #c9a84c !important;
  color: #c9a84c !important;
}
.woocommerce .button.alt:hover,
.woocommerce .button-secondary:hover,
.woocommerce-page .button.alt:hover,
.woocommerce-page .button-secondary:hover {
  background: #c9a84c !important;
  color: #0a0a0a !important;
}
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce-page .woocommerce-message,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-error {
  border-radius: 0;
  background: #111;
  border-color: #c9a84c;
  color: #f5f0e8;
  font-size: 14px;
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before,
.woocommerce-page .woocommerce-message::before,
.woocommerce-page .woocommerce-info::before,
.woocommerce-page .woocommerce-error::before {
  color: #c9a84c;
}
.woocommerce .woocommerce-error,
.woocommerce-page .woocommerce-error {
  border-color: #b5271a;
  background: rgba(181, 39, 26, 0.1);
}
.woocommerce .price,
.woocommerce .amount,
.woocommerce-page .price,
.woocommerce-page .amount {
  font-family: "Cormorant Garamond", serif !important;
  color: #c9a84c !important;
}
.woocommerce del .amount,
.woocommerce-page del .amount {
  color: #888880 !important;
}
.woocommerce .onsale,
.woocommerce-page .onsale {
  background: #b5271a !important;
  color: #f5f0e8 !important;
  border-radius: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.4 !important;
}
.woocommerce .star-rating,
.woocommerce-page .star-rating {
  color: #c9a84c !important;
}
.woocommerce .star-rating span::before,
.woocommerce-page .star-rating span::before {
  color: #c9a84c !important;
}
.woocommerce .quantity .qty,
.woocommerce-page .quantity .qty {
  background: #111 !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  color: #f5f0e8 !important;
  border-radius: 0 !important;
  text-align: center !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 18px !important;
  width: 80px !important;
  padding: 10px !important;
}

.woocommerce-notices-wrapper {
  position: absolute;
  top: 100px;
  right: 5%;
  z-index: 10;
}
.woocommerce-notices-wrapper .woocommerce-message a.button {
  color: #c9a84c;
  text-decoration: none;
}
.woocommerce-notices-wrapper .woocommerce-message a.button:hover {
  text-decoration: underline;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: #161616;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-left: 3px solid rgb(139, 92, 246);
  color: #c8c4bc;
  font-size: 14px;
  padding: 16px 24px;
  margin-bottom: 24px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  content: "ℹ";
  color: #c4b5fd;
  font-size: 16px;
  flex-shrink: 0;
}
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
  color: #c4b5fd;
  text-decoration: none;
}
.woocommerce-message a:hover,
.woocommerce-error a:hover,
.woocommerce-info a:hover {
  color: #f5f0e8;
}

.woocommerce-error {
  border-left-color: #b5271a;
}
.woocommerce-error::before {
  content: "✕";
  color: #b5271a;
}

.woocommerce-message {
  border-left-color: #22c55e;
}
.woocommerce-message::before {
  content: "✓";
  color: #22c55e;
}

@media (max-width: 900px) {
  .product-hero {
    padding: 100px 24px 80px;
  }
  .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-hero__image {
    max-width: 340px;
    margin: 0 auto;
  }
  .product-hero__title {
    font-size: clamp(30px, 7vw, 44px);
  }
  .product-hero__price .woocommerce-Price-amount {
    font-size: 48px;
  }
  .product-hero__guarantees {
    gap: 12px;
  }
  .product-description,
  .product-features,
  .related-products {
    padding: 80px 24px;
  }
}
@media (max-width: 600px) {
  .product-hero__price .woocommerce-Price-amount {
    font-size: 40px;
  }
  .product-hero .single_add_to_cart_button,
  .product-hero .button {
    width: 100%;
    padding: 18px 24px;
  }
  .product-hero__guarantees {
    flex-direction: column;
    gap: 8px;
  }
  .product-features__item {
    padding: 16px 20px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .wc-page-hero {
    padding: calc(40px + 20px) 0 50px;
  }
  .wc-page-title {
    font-size: clamp(32px, 6vw, 52px);
  }
  .wc-page--cart .wc-cart-layout {
    padding: 40px 0 80px;
  }
  .wc-page--checkout .wc-checkout-layout {
    padding-bottom: 80px;
  }
  .wc-page--account .wc-account-layout {
    padding: 40px 0 80px;
  }
  .wc-page--shop .wc-shop-layout {
    padding: 40px 0 80px;
  }
}
@media (max-width: 600px) {
  .wc-checkout-steps {
    gap: 0;
  }
  .wc-page--checkout .wc-checkout-section {
    padding: 24px;
  }
  .wc-page--checkout .wc-checkout-summary {
    padding: 24px;
  }
  .wc-page--cart .wc-cart-totals-wrap {
    padding: 24px;
  }
  .wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
  }
  .wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation ul li {
    flex: 1;
    min-width: 50%;
    border-right: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }
  .wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation ul li:last-child {
    border-right: none;
  }
}
.lp .product-hero {
  padding: 140px 60px 120px;
  background: #111;
  position: relative;
  overflow: hidden;
}
.lp .product-hero .container {
  position: relative;
  z-index: 1;
}
.lp .product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lp .product-hero__grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: start;
}
.lp .product-hero__image {
  position: relative;
}
.lp .product-hero__image::before, .lp .product-hero__image::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  z-index: 2;
  pointer-events: none;
}
.lp .product-hero__image::before {
  top: -16px;
  left: -16px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.lp .product-hero__image::after {
  bottom: -16px;
  right: -16px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.lp .product-hero__img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid;
  background: #161616;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.lp .product-hero__content {
  padding-top: 8px;
}
.lp .product-hero__content .product-features__list {
  list-style: none;
  max-width: 780px;
  margin: 0 auto 24px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.lp .product-hero__content .product-features__item {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 15px;
  color: #c8c4bc;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, color 0.2s;
}
.lp .product-hero__content .product-features__item:last-child {
  border-bottom: none;
}
.lp .product-hero__content .product-features__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: scaleY(0);
  transition: transform 0.3s;
}
.lp .product-hero__content .product-features__item::after {
  content: "✦";
  font-size: 10px;
  flex-shrink: 0;
}
.lp .product-hero__content .product-features__item:hover {
  color: #f5f0e8;
}
.lp .product-hero__content .product-features__item:hover::before {
  transform: scaleY(1);
}
.lp .product-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: #f5f0e8;
}
.lp .product-hero__price {
  margin-bottom: 28px;
}
.lp .product-hero__price .price {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.lp .product-hero__price .woocommerce-Price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1;
}
.lp .product-hero__price .woocommerce-Price-amount bdi {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.lp .product-hero__price .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 24px;
  font-weight: 300;
}
.lp .product-hero__price del {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: #888880;
  text-decoration: line-through;
}
.lp .product-hero__price del .woocommerce-Price-amount {
  font-size: 28px;
  color: #888880;
}
.lp .product-hero__price ins {
  text-decoration: none;
}
.lp .product-hero__short-desc {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.lp .product-hero__short-desc strong {
  color: #f5f0e8;
}
.lp .product-hero__short-desc ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp .product-hero__short-desc ul li {
  font-size: 14px;
  color: #c8c4bc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.lp .product-hero__short-desc ul li::before {
  content: "✦";
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}
.lp .product-hero .cart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp .product-hero .quantity {
  display: none;
}
.lp .product-hero .single_add_to_cart_button,
.lp .product-hero .button {
  max-width: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 20px 48px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp .product-hero .single_add_to_cart_button::before,
.lp .product-hero .button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.lp .product-hero .single_add_to_cart_button:hover,
.lp .product-hero .button:hover {
  transform: translateY(-2px);
}
.lp .product-hero .single_add_to_cart_button:hover::before,
.lp .product-hero .button:hover::before {
  transform: translateX(0);
}
.lp .product-hero .single_add_to_cart_button span,
.lp .product-hero .button span {
  position: relative;
  z-index: 1;
}
.lp .product-hero__guarantees {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.lp .product-hero__guarantees span {
  font-size: 11px;
  color: #c8c4bc;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lp .product-hero__guarantees span::before {
  content: "✓";
  font-size: 13px;
}
.lp .product-description {
  padding: 120px 60px;
  background: #0a0a0a;
}
.lp .product-description__body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.8;
}
.lp .product-description__body h2,
.lp .product-description__body h3,
.lp .product-description__body h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #f5f0e8;
  margin: 40px 0 16px;
  line-height: 1.15;
}
.lp .product-description__body h2 {
  font-size: clamp(28px, 3vw, 40px);
}
.lp .product-description__body h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}
.lp .product-description__body p {
  margin-bottom: 20px;
}
.lp .product-description__body p strong {
  color: #f5f0e8;
}
.lp .product-description__body ul,
.lp .product-description__body ol {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp .product-description__body ul li,
.lp .product-description__body ol li {
  font-size: 15px;
  color: #c8c4bc;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.lp .product-description__body ul li::before,
.lp .product-description__body ol li::before {
  content: "✦";
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}
.lp .product-description__body blockquote {
  margin: 32px 0;
  padding: 20px 28px;
  border-left: 2px solid;
}
.lp .product-description__body blockquote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: #f5f0e8;
  margin: 0;
}
.lp .product-features {
  padding: 120px 60px;
  background: #111;
}
.lp .product-features__list {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid;
}
.lp .product-features__item {
  padding: 20px 28px;
  border-bottom: 1px solid;
  font-size: 15px;
  color: #c8c4bc;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, color 0.2s;
}
.lp .product-features__item:last-child {
  border-bottom: none;
}
.lp .product-features__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: scaleY(0);
  transition: transform 0.3s;
}
.lp .product-features__item::after {
  content: "✦";
  font-size: 10px;
  flex-shrink: 0;
}
.lp .product-features__item:hover {
  color: #f5f0e8;
}
.lp .product-features__item:hover::before {
  transform: scaleY(1);
}
.lp .related-products {
  padding: 120px 60px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.lp .related-products::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
}
.lp .related-products .container {
  position: relative;
  z-index: 1;
}
.lp .related-products .pkg-hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.lp .related-products .pkg-hd .s-lbl {
  justify-content: center;
}
.lp .related-products .pkg-hd .s-lbl::before {
  display: none;
}
.lp .pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.lp .pkg-card {
  border: 1px solid;
  padding: 48px 40px;
  position: relative;
  background: #111;
  transition: border-color 0.3s, transform 0.3s;
}
.lp .pkg-card:hover {
  transform: translateY(-6px);
}
.lp .pkg-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
}
.lp .pkg-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp .pkg-price {
  font-family: "Cormorant Garamond", serif;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.lp .pkg-period {
  font-size: 13px;
  color: #888880;
  margin-bottom: 36px;
}
.lp .pkg-eur {
  font-size: 24px;
  font-weight: 300;
}
.lp .pkg-amt {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: #f5f0e8;
}
.lp .pkg-old {
  font-size: 18px;
  color: #888880;
  text-decoration: line-through;
  margin-bottom: 6px;
}
.lp .pkg-feats {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp .pkg-feats li {
  font-size: 14px;
  color: #c8c4bc;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
.lp .pkg-feats li::before {
  content: "✦";
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}
.lp .btn-pkg {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.lp .woocommerce-message,
.lp .woocommerce-error,
.lp .woocommerce-info {
  background: #161616;
  border: 1px solid;
  border-left-width: 3px;
  color: #c8c4bc;
  font-size: 14px;
  padding: 16px 24px;
  margin-bottom: 24px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp .woocommerce-message::before,
.lp .woocommerce-error::before,
.lp .woocommerce-info::before {
  font-size: 16px;
  flex-shrink: 0;
}
.lp .woocommerce-message a,
.lp .woocommerce-error a,
.lp .woocommerce-info a {
  text-decoration: none;
}
.lp .woocommerce-message a:hover,
.lp .woocommerce-error a:hover,
.lp .woocommerce-info a:hover {
  color: #f5f0e8;
}
.lp .woocommerce-error {
  border-left-color: #b5271a !important;
}
.lp .woocommerce-error::before {
  content: "✕";
  color: #b5271a;
}
.lp .woocommerce-message {
  border-left-color: #22c55e !important;
}
.lp .woocommerce-message::before {
  content: "✓";
  color: #22c55e;
}

.lp--corso .product-hero::before {
  background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 65%), radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}
.lp--corso .product-hero__image::before {
  border-top-color: rgb(139, 92, 246);
  border-left-color: rgb(139, 92, 246);
}
.lp--corso .product-hero__image::after {
  border-bottom-color: rgb(139, 92, 246);
  border-right-color: rgb(139, 92, 246);
}
.lp--corso .product-hero__img {
  border-color: rgba(139, 92, 246, 0.3);
}
.lp--corso .product-hero__title em {
  color: #c4b5fd;
}
.lp--corso .product-hero__price .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  color: #c4b5fd;
}
.lp--corso .product-hero__short-desc ul li::before {
  color: #c4b5fd;
}
.lp--corso .product-hero .single_add_to_cart_button,
.lp--corso .product-hero .button {
  background: rgb(139, 92, 246);
  color: #f5f0e8;
}
.lp--corso .product-hero .single_add_to_cart_button:hover,
.lp--corso .product-hero .button:hover {
  background: rgb(139, 92, 246);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.35);
}
.lp--corso .product-hero .product-hero__guarantees span::before {
  color: #c4b5fd;
}
.lp--corso .product-description__body h2 em,
.lp--corso .product-description__body h3 em,
.lp--corso .product-description__body h4 em {
  color: #c4b5fd;
}
.lp--corso .product-description__body ul li::before,
.lp--corso .product-description__body ol li::before {
  color: #c4b5fd;
}
.lp--corso .product-description__body blockquote {
  border-left-color: rgb(139, 92, 246);
  background: rgba(139, 92, 246, 0.12);
}
.lp--corso .product-features__list {
  border-color: rgba(139, 92, 246, 0.3);
}
.lp--corso .product-features__item {
  border-bottom-color: rgba(139, 92, 246, 0.3);
}
.lp--corso .product-features__item::before {
  background: rgb(139, 92, 246);
}
.lp--corso .product-features__item::after {
  color: #c4b5fd;
}
.lp--corso .product-features__item:hover {
  background: rgba(139, 92, 246, 0.12);
}
.lp--corso .related-products::before {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.04), transparent 70%);
}
.lp--corso .woocommerce-info {
  border-color: rgba(139, 92, 246, 0.3);
  border-left-color: rgb(139, 92, 246);
}
.lp--corso .woocommerce-info::before {
  color: #c4b5fd;
}
.lp--corso .woocommerce-info a {
  color: #c4b5fd;
}
.lp--corso .pkg-card {
  border-color: rgba(139, 92, 246, 0.3);
}
.lp--corso .pkg-card:hover {
  border-color: rgb(139, 92, 246);
}
.lp--corso .pkg-card.featured {
  border-color: rgb(139, 92, 246);
  background: #161616;
}
.lp--corso .pkg-badge {
  background: rgb(139, 92, 246);
  color: #f5f0e8;
}
.lp--corso .pkg-name {
  color: #c4b5fd;
}
.lp--corso .pkg-eur {
  color: #c4b5fd;
}
.lp--corso .pkg-feats li::before {
  color: #c4b5fd;
}
.lp--corso .btn-pkg-p {
  background: rgb(139, 92, 246);
  color: #f5f0e8;
}
.lp--corso .btn-pkg-p:hover {
  background: rgb(139, 92, 246);
  color: #f5f0e8;
}
.lp--corso .btn-pkg-o {
  border: 1px solid rgb(139, 92, 246);
  color: #c4b5fd;
}
.lp--corso .btn-pkg-o:hover {
  background: rgb(139, 92, 246);
  color: #f5f0e8;
}

.lp--coaching .product-hero::before {
  background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(201, 168, 76, 0.1) 0%, transparent 65%), radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}
.lp--coaching .product-hero__image::before {
  border-top-color: #c9a84c;
  border-left-color: #c9a84c;
}
.lp--coaching .product-hero__image::after {
  border-bottom-color: #c9a84c;
  border-right-color: #c9a84c;
}
.lp--coaching .product-hero__img {
  border-color: rgba(201, 168, 76, 0.2);
}
.lp--coaching .product-hero__title em {
  color: #e8c87a;
}
.lp--coaching .product-hero__price .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  color: #e8c87a;
}
.lp--coaching .product-hero__short-desc ul li::before {
  color: #e8c87a;
}
.lp--coaching .product-hero .single_add_to_cart_button,
.lp--coaching .product-hero .button {
  background: #c9a84c;
  color: #0a0a0a;
}
.lp--coaching .product-hero .single_add_to_cart_button:hover,
.lp--coaching .product-hero .button:hover {
  background: #e8c87a;
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.35);
}
.lp--coaching .product-hero .product-hero__guarantees span::before {
  color: #e8c87a;
}
.lp--coaching .product-description__body h2 em,
.lp--coaching .product-description__body h3 em,
.lp--coaching .product-description__body h4 em {
  color: #e8c87a;
}
.lp--coaching .product-description__body ul li::before,
.lp--coaching .product-description__body ol li::before {
  color: #e8c87a;
}
.lp--coaching .product-description__body blockquote {
  border-left-color: #c9a84c;
  background: rgba(201, 168, 76, 0.15);
}
.lp--coaching .product-features__list {
  border-color: rgba(201, 168, 76, 0.2);
}
.lp--coaching .product-features__item {
  border-bottom-color: rgba(201, 168, 76, 0.2);
}
.lp--coaching .product-features__item::before {
  background: #c9a84c;
}
.lp--coaching .product-features__item::after {
  color: #e8c87a;
}
.lp--coaching .product-features__item:hover {
  background: rgba(201, 168, 76, 0.15);
}
.lp--coaching .related-products::before {
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
}
.lp--coaching .woocommerce-info {
  border-color: rgba(201, 168, 76, 0.2);
  border-left-color: #c9a84c;
}
.lp--coaching .woocommerce-info::before {
  color: #e8c87a;
}
.lp--coaching .woocommerce-info a {
  color: #e8c87a;
}
.lp--coaching .pkg-card {
  border-color: rgba(201, 168, 76, 0.2);
}
.lp--coaching .pkg-card:hover {
  border-color: #c9a84c;
}
.lp--coaching .pkg-card.featured {
  border-color: #c9a84c;
  background: #161616;
}
.lp--coaching .pkg-badge {
  background: #c9a84c;
  color: #0a0a0a;
}
.lp--coaching .pkg-name {
  color: #e8c87a;
}
.lp--coaching .pkg-eur {
  color: #e8c87a;
}
.lp--coaching .pkg-feats li::before {
  color: #e8c87a;
}
.lp--coaching .btn-pkg-p {
  background: #c9a84c;
  color: #0a0a0a;
}
.lp--coaching .btn-pkg-p:hover {
  background: #e8c87a;
  color: #0a0a0a;
}
.lp--coaching .btn-pkg-o {
  border: 1px solid #c9a84c;
  color: #e8c87a;
}
.lp--coaching .btn-pkg-o:hover {
  background: #c9a84c;
  color: #0a0a0a;
}
.lp--coaching .product-hero::before {
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(181, 39, 26, 0.1) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 10% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 60%) !important;
}

@media (max-width: 900px) {
  .lp .product-hero {
    padding: 100px 24px 80px;
  }
  .lp .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp .product-hero__image {
    max-width: 340px;
    margin: 0 auto;
  }
  .lp .product-hero__title {
    font-size: clamp(30px, 7vw, 44px);
  }
  .lp .product-hero__price .woocommerce-Price-amount {
    font-size: 48px;
  }
  .lp .product-description,
  .lp .product-features,
  .lp .related-products {
    padding: 80px 24px;
  }
  .lp .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
@media (max-width: 600px) {
  .lp .product-hero__price .woocommerce-Price-amount {
    font-size: 40px;
  }
  .lp .product-hero .single_add_to_cart_button,
  .lp .product-hero .button {
    width: 100%;
    padding: 18px 24px;
  }
  .lp .product-hero__guarantees {
    flex-direction: column;
    gap: 8px;
  }
  .lp .product-features__item {
    padding: 16px 20px;
    font-size: 14px;
  }
}
.wc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 900px) {
  .wc-container {
    padding: 0 24px;
  }
}

.wc-shop-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: #111;
}
.wc-shop-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(181, 39, 26, 0.09) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%), linear-gradient(160deg, #0a0a0a, #0f0a08, #0a0505);
  pointer-events: none;
}
.wc-shop-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.wc-shop-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.wc-shop-hero__content .s-lbl {
  margin-bottom: 16px;
}
.wc-shop-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #888880;
}
.wc-shop-hero__breadcrumb a {
  color: #888880;
  text-decoration: none;
  transition: color 0.2s;
}
.wc-shop-hero__breadcrumb a:hover {
  color: #c9a84c;
}
.wc-shop-hero__breadcrumb span:not(:last-child) {
  color: rgba(201, 168, 76, 0.4);
}
.wc-shop-hero__breadcrumb span:last-child {
  color: #c8c4bc;
}

.wc-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #f5f0e8;
  margin-bottom: 16px;
}

.woocommerce-product-archive-description {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.75;
  max-width: 480px;
  margin-top: 8px;
}
.woocommerce-product-archive-description p {
  margin: 0;
}

.wc-trust-bar {
  background: #0a0a0a;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.wc-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}
@media (max-width: 900px) {
  .wc-trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .wc-trust-bar__inner {
    grid-template-columns: 1fr;
  }
}

.wc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #c8c4bc;
  white-space: nowrap;
}
.wc-trust-item__icon {
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .wc-trust-item {
    white-space: normal;
  }
}

.wc-shop-body {
  padding: 80px 0 120px;
  background: #0a0a0a;
}

.wc-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  gap: 20px;
}
@media (max-width: 600px) {
  .wc-shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.woocommerce-result-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888880;
  margin: 0;
}

.woocommerce-ordering select {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #c8c4bc;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 10px 36px 10px 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.woocommerce-ordering select:hover, .woocommerce-ordering select:focus {
  border-color: #c9a84c;
  color: #f5f0e8;
}
.woocommerce-ordering select option {
  background: #111;
}

.wc-products-grid ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) {
  .wc-products-grid ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .wc-products-grid ul.products {
    grid-template-columns: 1fr;
  }
}

.wc-products-grid li.product {
  position: relative;
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
  padding: 20px;
}
.wc-products-grid li.product:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
}
.wc-products-grid li.product::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.wc-products-grid li.product:hover::after {
  transform: scaleX(1);
}
.wc-products-grid li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.wc-products-grid li.product .woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.wc-products-grid li.product .attachment-woocommerce_thumbnail,
.wc-products-grid li.product img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  background: #161616;
  transition: opacity 0.3s;
}
.wc-products-grid li.product:hover img {
  opacity: 0.9;
}
.wc-products-grid li.product .wc-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.wc-products-grid li.product .wc-card-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
}
.wc-products-grid li.product .woocommerce-loop-product__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #f5f0e8;
  margin: 0;
  margin-top: 8px;
}
.wc-products-grid li.product .wc-card-excerpt {
  font-size: 13px;
  color: #888880;
  line-height: 1.65;
  margin-top: 4px;
  flex: 1;
}
.wc-products-grid li.product .price {
  font-family: "Cormorant Garamond", serif;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.wc-products-grid li.product .price .woocommerce-Price-amount {
  font-size: 32px;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1;
}
.wc-products-grid li.product .price .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 16px;
  color: #c9a84c;
  margin-right: 2px;
}
.wc-products-grid li.product .price del {
  font-size: 16px;
  color: #888880;
  text-decoration: line-through;
}
.wc-products-grid li.product .price del .woocommerce-Price-amount {
  font-size: 16px;
  color: #888880;
}
.wc-products-grid li.product .price ins {
  text-decoration: none;
}
.wc-products-grid li.product .onsale {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #b5271a;
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0;
  margin: 0;
  line-height: 1;
  z-index: 2;
}
.wc-products-grid li.product .button,
.wc-products-grid li.product .add_to_cart_button {
  display: block;
  text-align: center;
  margin: 0 28px 28px;
  padding: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.wc-products-grid li.product .button:hover,
.wc-products-grid li.product .add_to_cart_button:hover {
  background: #c9a84c;
  color: #0a0a0a;
}
.wc-products-grid li.product .button.loading,
.wc-products-grid li.product .add_to_cart_button.loading {
  opacity: 0.6;
  pointer-events: none;
}
.wc-products-grid li.product .button.loading::after,
.wc-products-grid li.product .add_to_cart_button.loading::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: wc-spin 0.7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
.wc-products-grid li.product .button.added,
.wc-products-grid li.product .add_to_cart_button.added {
  border-color: #22c55e;
  color: #22c55e;
}
.wc-products-grid li.product .button.added:hover,
.wc-products-grid li.product .add_to_cart_button.added:hover {
  background: #22c55e;
  color: #0a0a0a;
}

@keyframes wc-spin {
  to {
    transform: rotate(360deg);
  }
}
.wc-no-products {
  padding: 80px 0;
  text-align: center;
}
.wc-no-products .woocommerce-info {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid #c9a84c;
  color: #c8c4bc;
  font-size: 15px;
  padding: 24px 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  text-align: left;
}
.wc-no-products .woocommerce-info::before {
  content: "✦";
  color: #c9a84c;
  font-size: 14px;
  flex-shrink: 0;
}
.wc-no-products .woocommerce-info a {
  color: #c9a84c;
  text-decoration: none;
}
.wc-no-products .woocommerce-info a:hover {
  color: #e8c87a;
}

.wc-shop-pagination {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.wc-shop-pagination .woocommerce-pagination {
  display: flex;
  justify-content: center;
}
.wc-shop-pagination .woocommerce-pagination ul.page-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.wc-shop-pagination .woocommerce-pagination li {
  display: flex;
}
.wc-shop-pagination .woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  color: #c8c4bc;
  border: 1px solid rgba(201, 168, 76, 0.2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.wc-shop-pagination .woocommerce-pagination .page-numbers:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}
.wc-shop-pagination .woocommerce-pagination .page-numbers.current {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0a0a0a;
  font-weight: 600;
}
.wc-shop-pagination .woocommerce-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #888880;
  pointer-events: none;
}
.wc-shop-pagination .woocommerce-pagination .page-numbers.prev, .wc-shop-pagination .woocommerce-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wc-shop-cta {
  padding: 100px 0;
  background: #111;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}
.wc-shop-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(181, 39, 26, 0.07), transparent 70%);
  pointer-events: none;
}
.wc-shop-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .wc-shop-cta__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
}
.wc-shop-cta__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  color: #f5f0e8;
  margin-bottom: 16px;
}
.wc-shop-cta__title em {
  font-style: italic;
  color: #c9a84c;
}
.wc-shop-cta__desc {
  font-size: 15px;
  color: #c8c4bc;
  line-height: 1.75;
  max-width: 440px;
}
.wc-shop-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .wc-shop-cta__action {
    align-items: center;
  }
}
.wc-shop-cta__note {
  font-size: 11px;
  color: #888880;
  letter-spacing: 0.06em;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid #c9a84c;
  color: #c8c4bc;
  font-size: 14px;
  padding: 16px 24px;
  margin-bottom: 24px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  content: "✦";
  color: #c9a84c;
  font-size: 14px;
  flex-shrink: 0;
}
.woocommerce-message a.button,
.woocommerce-message a,
.woocommerce-error a.button,
.woocommerce-error a,
.woocommerce-info a.button,
.woocommerce-info a {
  color: #c9a84c;
  text-decoration: none;
  font-weight: 500;
}
.woocommerce-message a.button:hover,
.woocommerce-message a:hover,
.woocommerce-error a.button:hover,
.woocommerce-error a:hover,
.woocommerce-info a.button:hover,
.woocommerce-info a:hover {
  color: #e8c87a;
}

.woocommerce-error {
  border-left-color: #b5271a;
}
.woocommerce-error::before {
  content: "✕";
  color: #b5271a;
}

.woocommerce-message {
  border-left-color: #22c55e;
}
.woocommerce-message::before {
  content: "✓";
  color: #22c55e;
}

@media (max-width: 900px) {
  .wc-shop-hero {
    padding: 120px 0 70px;
  }
  .wc-shop-body {
    padding: 60px 0 80px;
  }
  .wc-shop-cta {
    padding: 70px 0;
  }
}
.wc-page--checkout .wc-checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 48px;
}
.wc-page--checkout .wc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888880;
}
.wc-page--checkout .wc-step--active {
  color: #c9a84c;
}
.wc-page--checkout .wc-step--done {
  color: #22c55e;
}
.wc-page--checkout .wc-step .wc-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.wc-page--checkout .wc-step--active .wc-step-num {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0a0a0a;
}
.wc-page--checkout .wc-step--done .wc-step-num {
  background: #22c55e;
  border-color: #22c55e;
  color: #f5f0e8;
}
.wc-page--checkout .wc-step-sep {
  width: 60px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin: 0 16px;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .wc-page--checkout .wc-step-sep {
    width: 24px;
    margin: 0 8px;
  }
}
.wc-page--checkout .wc-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding-bottom: 120px;
  align-items: start;
}
@media (max-width: 960px) {
  .wc-page--checkout .wc-checkout-layout {
    grid-template-columns: 1fr;
  }
}
.wc-page--checkout .wc-checkout-section {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 36px;
  margin-bottom: 24px;
}
.wc-page--checkout .wc-checkout-section--payment {
  margin-bottom: 0;
}
.wc-page--checkout .wc-checkout-sidebar {
  position: sticky;
  top: calc(40px + 80px);
}
@media (max-width: 960px) {
  .wc-page--checkout .wc-checkout-sidebar {
    position: static;
  }
}
.wc-page--checkout .wc-checkout-summary {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 36px;
  margin-bottom: 16px;
}
.wc-page--checkout .wc-summary-items {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: 0;
  margin-bottom: 0;
}
.wc-page--checkout .wc-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 14px;
  color: #c8c4bc;
}
.wc-page--checkout .wc-summary-item .wc-summary-item-name {
  flex: 1;
  line-height: 1.4;
}
.wc-page--checkout .wc-summary-item .wc-summary-qty {
  color: #888880;
  font-size: 12px;
}
.wc-page--checkout .wc-summary-item .wc-summary-item-price {
  font-family: "Cormorant Garamond", serif;
  color: #c9a84c;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
}
.wc-page--checkout .wc-summary-totals {
  border-top: none;
}
.wc-page--checkout .wc-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 13px;
  color: #c8c4bc;
}
.wc-page--checkout .wc-summary-row--discount {
  color: #22c55e;
}
.wc-page--checkout .wc-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888880;
}
.wc-page--checkout .wc-summary-total .wc-summary-total-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: #c9a84c;
  letter-spacing: 0;
  text-transform: none;
}
.wc-page--checkout #payment {
  background: transparent !important;
  border: none !important;
}
.wc-page--checkout #payment ul.payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  border: none !important;
}
.wc-page--checkout #payment ul.payment_methods li {
  background: transparent !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  padding: 16px !important;
  margin-bottom: 8px !important;
  transition: border-color 0.2s;
}
.wc-page--checkout #payment ul.payment_methods li:last-child {
  margin-bottom: 0;
}
.wc-page--checkout #payment ul.payment_methods li input[type=radio] {
  width: auto !important;
  margin-right: 10px !important;
  accent-color: #c9a84c;
}
.wc-page--checkout #payment ul.payment_methods li label {
  font-size: 14px !important;
  color: #f5f0e8 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
  display: inline !important;
}
.wc-page--checkout #payment ul.payment_methods li:has(input:checked) {
  border-color: #c9a84c !important;
}
.wc-page--checkout #payment .payment_box {
  background: rgba(201, 168, 76, 0.05) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  color: #c8c4bc !important;
  padding: 16px !important;
  margin: 0 0 24px !important;
  font-size: 13px !important;
}
.wc-page--checkout #payment #place_order {
  width: 100% !important;
  font-size: 14px !important;
  padding: 20px !important;
}
.wc-page--checkout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 20px;
}
.wc-page--checkout .woocommerce-terms-and-conditions-wrapper label {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 12px !important;
  color: #c8c4bc !important;
}
.wc-page--checkout .woocommerce-terms-and-conditions-wrapper a {
  color: #c9a84c !important;
}
.wc-page--checkout .wc-checkout-login-notice {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 36px;
  margin-bottom: 32px;
}

.wc-page--account .wc-account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 40px 0 80px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .wc-page--account .wc-account-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.wc-page--account .wc-account-nav {
  position: sticky;
  top: calc(40px + 80px);
}
@media (max-width: 800px) {
  .wc-page--account .wc-account-nav {
    position: static;
  }
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 13px;
  color: #c8c4bc;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #c9a84c;
  transform: scaleY(0);
  transition: transform 0.2s;
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li a:hover {
  background: rgba(201, 168, 76, 0.04);
  color: #f5f0e8;
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li a:hover::before {
  transform: scaleY(1);
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li.is-active a {
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.06);
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li.is-active a::before {
  transform: scaleY(1);
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #888880;
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  color: #b5271a;
}
.wc-page--account .wc-account-nav .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  background: #b5271a;
}
.wc-page--account .wc-account-content {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px;
}
.wc-page--account .wc-account-content a {
  text-decoration: none;
  color: #c9a84c;
}
.wc-page--account .wc-account-content a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .wc-page--account .wc-account-content {
    padding: 24px;
  }
}
.wc-page--account .wc-account-content .woocommerce-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content h2,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 20px;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content h2 {
  font-size: 28px;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content h2 em {
  font-style: italic;
  color: #c9a84c;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content h3 {
  font-size: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content p {
  font-size: 14px;
  color: #c8c4bc;
  line-height: 1.7;
  margin-bottom: 16px;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content a {
  color: #c9a84c;
  text-decoration: none;
  transition: color 0.2s;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content a:hover {
  color: #e8c87a;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-orders-table,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-orders-table thead th,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-table thead th {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888880;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  font-weight: 400;
  text-align: left;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-orders-table tbody td,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-table tbody td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  color: #c8c4bc;
  vertical-align: middle;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-table .woocommerce-orders-table__cell-order-number a,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-table .woocommerce-orders-table__cell-order-actions a {
  color: #c9a84c;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-orders-table .wc-order-list-item__last-column,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-orders-table tfoot td,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-table .wc-order-list-item__last-column,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content table.woocommerce-table tfoot td {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #c9a84c;
  font-weight: 300;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content .woocommerce-order-details,
.wc-page--account .wc-account-content .woocommerce-MyAccount-content .woocommerce-customer-details {
  margin-bottom: 40px;
}
.wc-page--account .wc-account-content .woocommerce-MyAccount-content .woocommerce-table--order-downloads td a {
  color: #c9a84c;
}
.wc-page--account .wc-account-content .edit-account fieldset {
  border: none;
}

.wc-block-checkout .wc-block-checkout__form label {
  color: #0a0a0a;
}
.wc-block-checkout .wc-block-components-checkbox label {
  color: #f5f0e8;
}
.wc-block-checkout .wc-block-components-checkbox__label a {
  color: #c9a84c;
}
.wc-block-checkout .wc-block-components-totals-coupon__content label {
  color: #0a0a0a;
}
.wc-block-checkout .wc-block-components-totals-coupon__content .wc-block-components-button {
  width: auto;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wc-block-checkout .wc-block-components-totals-coupon__content .wc-block-components-button:hover {
  background: #e8c87a;
  transform: translateY(-1px);
}
.wc-block-checkout .wc-block-checkout__actions_row .wc-block-components-button {
  width: 70%;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wc-block-checkout .wc-block-checkout__actions_row .wc-block-components-button:hover {
  background: #e8c87a;
  transform: translateY(-1px);
}

.wc-page--cart .wc-page-hero {
  position: relative;
  padding: 120px 0 40px;
  background: #111;
  overflow: hidden;
}
.wc-page--cart .wc-page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 70% 50%, rgba(181, 39, 26, 0.09) 0%, transparent 65%), radial-gradient(ellipse 45% 55% at 15% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%), linear-gradient(160deg, #0a0a0a, #0f0a08, #0a0505);
  pointer-events: none;
}
.wc-page--cart .wc-page-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 25% 50%, black 20%, transparent 75%);
  pointer-events: none;
}
.wc-page--cart .wc-page-hero__content {
  position: relative;
  z-index: 1;
}
.wc-page--cart .wc-page-hero__sub {
  font-size: 14px;
  color: #888880;
  letter-spacing: 0.06em;
  margin-top: 10px;
}
.wc-page--cart .wc-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #f5f0e8;
  margin-bottom: 0;
}
.wc-page--cart .wc-page-title em {
  font-style: italic;
  color: #c9a84c;
}

.wc-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 40px 0 120px;
  align-items: start;
}
@media (max-width: 1000px) {
  .wc-cart-layout {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }
}
@media (max-width: 800px) {
  .wc-cart-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 80px;
  }
}

.wc-cart-main {
  min-width: 0;
}

.wc-cart-header {
  display: grid;
  grid-template-columns: 1fr 100px 100px 100px 40px;
  gap: 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 0;
}
.wc-cart-header span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888880;
}
.wc-cart-header .wc-cart-col--product {
  grid-column: 1;
}
.wc-cart-header .wc-cart-col--price {
  text-align: center;
}
.wc-cart-header .wc-cart-col--qty {
  text-align: center;
}
.wc-cart-header .wc-cart-col--total {
  text-align: right;
}
.wc-cart-header .wc-cart-col--remove {
  text-align: center;
}
@media (max-width: 600px) {
  .wc-cart-header {
    display: none;
  }
}

.wc-cart-items {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.wc-cart-item {
  display: grid;
  grid-template-columns: 1fr 100px 100px 100px 40px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: background 0.2s;
}
.wc-cart-item:last-child {
  border-bottom: none;
}
.wc-cart-item:hover {
  background: rgba(201, 168, 76, 0.02);
}
.wc-cart-item .wc-cart-col--product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.wc-cart-item .wc-cart-item__thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
}
.wc-cart-item .wc-cart-item__thumb a {
  display: block;
}
.wc-cart-item .wc-cart-item__thumb img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: block;
  background: #161616;
  transition: opacity 0.2s;
}
.wc-cart-item .wc-cart-item__thumb img:hover {
  opacity: 0.85;
}
.wc-cart-item .wc-cart-item__info {
  min-width: 0;
}
.wc-cart-item .wc-cart-item__name {
  font-size: 15px;
  font-weight: 500;
  color: #f5f0e8;
  line-height: 1.3;
  margin-bottom: 4px;
}
.wc-cart-item .wc-cart-item__name a {
  color: #f5f0e8;
  text-decoration: none;
  transition: color 0.2s;
}
.wc-cart-item .wc-cart-item__name a:hover {
  color: #c9a84c;
}
.wc-cart-item .wc-item-meta,
.wc-cart-item dl.variation {
  margin: 6px 0 0;
  font-size: 12px;
  color: #888880;
}
.wc-cart-item .wc-item-meta dt, .wc-cart-item .wc-item-meta dd,
.wc-cart-item dl.variation dt,
.wc-cart-item dl.variation dd {
  display: inline;
  margin: 0;
}
.wc-cart-item .wc-item-meta dt::after,
.wc-cart-item dl.variation dt::after {
  content: ": ";
}
.wc-cart-item .wc-item-meta dd,
.wc-cart-item dl.variation dd {
  color: #c8c4bc;
}
.wc-cart-item .wc-cart-col--price {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #c8c4bc;
  font-weight: 300;
}
.wc-cart-item .wc-cart-col--price .woocommerce-Price-amount {
  color: #c8c4bc;
}
.wc-cart-item .wc-cart-col--qty {
  display: flex;
  justify-content: center;
}
.wc-cart-item .wc-cart-col--qty .quantity {
  display: flex;
  align-items: center;
}
.wc-cart-item .wc-cart-col--qty input.qty {
  width: 60px;
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 8px 4px;
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.wc-cart-item .wc-cart-col--qty input.qty::-webkit-outer-spin-button, .wc-cart-item .wc-cart-col--qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.wc-cart-item .wc-cart-col--qty input.qty:focus {
  border-color: #c9a84c;
}
.wc-cart-item .wc-cart-col--total {
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1;
}
.wc-cart-item .wc-cart-col--total .woocommerce-Price-amount {
  color: #f5f0e8;
}
.wc-cart-item .wc-cart-col--total .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 14px;
  color: #c9a84c;
  margin-right: 2px;
}
.wc-cart-item .wc-cart-col--remove {
  display: flex;
  justify-content: center;
}
.wc-cart-item .wc-remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(181, 39, 26, 0.3);
  color: #888880;
  text-decoration: none;
  font-size: 12px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.wc-cart-item .wc-remove-item:hover {
  border-color: #b5271a;
  color: #b5271a;
  background: rgba(181, 39, 26, 0.06);
}
.wc-cart-item .wc-cart-mobile-label {
  display: none;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888880;
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .wc-cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .wc-cart-item .wc-cart-col--product {
    flex-direction: row;
  }
  .wc-cart-item .wc-cart-col--price,
  .wc-cart-item .wc-cart-col--qty,
  .wc-cart-item .wc-cart-col--total {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .wc-cart-item .wc-cart-mobile-label {
    display: block;
  }
  .wc-cart-item .wc-cart-col--remove {
    justify-content: flex-start;
  }
  .wc-cart-item .wc-cart-col--qty {
    justify-content: flex-start;
  }
}

.wc-cart-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 0;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .wc-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.wc-coupon {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wc-coupon__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8c4bc;
}
.wc-coupon__row {
  display: flex;
  gap: 0;
}
.wc-coupon__input {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  color: #f5f0e8;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 200px;
}
.wc-coupon__input::placeholder {
  color: rgba(136, 136, 128, 0.5);
}
.wc-coupon__input:focus {
  border-color: #c9a84c;
}
@media (max-width: 600px) {
  .wc-coupon__input {
    width: 100%;
    flex: 1;
  }
}
.wc-coupon__btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #c8c4bc;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.wc-coupon__btn:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.06);
}

.wc-update-cart {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #888880;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.wc-update-cart:hover:not([disabled]) {
  border-color: #c9a84c;
  color: #c8c4bc;
}
.wc-update-cart[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.wc-cart-checkout-mobile {
  display: none;
  width: 100%;
  text-align: center;
  padding: 16px;
  margin-top: 24px;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.wc-cart-checkout-mobile:hover {
  background: #e8c87a;
}
@media (max-width: 800px) {
  .wc-cart-checkout-mobile {
    display: block;
  }
}

.wc-cart-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 800px) {
  .wc-cart-sidebar {
    position: static;
  }
}

.wc-cart-totals-wrap {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}
.wc-cart-totals-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, rgba(201, 168, 76, 0.3), transparent);
}

.wc-sidebar-header {
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.wc-sidebar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  color: #f5f0e8;
}
.wc-sidebar-title em {
  font-style: italic;
  color: #c9a84c;
}

.cart_totals h2 {
  padding-left: 24px;
}
.cart_totals table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.cart_totals table.shop_table tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.cart_totals table.shop_table tr:last-child {
  border-bottom: none;
}
.cart_totals table.shop_table th {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888880;
  font-weight: 400;
  padding: 16px 24px;
  text-align: left;
  width: 40%;
}
.cart_totals table.shop_table td {
  font-size: 15px;
  color: #c8c4bc;
  padding: 16px 24px;
  text-align: right;
}
.cart_totals table.shop_table td .woocommerce-Price-amount {
  color: #c8c4bc;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}
.cart_totals table.shop_table tr.order-total th {
  font-size: 12px;
  color: #888880;
}
.cart_totals table.shop_table tr.order-total td .woocommerce-Price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1;
}
.cart_totals table.shop_table tr.order-total td .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 16px;
  color: #c9a84c;
  margin-right: 2px;
}
.cart_totals table.shop_table tr.cart-discount td, .cart_totals table.shop_table tr.cart-discount th {
  color: #22c55e;
}
.cart_totals table.shop_table tr.cart-discount .woocommerce-Price-amount {
  color: #22c55e;
}
.cart_totals table.shop_table tr.cart-discount a.woocommerce-remove-coupon {
  font-size: 11px;
  color: #888880;
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.2s;
}
.cart_totals table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover {
  color: #b5271a;
}
.cart_totals table.shop_table tr.shipping {
  display: none;
}
.cart_totals .wc-proceed-to-checkout {
  padding: 20px 24px;
}
.cart_totals .wc-proceed-to-checkout .checkout-button,
.cart_totals .wc-proceed-to-checkout a.checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cart_totals .wc-proceed-to-checkout .checkout-button::before,
.cart_totals .wc-proceed-to-checkout a.checkout-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8c87a;
  transform: translateX(-101%);
  transition: transform 0.3s;
}
.cart_totals .wc-proceed-to-checkout .checkout-button:hover,
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.25);
}
.cart_totals .wc-proceed-to-checkout .checkout-button:hover::before,
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover::before {
  transform: translateX(0);
}
.cart_totals .wc-proceed-to-checkout .checkout-button span,
.cart_totals .wc-proceed-to-checkout a.checkout-button span {
  position: relative;
  z-index: 1;
}

.wc-cart-trust {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wc-cart-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #c8c4bc;
  line-height: 1.4;
}
.wc-cart-trust__icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #c9a84c;
}

.woocommerce-cart .woocommerce-info {
  display: none !important;
}

.wc-cart-empty {
  padding: 80px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.wc-cart-empty__message {
  text-align: center;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wc-cart-empty__icon {
  font-size: 64px;
  margin-bottom: 28px;
  display: block;
  opacity: 0.35;
  filter: grayscale(1);
  line-height: 1;
}
.wc-cart-empty__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  color: #f5f0e8;
  margin-bottom: 16px;
}
.wc-cart-empty__title em {
  font-style: italic;
  color: #c9a84c;
}
.wc-cart-empty__desc {
  font-size: 16px;
  color: #c8c4bc;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}
.wc-cart-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.wc-cart-empty__cta .btn-arr {
  font-size: 18px;
  transition: transform 0.2s;
}
.wc-cart-empty__cta:hover .btn-arr {
  transform: translateX(4px);
}
.wc-cart-empty__suggestions {
  width: 100%;
  max-width: 900px;
}
.wc-cart-empty__suggestions .s-lbl {
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .wc-cart-empty {
    padding: 60px 0 80px;
    gap: 56px;
  }
}

.wc-empty-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .wc-empty-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .wc-empty-products {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}

.wc-empty-product-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.wc-empty-product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #c9a84c, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.wc-empty-product-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
}
.wc-empty-product-card:hover::after {
  transform: scaleX(1);
}
.wc-empty-product-card__img {
  overflow: hidden;
}
.wc-empty-product-card__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #161616;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.4s, opacity 0.3s;
}
.wc-empty-product-card:hover .wc-empty-product-card__img img {
  transform: scale(1.03);
  opacity: 0.9;
}
.wc-empty-product-card__body {
  padding: 22px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.wc-empty-product-card__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: #f5f0e8;
  line-height: 1.25;
}
.wc-empty-product-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  margin-top: 4px;
}
.wc-empty-product-card__price .woocommerce-Price-amount {
  color: #f5f0e8;
}
.wc-empty-product-card__price .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 13px;
  color: #c9a84c;
  margin-right: 2px;
}
.wc-empty-product-card__price del {
  font-size: 14px;
  color: #888880;
  text-decoration: line-through;
  margin-right: 6px;
}
.wc-empty-product-card__price del .woocommerce-Price-amount {
  color: #888880;
}
.wc-empty-product-card__price del .woocommerce-Price-currencySymbol {
  font-size: 11px;
  color: #888880;
}
.wc-empty-product-card__price ins {
  text-decoration: none;
}
.wc-empty-product-card__desc {
  font-size: 12px;
  color: #888880;
  line-height: 1.55;
  margin-top: 2px;
}
.wc-empty-product-card__footer {
  padding: 14px 24px 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: auto;
}
.wc-empty-product-card__cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  transition: color 0.2s;
}
.wc-empty-product-card:hover .wc-empty-product-card__cta {
  color: #e8c87a;
}

.woocommerce-message {
  background: #111;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-left: 3px solid #22c55e;
  color: #c8c4bc;
  font-size: 14px;
  padding: 14px 20px;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.woocommerce-message::before {
  content: "✓";
  color: #22c55e;
  flex-shrink: 0;
}
.woocommerce-message a {
  color: #c9a84c;
  text-decoration: none;
}

.woocommerce-error {
  background: #111;
  border: 1px solid rgba(181, 39, 26, 0.3);
  border-left: 3px solid #b5271a;
  color: #c8c4bc;
  font-size: 14px;
  padding: 14px 20px;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.woocommerce-error::before {
  content: "✕";
  color: #b5271a;
  flex-shrink: 0;
}

/*# sourceMappingURL=style.css.map */
