/* ========== DESIGN TOKENS ========== */
:root {
  /* Colors — Dark IoT Theme (Glassmorphism + Dark Mode) */
  --bg-deep: #020203;
  --bg-base: #050506;
  --bg-elevated: #0a0a0c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.1);

  --foreground: #EDEDEF;
  --foreground-muted: #8A8F98;
  --foreground-subtle: #555960;

  --accent: #8B2252;
  --accent-light: #B83280;
  --accent-glow: rgba(139, 34, 82, 0.3);
  --accent-gradient: linear-gradient(135deg, #8B2252 0%, #B83280 50%, #D53F8C 100%);

  --green: #34D399;
  --green-glow: rgba(52, 211, 153, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --blur: 20px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--easing);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --container-pad-mobile: 18px;
  --section-space: 120px;
  --section-space-tablet: 88px;
  --hero-space-top: 120px;
  --hero-space-bottom: 80px;
  --hero-space-top-mobile: 100px;
  --hero-space-bottom-mobile: 60px;
  --action-button-min: 260px;
  --store-badge-min: 310px;
  --card-pad: 32px;
  --card-pad-mobile: 24px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.toss-smart-static,
.toss-smart-static body {
  font-family: var(--font-body);
}

.toss-smart-static h1,
.toss-smart-static h2,
.toss-smart-static h3,
.toss-smart-static h4,
.toss-smart-static h5,
.toss-smart-static h6 {
  font-family: var(--font-heading);
  text-align: inherit;
}

.toss-smart-static p,
.toss-smart-static li,
.toss-smart-static a,
.toss-smart-static span {
  overflow-wrap: anywhere;
}

.toss-smart-static img,
.toss-smart-static video,
.toss-smart-static iframe,
.toss-smart-static .btn,
.toss-smart-static .store-badge,
.toss-smart-static .store-badge-large {
  max-width: 100%;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  background: rgba(139, 34, 82, 0.15);
  border: 1px solid rgba(139, 34, 82, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--foreground);
  margin-bottom: 16px;
  line-height: 1.08;
  text-wrap: balance;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  max-width: 580px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  font-size: 0.85rem;
  padding: 8px 20px;
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-glass {
  background: var(--glass);
  color: var(--foreground);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  transition: all var(--transition);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 6, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--foreground);
}

.navbar-logo img {
  border-radius: 8px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground-muted);
  transition: color var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar-links a:hover {
  color: var(--foreground);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.navbar-toggle:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header {
  position: relative;
  z-index: 1000;
}

.navbar-unified .container {
  max-width: 1360px;
}

.navbar-shell {
  padding: 14px 22px;
}

.navbar-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.navbar-main .navbar-logo {
  order: 1;
  justify-self: start;
  flex-shrink: 0;
}

.navbar-main .navbar-links {
  order: 2;
  justify-self: center;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.navbar-main .navbar-links li {
  flex: 0 0 auto;
}

.navbar-main .navbar-actions {
  order: 3;
  justify-self: end;
  flex-shrink: 0;
}

.navbar-main .navbar-links a {
  white-space: nowrap;
}

.footer-unified {
  padding: 96px 0 32px;
}

.footer-panel {
  padding: clamp(28px, 4vw, 48px);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}

.footer-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-align: left;
}

.footer-contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px 32px;
  width: min(100%, 460px);
  text-align: left;
}

.footer-contact-list li,
.footer-col-live,
.footer-bottom-unified {
  text-align: left;
}

.footer-contact-list li h3,
.footer-col-live h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--foreground);
}

.footer-contact-list a,
.footer-contact-list p,
.footer-col-live a,
.footer-col-live p {
  color: var(--foreground-muted);
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
}

.footer-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 32px 0;
}

.footer-grid-live {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-col-live ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-col-live a {
  transition: color var(--transition);
}

.footer-col-live a:hover {
  color: var(--foreground);
}

.footer-social-link-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icon-live {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground-muted);
  flex-shrink: 0;
}

.footer-social-icon-live svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-newsletter {
  max-width: 420px;
}

.footer-newsletter p {
  margin-bottom: 16px;
  max-width: 18ch;
}

.footer-bottom-unified {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--foreground-subtle);
}

.footer-bottom-unified .footer-legal {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--hero-space-top) 0 var(--hero-space-bottom);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: min(600px, 50vw);
  height: min(600px, 50vw);
  background: radial-gradient(circle, #8B2252 0%, #6B1740 100%);
  left: -10%;
  top: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: min(500px, 40vw);
  height: min(500px, 40vw);
  background: radial-gradient(circle, #B83280 0%, #8B2252 100%);
  right: -5%;
  top: 30%;
  animation-delay: -7s;
}

.blob-3 {
  width: min(400px, 35vw);
  height: min(400px, 35vw);
  background: radial-gradient(circle, #34D399 0%, #059669 100%);
  left: 30%;
  bottom: 0;
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -80px) scale(1.1); }
  50% { transform: translate(-40px, 60px) scale(0.95); }
  75% { transform: translate(80px, 40px) scale(1.05); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-content {
  animation: fadeSlideIn 0.8s ease-out forwards;
  max-width: 760px;
  justify-self: start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--green-glow);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--foreground);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--foreground-muted);
  max-width: 640px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--foreground-muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  animation: fadeSlideIn 0.8s 0.2s ease-out forwards;
  opacity: 0;
  width: 100%;
}

.hero-card {
  position: relative;
  width: min(100%, 700px);
  margin-left: auto;
  padding: 36px 36px 28px;
  text-align: center;
  overflow: hidden;
}

.hero-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-slider-stage {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.55s var(--easing), transform 0.55s var(--easing);
  text-decoration: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.hero-product-img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  transition: transform 0.6s var(--easing);
}

.hero-slide:hover .hero-product-img {
  transform: scale(1.05) translateY(-8px);
}

.hero-slide-lock .hero-product-img {
  max-height: 420px;
  width: auto;
}

.hero-slide-meta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(18px);
  color: var(--foreground);
}

.hero-slide-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foreground-subtle);
}

.hero-slider-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: width 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.hero-slider-dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, rgba(255, 103, 180, 0.95), rgba(194, 45, 133, 0.95));
  transform: translateY(-1px);
}

.hero-card-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.hero-content .hero-badge,
.hero-content .hero-title,
.hero-content .hero-description,
.hero-content .hero-pills,
.hero-content .hero-cta {
  margin-left: 0;
  margin-right: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground-subtle);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FEATURES BENTO ========== */
.features {
  padding: var(--section-space) 0;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}

.bento-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  text-align: left;
  align-items: flex-start;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 440px;
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(139, 34, 82, 0.15);
  color: var(--accent-light);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.bento-img {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 55%;
  opacity: 0.15;
  filter: grayscale(0.5);
  pointer-events: none;
}

.bento-img-sm {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 80px;
  opacity: 0.2;
  pointer-events: none;
}

.bento-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
}

.bento-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--foreground);
  text-align: left;
}

.bento-content p {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  line-height: 1.6;
  max-width: 400px;
  text-align: left;
}

.bento-card:not(.bento-large):not(.bento-wide) .bento-content {
  padding-right: 92px;
}

.bento-wide .bento-content {
  max-width: 560px;
}

.voice-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.voice-logos img {
  opacity: 0.6;
  transition: opacity var(--transition);
  border-radius: 6px;
}

.voice-logos img:hover {
  opacity: 1;
}

/* ========== VIDEO SHOWCASE ========== */
.video-showcase {
  padding: var(--section-space) 0;
  background: var(--bg-base);
}

.video-showcase .section-header {
  margin-bottom: 48px;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-elevated);
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(139, 34, 82, 0.85);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  box-shadow: 0 8px 32px var(--accent-glow);
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(184, 50, 128, 0.95);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.video-products-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.video-product-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  text-decoration: none;
}

.video-product-chip:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.video-product-chip img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}

.video-product-chip span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--foreground-muted);
}

.video-product-chip:hover span {
  color: var(--foreground);
}

/* ========== PRODUCTS ========== */
.products {
  padding: var(--section-space) 0;
  background: var(--bg-base);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-bell .product-img-wrap {
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.98), rgba(18, 18, 20, 0.94));
}

.product-img-wrap {
  position: relative;
  padding: 32px 20px;
  background: linear-gradient(135deg, rgba(139, 34, 82, 0.08), rgba(184, 50, 128, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
}

.product-img-wrap img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.5s var(--easing);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.1) translateY(-6px);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--foreground);
}

.product-info p {
  font-size: 0.85rem;
  color: var(--foreground-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(139, 34, 82, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(139, 34, 82, 0.2);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  /* color: var(--green); */
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 24px;
}

.contact-card,
.contact-map-card {
  display: grid;
  gap: 18px;
  padding: var(--content-card-pad);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(139, 34, 82, 0.25);
  background: rgba(139, 34, 82, 0.15);
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card h2,
.contact-map-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  text-align: left;
}

.contact-card p,
.contact-map-card p {
  margin: 0;
  color: var(--foreground-muted);
  text-align: left;
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--foreground);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-map-header {
  display: grid;
  gap: 12px;
}

.contact-map-frame {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ========== SPOTLIGHT ========== */
.spotlight {
  padding: var(--section-space) 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.spotlight-card {
  padding: 40px;
  text-align: center;
  overflow: hidden;
}

.spotlight-card img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--easing);
}

.spotlight-card:hover img {
  transform: scale(1.03);
}

.spotlight-card-plug {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(24px, 4vw, 48px);
  background:
    radial-gradient(circle at top left, rgba(184, 50, 128, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.spotlight-card-plug img {
  width: min(100%, 460px);
  max-width: 460px;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.spotlight-content-plug {
  max-width: 540px;
  justify-self: start;
}

.spotlight-content-plug .section-title,
.spotlight-content-plug .section-badge,
.spotlight-content-plug .spotlight-desc,
.spotlight-content-plug .spotlight-price {
  text-align: left;
}

.spotlight-content-plug .section-title {
  max-width: 12ch;
  margin-bottom: 20px;
}

.spotlight-desc {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.spotlight-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.price-label {
  font-size: 0.9rem;
  color: var(--foreground-subtle);
}

/* ========== TOTAL CONTROL ========== */
.control {
  padding: var(--section-space) 0;
  background: var(--bg-base);
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.control-desc {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.control-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.control-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.control-feature > div:last-child {
  text-align: left;
}

.control-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(139, 34, 82, 0.15);
  color: var(--accent-light);
}

.control-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--foreground);
}

.control-feature p {
  font-size: 0.9rem;
  color: var(--foreground-muted);
}

.control-visual {
  position: relative;
}

.control-img-wrapper {
  position: relative;
}

.control-img-wrapper img {
  border-radius: var(--radius-xl);
  width: 100%;
}

.control-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}

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

.floating-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-sm);
  color: var(--green);
}

.floating-label {
  display: block;
  font-size: 0.75rem;
  color: var(--foreground-subtle);
}

.floating-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

/* ========== CTA ========== */
.cta-section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg .blob-1 {
  width: 500px;
  height: 500px;
  left: 20%;
  top: -20%;
  opacity: 0.3;
}

.cta-bg .blob-2 {
  width: 400px;
  height: 400px;
  right: 10%;
  bottom: -30%;
  opacity: 0.25;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--foreground-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-base);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .navbar-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 280px;
}

.footer-address {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--foreground-subtle);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--foreground-muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--foreground);
}

.footer-newsletter-desc {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--foreground-subtle);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--foreground-subtle);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--foreground-subtle);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--foreground-muted);
}

/* ========== ANIMATIONS ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.bento-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.bento-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.bento-grid [data-animate]:nth-child(3) { transition-delay: 0.15s; }
.bento-grid [data-animate]:nth-child(4) { transition-delay: 0.2s; }
.bento-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }

.products-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.products-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.products-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.products-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-card {
    margin-left: auto;
    margin-right: auto;
  }

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

  .spotlight-grid,
  .control-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .spotlight-card-plug {
    min-height: 0;
  }

  .spotlight-content-plug {
    max-width: 100%;
  }

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

  .bento-wide .bento-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-header,
  .video-showcase .section-header,
  .products .section-header,
  .control .section-header,
  .cta-content {
    text-align: center;
    justify-items: center;
  }

  .section-title,
  .section-desc,
  .control-desc,
  .cta-title,
  .cta-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .control-features {
    align-items: stretch;
  }

  .control-feature {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .control-feature h4,
  .control-feature p {
    text-align: left;
  }

  .video-products-row {
    justify-content: center;
    width: fit-content;
    max-width: 100%;
  }

  .hero-content {
    justify-self: center;
    width: 100%;
    text-align: center;
  }

  .hero-content .hero-badge,
  .hero-content .hero-title,
  .hero-content .hero-description,
  .hero-content .hero-pills,
  .hero-content .hero-cta {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-badge,
  .hero-pills,
  .hero-cta {
    justify-content: center;
  }

  .site-header,
  .navbar,
  .navbar-unified,
  .navbar-unified .container,
  .navbar-shell,
  .navbar-main {
    overflow: visible;
  }

  .navbar-shell {
    padding: 14px 16px;
    overflow: visible;
  }

  .navbar-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .navbar-main .navbar-logo {
    order: 1;
    grid-column: 1 / 2;
  }

  .navbar-main .navbar-actions {
    order: 2;
    grid-column: 2 / 3;
  }

  .navbar-main .navbar-links {
    order: 3;
    grid-column: 1 / -1;
  }

  .navbar-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 84vw);
    height: 100dvh;
    max-height: 100dvh;
    padding: 96px 24px 32px;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(22px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    z-index: 1205;
    border-left: 1px solid var(--glass-border);
    box-shadow: -24px 0 72px rgba(0, 0, 0, 0.42);
    border-radius: 0;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    overflow-y: auto;
  }

  .navbar-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-links a {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.35;
    padding: 12px 0;
    text-align: center;
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .cart-toggle {
    display: none;
  }

  .navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar-actions .btn {
    display: none;
  }

  .navbar-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-unified {
    padding-top: 80px;
  }

  .footer-panel {
    padding: 28px 20px;
  }

  .footer-top,
  .footer-bottom-unified {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-list,
  .footer-grid-live {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-bottom-unified .footer-legal {
    justify-content: flex-start;
  }

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

  .bento-large,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }

  .bento-card,
  .bento-content,
  .bento-content h3,
  .bento-content p {
    text-align: left;
  }

  .bento-card:not(.bento-large):not(.bento-wide) .bento-content {
    padding-right: 84px;
  }

  .video-showcase,
  .products,
  .spotlight,
  .control,
  .cta-section,
  .features {
    padding: var(--section-space-tablet) 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-desc {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .spotlight-content,
  .spotlight-content-plug,
  .spotlight-content-plug .section-title,
  .spotlight-content-plug .section-badge,
  .spotlight-content-plug .spotlight-desc,
  .spotlight-content-plug .spotlight-price {
    align-items: center;
    text-align: center;
  }

  .spotlight-price {
    justify-content: center;
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .control-floating-card {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--container-pad-mobile);
  }

  .navbar-logo {
    font-size: 1rem;
    gap: 8px;
  }

  .navbar-logo img {
    width: 36px;
    height: 36px;
  }

  .footer-panel {
    padding: 24px 16px;
  }

  .hero {
    padding: var(--hero-space-top-mobile) 0 var(--hero-space-bottom-mobile);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-slider-stage {
    min-height: 360px;
  }

  .hero-slide-lock .hero-product-img {
    max-height: 300px;
  }

  .hero-slide-meta {
    padding: 12px 14px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .video-showcase .section-title {
    font-size: 1.95rem;
  }

  .video-showcase .section-desc {
    max-width: 26rem;
  }

  .bento-card {
    min-height: 240px;
    padding: 24px;
  }

  .bento-card:not(.bento-large):not(.bento-wide) .bento-content {
    padding-right: 72px;
  }

  .bento-img-sm {
    width: 68px;
    right: 12px;
    bottom: 12px;
  }

  .voice-logos img {
    width: 24px;
    height: 24px;
  }

  .spotlight-price .price-tag {
    font-size: 2.2rem;
  }

  .spotlight-card-plug {
    padding: 24px;
  }

  .spotlight-card-plug img {
    width: min(100%, 320px);
  }

  .newsletter-form {
    flex-direction: column;
  }
}

body.mini-cart-open {
  overflow: hidden;
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--foreground);
  cursor: pointer;
  transition: all var(--transition);
  font: inherit;
}

.cart-toggle:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.cart-toggle-icon {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 3, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 1190;
}

.mini-cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 12, 0.98);
  border-left: 1px solid var(--glass-border);
  box-shadow: -24px 0 72px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 1200;
}

.mini-cart-drawer.is-open {
  transform: translateX(0);
}

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--glass-border);
}

.mini-cart-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.mini-cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 28px;
}

.mini-cart-body .woocommerce-mini-cart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-cart-body .woocommerce-mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.mini-cart-body .woocommerce-mini-cart-item a {
  color: var(--foreground);
}

.mini-cart-body .woocommerce-mini-cart-item > a:not(.remove) {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.35;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  padding-right: 40px;
  grid-column: 1 / -1;
}

.mini-cart-body .woocommerce-mini-cart-item img {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.mini-cart-body .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.15rem;
  color: var(--foreground-subtle);
}

.mini-cart-body .quantity,
.mini-cart-body .woocommerce-mini-cart__total {
  display: block;
  grid-column: 1 / -1;
  color: var(--foreground-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: -2px;
  padding-left: 104px;
}

.mini-cart-body .woocommerce-mini-cart__total {
  margin-top: 8px;
  padding-top: 18px;
  padding-left: 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 1.05rem;
}

.mini-cart-body .woocommerce-mini-cart__total strong {
  color: var(--foreground);
}

.mini-cart-body .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.mini-cart-body .woocommerce-mini-cart__buttons .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--foreground);
  font-size: 1.05rem;
  line-height: 1;
  text-align: center;
}

.mini-cart-body .woocommerce-mini-cart__buttons .checkout {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.mini-cart-body .woocommerce-mini-cart__empty-message {
  color: var(--foreground-muted);
}

@media (max-width: 480px) {
  .cart-toggle {
    min-height: 40px;
    padding: 0 14px;
  }

  .mini-cart-header,
  .mini-cart-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mini-cart-body .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr;
  }

  .mini-cart-body .woocommerce-mini-cart-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .mini-cart-body .woocommerce-mini-cart-item img {
    width: 72px;
    height: 72px;
  }

  .mini-cart-body .woocommerce-mini-cart-item > a:not(.remove) {
    gap: 14px;
  }

  .mini-cart-body .quantity,
  .mini-cart-body .woocommerce-mini-cart__total {
    padding-left: 88px;
  }
}

.content-page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--hero-space-top) + 20px) 0 44px;
  text-align: center;
}

.content-page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0) 0%, rgba(5, 5, 6, 0.92) 78%, #050506 100%);
  pointer-events: none;
  z-index: 0;
}

.content-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.content-page-title {
  max-width: 14ch;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-align: center;
}

.content-page-desc {
  max-width: 760px;
  margin: 0 auto;
  color: var(--foreground-muted);
  font-size: 1.05rem;
  text-align: center;
}

.content-page-section {
  position: relative;
  z-index: 1;
  margin-top: -28px;
  padding: 28px 0 var(--section-space);
}

.content-page-shell {
  padding: clamp(24px, 3vw, 40px);
}

.content-page-body {
  max-width: 1120px;
  margin: 0 auto;
  --content-box-gap: 24px;
  --content-field-gap: 16px;
  --content-label-gap: 10px;
  --content-card-pad: 24px;
}

.content-page-body > :first-child {
  margin-top: 0;
}

.content-page-body > :last-child {
  margin-bottom: 0;
}

.content-page-body .woocommerce-notices-wrapper > *,
.content-page-body .woocommerce-message,
.content-page-body .woocommerce-info,
.content-page-body .woocommerce-error {
  margin: 0 0 20px;
  padding: 16px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
}

.content-page-body .woocommerce-message,
.content-page-body .woocommerce-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.content-page-body .woocommerce-message .button,
.content-page-body .woocommerce-info .button {
  order: 2;
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
}

.content-page-body .woocommerce-form-coupon-toggle,
.content-page-body .woocommerce-form-login-toggle {
  margin-bottom: 20px;
}

.content-page-body .checkout_coupon,
.content-page-body .woocommerce-form-login {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.content-page-body .checkout_coupon p {
  margin: 0;
}

.content-page-body .checkout_coupon .form-row-first,
.content-page-body .checkout_coupon .form-row-last {
  float: none;
  width: 100%;
  margin: 0;
}

.content-page-body .checkout_coupon button {
  width: 100%;
}

.content-page-body .woocommerce-cart-form,
.content-page-body .woocommerce-checkout,
.content-page-body .woocommerce-account,
.content-page-body .cart-collaterals {
  width: 100%;
  margin: 0;
}

.toss-smart-cart-page .content-page-body .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.toss-smart-checkout-page .content-page-body form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.content-page-body .woocommerce form .form-row {
  padding: 0;
  margin: 0 0 var(--content-field-gap);
}

.content-page-body .woocommerce form .form-row label,
.content-page-body .woocommerce-billing-fields label,
.content-page-body .woocommerce-shipping-fields label,
.content-page-body .woocommerce-additional-fields label {
  display: block;
  margin-bottom: var(--content-label-gap);
  text-align: left;
}

.content-page-body .woocommerce-checkout {
  display: block;
}

.content-page-body #customer_details {
  grid-column: 1;
}

.content-page-body #order_review_heading,
.content-page-body #order_review {
  grid-column: 2;
}

.content-page-body .woocommerce-NoticeGroup,
.content-page-body .woocommerce-NoticeGroup-checkout,
.content-page-body .woocommerce-error,
.content-page-body .woocommerce-info,
.content-page-body .woocommerce-message {
  grid-column: 1 / -1;
}

.content-page-body #customer_details,
.content-page-body #order_review,
.content-page-body .cart-collaterals .cart_totals,
.content-page-body .woocommerce-MyAccount-navigation,
.content-page-body .woocommerce-MyAccount-content {
  width: 100%;
  margin: 0;
  padding: var(--content-card-pad);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.content-page-body #customer_details,
.content-page-body #order_review,
.content-page-body .cart-collaterals .cart_totals,
.content-page-body .woocommerce-checkout-review-order,
.content-page-body .woocommerce-billing-fields,
.content-page-body .woocommerce-shipping-fields,
.content-page-body .woocommerce-additional-fields,
.content-page-body .woocommerce-account .woocommerce-MyAccount-content {
  display: grid;
  gap: var(--content-box-gap);
}

.content-page-body .woocommerce-billing-fields__field-wrapper,
.content-page-body .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--content-field-gap) 16px;
}

.content-page-body .woocommerce-billing-fields__field-wrapper .form-row,
.content-page-body .woocommerce-shipping-fields__field-wrapper .form-row {
  margin: 0;
  width: auto;
  float: none;
}

.content-page-body .woocommerce-billing-fields__field-wrapper .form-row-first,
.content-page-body .woocommerce-billing-fields__field-wrapper .form-row-last,
.content-page-body .woocommerce-shipping-fields__field-wrapper .form-row-first,
.content-page-body .woocommerce-shipping-fields__field-wrapper .form-row-last {
  width: auto !important;
  float: none !important;
  clear: none !important;
}

.content-page-body .woocommerce-billing-fields__field-wrapper .form-row-wide,
.content-page-body .woocommerce-billing-fields__field-wrapper .form-row.address-field,
.content-page-body .woocommerce-shipping-fields__field-wrapper .form-row-wide,
.content-page-body .woocommerce-shipping-fields__field-wrapper .form-row.address-field {
  grid-column: 1 / -1;
}

.content-page-body .woocommerce-additional-fields {
  margin-top: var(--content-box-gap);
}

.content-page-body .woocommerce-additional-fields h3,
.content-page-body .woocommerce-billing-fields h3,
.content-page-body .woocommerce-shipping-fields h3 {
  margin: 0;
}

.content-page-body #order_review_heading {
  margin: 0;
  align-self: end;
  text-align: left;
}

.content-page-body #order_review {
  position: sticky;
  top: 112px;
  align-self: start;
}

.content-page-body .woocommerce-cart-form {
  margin-bottom: 24px;
}

.content-page-body .cart-collaterals {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: sticky;
  top: 112px;
  align-self: start;
}

.toss-smart-cart-page .content-page-body .woocommerce-cart-form {
  grid-column: 1;
}

.toss-smart-cart-page .content-page-body .cart-collaterals {
  grid-column: 2;
}

.content-page-body .cart-collaterals .cart_totals {
  display: grid;
  gap: var(--content-box-gap);
}

.content-page-body .shop_table,
.content-page-body .woocommerce table.shop_table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.content-page-body .shop_table th,
.content-page-body .shop_table td,
.content-page-body .woocommerce table.shop_table th,
.content-page-body .woocommerce table.shop_table td {
  padding: 16px;
  border-color: var(--glass-border);
  color: var(--foreground);
}

.content-page-body .shop_table td.product-name a,
.content-page-body .woocommerce a {
  color: var(--foreground);
}

.toss-smart-cart-page .content-page-body .shop_table td,
.toss-smart-cart-page .content-page-body .shop_table th {
  vertical-align: middle;
}

.toss-smart-cart-page .content-page-body .shop_table .product-remove {
  width: 40px;
  text-align: center;
}

.toss-smart-cart-page .content-page-body .shop_table .product-thumbnail {
  width: 88px;
}

.toss-smart-cart-page .content-page-body .shop_table .product-name {
  width: 34%;
}

.toss-smart-cart-page .content-page-body .shop_table .product-price,
.toss-smart-cart-page .content-page-body .shop_table .product-subtotal {
  width: 16%;
  min-width: 120px;
}

.toss-smart-cart-page .content-page-body .shop_table .product-quantity {
  width: 18%;
  min-width: 180px;
}

.toss-smart-cart-page .content-page-body .shop_table .product-name a,
.toss-smart-cart-page .content-page-body .shop_table .product-price,
.toss-smart-cart-page .content-page-body .shop_table .product-subtotal {
  word-break: normal;
  overflow-wrap: normal;
}

.toss-smart-cart-page .content-page-body .quantity .qty {
  width: 88px;
  min-width: 88px;
  text-align: center;
}

.toss-smart-cart-page .content-page-body .cart_totals h2,
.toss-smart-checkout-page .content-page-body #order_review_heading,
.toss-smart-checkout-page .content-page-body .woocommerce-billing-fields h3,
.toss-smart-checkout-page .content-page-body .woocommerce-shipping-fields h3,
.toss-smart-checkout-page .content-page-body .woocommerce-additional-fields h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.15;
  text-align: left;
}

.content-page-body .button,
.content-page-body button,
.content-page-body input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--foreground);
  transition: all var(--transition);
}

.content-page-body .checkout-button,
.content-page-body #place_order,
.content-page-body .wc-proceed-to-checkout .button,
.content-page-body .woocommerce-Button {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.content-page-body input[type="text"],
.content-page-body input[type="email"],
.content-page-body input[type="password"],
.content-page-body input[type="tel"],
.content-page-body select,
.content-page-body textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  text-align: left;
}

.content-page-body textarea {
  min-height: 168px;
  padding: 16px;
}

.content-page-body select,
.content-page-body option {
  background: #1a1a1d;
  color: var(--foreground);
}

.content-page-body .wc-blocks-components-select,
.content-page-body .wc-blocks-components-select__container,
.content-page-body .wc-blocks-components-select__select,
.content-page-body .wc-blocks-components-combobox,
.content-page-body .wc-blocks-components-combobox-control,
.content-page-body .wc-block-components-combobox,
.content-page-body .wc-block-components-combobox-control,
.content-page-body .wc-block-components-address-form__state,
.content-page-body .wc-block-components-address-form__postcode {
  width: 100%;
}

.content-page-body .wc-blocks-components-select__select,
.content-page-body .wc-block-components-combobox-control input.components-combobox-control__input,
.content-page-body .wc-block-components-combobox-control .components-input-control__container,
.content-page-body .wc-block-components-combobox-control .components-input-control__input {
  min-height: 52px !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--foreground) !important;
  box-shadow: none !important;
}

.content-page-body .select2-container {
  width: 100% !important;
}

.content-page-body .select2-container--default .select2-selection--single,
.content-page-body .select2-container--default .select2-selection--multiple,
.content-page-body .select2-dropdown {
  min-height: 52px;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--foreground) !important;
  box-shadow: none !important;
}

.content-page-body .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  padding: 0 44px 0 16px;
}

.content-page-body .select2-container--default .select2-selection--single .select2-selection__rendered,
.content-page-body .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.content-page-body .select2-results__option {
  color: var(--foreground) !important;
  line-height: 1.4 !important;
}

.content-page-body .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
}

.content-page-body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 12px;
}

.content-page-body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-top-color: var(--foreground-muted) !important;
}

.content-page-body .select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--glass-border) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--foreground) !important;
}

.content-page-body .wc-blocks-components-select__label,
.content-page-body .wc-block-components-text-input label,
.content-page-body .wc-block-components-address-form label {
  color: var(--foreground);
}

.content-page-body .wc-blocks-components-select__expand {
  color: var(--foreground-muted);
}

.content-page-body .wc_payment_methods,
.content-page-body .wc-block-components-radio-control,
.content-page-body .wc-block-checkout__payment-method,
.content-page-body .wc-block-components-panel,
.content-page-body .wc-block-components-totals-item {
  border-color: var(--glass-border) !important;
  background: transparent !important;
  color: var(--foreground) !important;
}

.content-page-body .wc-block-components-radio-control__option,
.content-page-body .payment_method_cod,
.content-page-body .payment_method_razorpay {
  padding: 14px 16px !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  margin-bottom: 12px;
}

.content-page-body .wc-block-components-radio-control__label,
.content-page-body .wc-block-components-radio-control__description,
.content-page-body .payment_box,
.content-page-body .payment_method_cod label,
.content-page-body .payment_method_razorpay label {
  color: var(--foreground) !important;
}

.content-page-body .wc-block-components-radio-control__description,
.content-page-body .payment_box {
  color: var(--foreground-muted) !important;
}

.content-page-body .woocommerce-checkout-payment,
.content-page-body .payment_methods,
.content-page-body .wc_payment_methods {
  background: transparent !important;
  border: 0 !important;
}

.content-page-body .payment_methods {
  margin: 0;
  padding: 0;
}

.content-page-body .payment_method_razorpay,
.content-page-body .payment_method_cod {
  overflow: hidden;
}

.content-page-body .payment_method_razorpay > label,
.content-page-body .payment_method_cod > label {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.content-page-body .payment_method_razorpay .payment_box,
.content-page-body .payment_method_cod .payment_box {
  margin-top: 14px !important;
  padding: 22px 20px 20px !important;
  border: 0 !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.content-page-body .payment_box::before,
.content-page-body .payment_box::after {
  display: none !important;
}

.content-page-body .payment_box p {
  margin: 0 0 18px !important;
  text-align: left !important;
  max-width: 32ch;
}

.content-page-body .payment_method_razorpay .payment_box > *:not(p):not(#place_order) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.content-page-body .payment_method_razorpay .payment_box img {
  display: block;
  max-height: 34px;
  width: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.content-page-body .wc_payment_methods label,
.content-page-body .wc_payment_methods p,
.content-page-body .wc_payment_method label,
.content-page-body .wc_payment_method p,
.content-page-body .payment_methods label,
.content-page-body .payment_methods p,
.content-page-body .payment_box p,
.content-page-body .razorpay-payment-button,
.content-page-body .razorpay-payment-button span,
.content-page-body .payment_method_razorpay *,
.content-page-body .payment_method_cod * {
  color: var(--foreground) !important;
  opacity: 1 !important;
}

.content-page-body .payment_box p,
.content-page-body .wc_payment_methods small,
.content-page-body .payment_methods small {
  color: var(--foreground-muted) !important;
}

.content-page-body .payment_method_razorpay img,
.content-page-body .payment_method_cod img {
  opacity: 1 !important;
}

.content-page-body .acfw-blocks-form,
.content-page-body .acfw-blocks-form button,
.content-page-body .acfw-blocks-form .button,
.content-page-body .acfw-sc-form,
.content-page-body .acfw-sc-form button,
.content-page-body [class*="store-credit"] button,
.content-page-body [class*="store-credit"] .button {
  border-radius: var(--radius-md) !important;
}

.content-page-body .acfw-blocks-form button,
.content-page-body .acfw-blocks-form .button,
.content-page-body .acfw-sc-form button,
.content-page-body [class*="store-credit"] button,
.content-page-body [class*="store-credit"] .button,
.content-page-body button.alt {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--glass-border) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--foreground) !important;
  box-shadow: none !important;
}

.content-page-body .acfw-blocks-form,
.content-page-body .acfw-sc-form,
.content-page-body [class*="store-credit"] {
  color: var(--foreground) !important;
}

.content-page-body .acfw-blocks-form button,
.content-page-body .acfw-blocks-form .button,
.content-page-body .acfw-sc-form button,
.content-page-body .acfw-sc-form .button,
.content-page-body [class*="store-credit"] button,
.content-page-body [class*="store-credit"] .button,
.content-page-body [class*="store-credit"] button *,
.content-page-body [class*="store-credit"] .button * {
  color: var(--foreground) !important;
  fill: currentColor !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.content-page-body .acfw-blocks-form button:hover,
.content-page-body .acfw-blocks-form .button:hover,
.content-page-body .acfw-sc-form button:hover,
.content-page-body [class*="store-credit"] button:hover,
.content-page-body [class*="store-credit"] .button:hover,
.content-page-body button.alt:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.content-page-body textarea {
  min-height: 140px;
  padding-top: 14px;
}

.content-page-body .woocommerce-account {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.toss-smart-policy-page .content-page-shell {
  padding: clamp(26px, 3vw, 42px);
}

.toss-smart-policy-page .content-page-body {
  max-width: 860px;
  text-align: left;
}

.toss-smart-policy-page .content-page-body > * {
  text-align: left;
}

.toss-smart-policy-page .content-page-body > p:first-of-type {
  margin: 0 0 28px;
  padding: 20px 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  color: var(--foreground);
  font-size: 1.08rem;
  line-height: 1.8;
}

.toss-smart-policy-page .content-page-body h1,
.toss-smart-policy-page .content-page-body h2,
.toss-smart-policy-page .content-page-body h3,
.toss-smart-policy-page .content-page-body h4,
.toss-smart-policy-page .content-page-body h5,
.toss-smart-policy-page .content-page-body h6 {
  margin: 40px 0 14px;
  text-align: left;
  line-height: 1.15;
}

.toss-smart-policy-page .content-page-body h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.toss-smart-policy-page .content-page-body h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.toss-smart-policy-page .content-page-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.toss-smart-policy-page .content-page-body p,
.toss-smart-policy-page .content-page-body li {
  max-width: 72ch;
  color: var(--foreground-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.toss-smart-policy-page .content-page-body p {
  margin: 0 0 16px;
}

.toss-smart-policy-page .content-page-body strong {
  color: var(--foreground);
}

.toss-smart-policy-page .content-page-body ul,
.toss-smart-policy-page .content-page-body ol {
  max-width: 72ch;
  margin: 0 0 22px;
  padding-left: 1.4rem;
}

.toss-smart-policy-page .content-page-body ul li,
.toss-smart-policy-page .content-page-body ol li {
  margin-bottom: 10px;
}

.toss-smart-policy-page .content-page-body ul li::marker,
.toss-smart-policy-page .content-page-body ol li::marker {
  color: var(--accent-light);
}

.toss-smart-policy-page .content-page-body hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--glass-border);
}

.toss-smart-policy-page .content-page-body a {
  color: var(--foreground);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 0.18em;
}

.toss-smart-policy-page .content-page-body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.toss-smart-policy-page .content-page-body th,
.toss-smart-policy-page .content-page-body td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
  color: var(--foreground-muted);
}

.toss-smart-policy-page .content-page-body th {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.04);
}

.toss-smart-policy-page .content-page-body blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.03);
}

.toss-smart-policy-page .content-page-body blockquote p:last-child {
  margin-bottom: 0;
}

.content-page-body .woocommerce-MyAccount-navigation,
.content-page-body .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  min-width: 0;
  max-width: none;
}

.content-page-body .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.content-page-body .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.content-page-body .woocommerce-MyAccount-navigation .is-active a {
  background: rgba(139, 34, 82, 0.18);
}

.content-page-body .woocommerce-MyAccount-content {
  text-align: left;
  overflow: hidden;
}

.content-page-body .woocommerce-MyAccount-content > * {
  max-width: 100%;
}

.content-page-body .woocommerce-MyAccount-content p,
.content-page-body .woocommerce-MyAccount-content a,
.content-page-body .woocommerce-MyAccount-content span,
.content-page-body .woocommerce-MyAccount-content strong {
  text-align: left;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

@media (max-width: 768px) {
  .content-page-hero {
    padding: calc(var(--hero-space-top-mobile) + 20px) 0 36px;
  }

  .content-page-hero::after {
    height: 100px;
  }

  .content-page-section {
    margin-top: -20px;
    padding: 20px 0 var(--section-space);
  }

  .content-page-shell {
    padding: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 320px;
  }

  .content-page-body {
    --content-box-gap: 20px;
    --content-field-gap: 14px;
    --content-card-pad: 20px;
  }

  .content-page-body .woocommerce-message,
  .content-page-body .woocommerce-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-page-body .woocommerce-checkout,
  .content-page-body .woocommerce-account,
  .content-page-body .woocommerce-cart-form {
    grid-template-columns: 1fr;
  }

  .toss-smart-cart-page .content-page-body .woocommerce,
  .toss-smart-checkout-page .content-page-body form.checkout {
    grid-template-columns: 1fr;
  }

  .toss-smart-checkout-page .content-page-body form.checkout {
    margin-top: 22px;
  }

  .content-page-body #customer_details,
  .content-page-body #order_review_heading,
  .content-page-body #order_review {
    grid-column: 1;
  }

  .content-page-body .woocommerce-billing-fields__field-wrapper,
  .content-page-body .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .content-page-body .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .content-page-body .woocommerce-billing-fields__field-wrapper .form-row.address-field,
  .content-page-body .woocommerce-shipping-fields__field-wrapper .form-row-wide,
  .content-page-body .woocommerce-shipping-fields__field-wrapper .form-row.address-field {
    grid-column: auto;
  }

  .content-page-body #order_review {
    position: static;
    top: auto;
  }

  .content-page-body #order_review_heading {
    text-align: center;
    margin-bottom: 12px;
  }

  .content-page-body .cart-collaterals {
    grid-column: 1;
    position: static;
    top: auto;
  }

  .content-page-body .woocommerce-MyAccount-navigation,
  .content-page-body .woocommerce-MyAccount-content {
    padding: 20px;
  }
}
