/* ============================================================
   ITEMSRACK — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #3dc5f2;
  --primary-dark: #0c1822;
  --primary-hover: #4a86c7;
  --primary-light: #eefaff;
  --primary-border: #9fe5fb;
  --black: #0c1822;
  --gray-900: #111827;
  --gray-800: #1e293b;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #16a34a;
  --success-light: #f0fdf4;
  --success-border: #bbf7d0;
  --warning: #d97706;
  --warning-light: #fffbeb;
  --warning-border: #fde68a;
  --error: #dc2626;
  --error-light: #fef2f2;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 24px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.04);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
  --nav-height: 82px;
  --container: 1280px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: #0c1822; text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: inherit; font-size: 15px; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  color: var(--black);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-weight: 700; }
p { color: var(--gray-600); line-height: 1.7; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--primary-light);
  color: #475569;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---- Navigation ---- */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 8px;
  margin-top: 16px;
}
.nav-logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.nav-logo:hover { color: #fff; }
.nav-logo-box {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0;
}
.nav-logo-img {
  width: auto;
  height: 46px;
  max-width: 220px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.footer-brand-logo .nav-logo-img { height: 42px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: color 200ms ease, background-color 200ms ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { color: #0c1822; background: var(--primary-light); }
.nav-link.active { color: #475569; }
.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
  opacity: 0.5;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 232px;
  max-width: 286px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.06);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.985);
  transform-origin: top left;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 100;
}
.nav-dropdown.nav-mega {
  min-width: 520px;
  max-width: 720px;
  width: max-content;
  padding: 14px;
}
.nav-dropdown.nav-mega.nav-mega-shop { min-width: 690px; }
.nav-dropdown.nav-mega.nav-mega-shipping { min-width: 590px; }
.nav-dropdown.nav-mega.nav-mega-about { min-width: 540px; }
.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr)) 190px;
  gap: 14px;
  align-items: stretch;
}
.nav-mega-simple .nav-mega-grid {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
}
.nav-menu-col {
  min-width: 0;
}
.nav-menu-feature {
  border-radius: 17px;
  min-height: 100%;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(12,24,34,.10), rgba(12,24,34,.78)),
    url("https://loremflickr.com/420/320/warehouse,inventory?lock=7481") center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.nav-menu-feature strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.nav-menu-feature span {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  height: 13px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav-dropdown-title {
  padding: 1px 3px 9px;
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 900;
  color: #64748b;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 8px;
  font-size: 13.5px;
  font-weight: 760;
  color: var(--gray-700);
  border-radius: 12px;
  line-height: 1.25;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
  text-decoration: none;
  position: relative;
}
.nav-dropdown a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg) translateX(-2px);
  opacity: 0;
  margin-left: auto;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-dropdown a:hover {
  color: #0c1822;
  background: #f5f9fc;
  transform: translateX(1px);
}
.nav-dropdown a:hover::after {
  opacity: .45;
  transform: rotate(45deg) translateX(1px);
}
.nav-dd-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  color: #526577;
  background: #f0f6fa;
  border: 1px solid #dce8f0;
  border-radius: 8px;
}
.nav-dd-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.85;
}
.nav-account-dropdown {
  left: auto;
  right: 0;
  min-width: 340px;
  max-width: 380px;
  padding: 14px;
  border-radius: 18px;
}
.nav-account-action {
  position: relative;
  list-style: none;
}
.nav-account-trigger {
  border: 1px solid var(--border);
  background: #fff;
  min-height: 34px;
  padding: 8px 11px;
}
.nav-account-group {
  padding: 6px 0 10px;
  border-bottom: 1px solid var(--gray-100);
}
.nav-account-group:first-child { padding-top: 0; }
.nav-account-group-title {
  margin: 8px 8px 6px;
  font-size: 10px;
  font-weight: 900;
  color: var(--gray-400);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.nav-account-dropdown a {
  gap: 9px;
  padding: 9px 8px;
  font-size: 13px;
  border-radius: 10px;
}
.nav-account-dropdown .nav-dd-icon {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border-radius: 7px;
  background: transparent;
  border-color: transparent;
  color: var(--gray-500);
}
.nav-account-dropdown .nav-dd-icon svg {
  width: 15px;
  height: 15px;
}
.nav-account-dropdown a:hover .nav-dd-icon {
  color: #475569;
  background: rgba(61, 197, 242, 0.09);
  border-color: rgba(61, 197, 242, 0.14);
}
.nav-account-signout {
  padding-top: 10px;
}
.nav-account-signout a {
  color: #b42318;
}
.nav-account-signout a:hover {
  color: #991b1b;
  background: #fff1f1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-actions a[href="shop.html"].btn-primary { display: none; }
.nav-quick-links {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 2px;
}
.nav-quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--gray-700);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}
.nav-quick-links a:hover {
  color: #0c1822;
  border-color: rgba(61, 197, 242, 0.45);
  background: var(--primary-light);
  transform: translateY(-1px);
}
.nav-cart-link span {
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
.nav-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.nav-icon-btn:hover { border-color: #475569; box-shadow: 0 0 0 3px rgba(61,197,242,.12); color: #0c1822; }
.nav-icon-btn svg { width: 18px; height: 18px; }
.nav-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  display: none;
}
.nav-cart-badge.visible { display: flex; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: all var(--transition);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1000;
  overflow-y: auto;
  padding: 0 24px 118px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--black);
}
.mobile-nav-group { margin-bottom: 22px; }
.mobile-nav-group-title {
  font-size: 10px;
  font-weight: 900;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 12px 0 8px;
}
.mobile-nav-group a,
.mobile-accordion-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 760;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}
.mobile-nav-group a:hover,
.mobile-accordion-panel a:hover { color: #64748b; }
.mobile-nav-accordion {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.mobile-accordion-trigger svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 200ms ease;
}
.mobile-nav-accordion.open .mobile-accordion-trigger svg {
  transform: rotate(180deg);
}
.mobile-accordion-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 12px;
  opacity: 0;
  transition: max-height 240ms ease, opacity 200ms ease, padding-bottom 200ms ease;
}
.mobile-nav-accordion.open .mobile-accordion-panel {
  max-height: 780px;
  opacity: 1;
  padding-bottom: 18px;
}
.mobile-nav-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 24px 18px;
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--border);
  box-shadow: 0 -12px 30px rgba(12,24,34,.08);
  backdrop-filter: blur(10px);
}
.mobile-nav-cta-bar a {
  min-height: 44px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, #4a86c7 0%, #3dc5f2 100%);
  color: var(--white);
  border-color: #3dc5f2;
  box-shadow: 0 10px 24px rgba(61,197,242,0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3f7ebe 0%, #31b9e8 100%);
  border-color: #31b9e8;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(61,197,242,0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #475569;
  border-color: #475569;
}
.btn-outline:hover {
  background: var(--primary-light);
  color: #0c1822;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--gray-800);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn-full { width: 100%; justify-content: center; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
}
.form-label .req { color: var(--error); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }
.form-input:disabled,
.form-select:disabled { background: var(--gray-50); color: var(--gray-500); cursor: not-allowed; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-hint {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 6px;
  line-height: 1.5;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Checkboxes */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
}
.form-check + .form-check { margin-top: 4px; }
.form-check input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: #475569;
  margin-top: 2px;
}
.form-check input[type="radio"] { border-radius: 50%; }
.form-check-label {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
  cursor: pointer;
}
.form-check-label strong { color: var(--black); }

/* Radio group */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
}
.radio-btn:hover { border-color: #475569; color: #475569; background: var(--primary-light); }
.radio-btn input { display: none; }
.radio-btn.selected { border-color: #475569; color: #475569; background: var(--primary-light); font-weight: 600; }

/* File upload */
.file-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 150px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-50);
  overflow: visible;
}
.file-upload-area:hover { border-color: #475569; background: var(--primary-light); }
.file-upload-area input[type="file"] { display: none; }
.file-upload-icon { width: 44px; height: 44px; color: var(--gray-400); margin: 0 0 12px; flex-shrink: 0; }
.file-upload-text { font-size: 14px; color: var(--gray-600); margin-bottom: 4px; max-width: 100%; line-height: 1.5; }
.file-upload-text strong { color: #475569; }
.file-upload-types { font-size: 12px; color: var(--gray-400); }

/* ---- Selection Cards ---- */
.selection-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.selection-grid-2 { grid-template-columns: repeat(2, 1fr); }
.selection-grid-3 { grid-template-columns: repeat(3, 1fr); }

.sel-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  text-align: left;
  position: relative;
  user-select: none;
}
.sel-card:hover {
  border-color: #475569;
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.sel-card.selected {
  border-color: #475569;
  background: var(--primary-light);
  box-shadow: 0 0 0 2px rgba(29,78,216,0.15);
}
.sel-card-icon {
  width: 38px;
  height: 38px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gray-500);
  transition: all var(--transition);
}
.sel-card:hover .sel-card-icon,
.sel-card.selected .sel-card-icon {
  background: rgba(29,78,216,0.12);
  color: #475569;
}
.sel-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}
.sel-card-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}
.sel-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: white;
  font-size: 11px;
  color: transparent;
}
.sel-card.selected .sel-check {
  background: var(--primary);
  border-color: #475569;
  color: white;
}

/* ---- Progress Bar ---- */
.progress-bar-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: relative;
  top: var(--nav-height);
  z-index: 1;
}
.progress-steps {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}
.progress-steps::-webkit-scrollbar { display: none; }
.progress-step {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
.progress-step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
  flex-shrink: 0;
}
.progress-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  background: var(--white);
  transition: all var(--transition);
  flex-shrink: 0;
}
.progress-step.active .progress-circle {
  border-color: #475569;
  background: var(--primary);
  color: var(--white);
}
.progress-step.done .progress-circle {
  border-color: var(--success);
  background: var(--success);
  color: var(--white);
}
.progress-step-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.progress-step.active .progress-step-name { color: #475569; }
.progress-step.done .progress-step-name { color: var(--success); }
.progress-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 16px 0 0;
  transition: background var(--transition);
}
.progress-step.done ~ .progress-step .progress-connector,
.progress-connector.filled { background: var(--success); }

/* ---- Page Hero ---- */
.page-hero {
  background: radial-gradient(circle at 82% 20%, rgba(61,197,242,0.16), transparent 34%), var(--black);
  padding: 64px 0 56px;
  color: var(--white);
  text-align: center;
}
.page-hero .container {
  max-width: 900px;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 { color: var(--white); margin: 0 auto 16px; font-size: clamp(1.8rem, 4vw, 3rem); max-width: 820px; }
.page-hero .hero-sub {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 12px;
  max-width: 760px;
}
.page-hero .hero-desc { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 720px; margin: 0 auto; }
.kick,
.kicker,
.section-kicker { display: none !important; }
.eyebrow,
.blog-tag,
.rel-tag,
.fi-cat,
.ra-tag,
.pcard-mfr,
.pd-cat-label,
.rcard .rcat {
  color: #64748b !important;
}
.blog-readmore,
.cat-link,
.opt-link,
.filters-reset {
  color: #475569 !important;
}
.blog-readmore:hover,
.cat-link:hover,
.opt-link:hover,
.filters-reset:hover {
  color: #0c1822 !important;
}
.page-hero-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px auto 0;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  line-height: 1.6;
}
.page-hero-notice svg { flex-shrink: 0; margin-top: 1px; width: 16px; height: 16px; }
.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---- Step Form ---- */
.form-wizard-wrap {
  padding: 48px 0 80px;
}
.form-wizard-inner {
  max-width: 760px;
  margin: 0 auto;
}
.form-main-title {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}
.form-main-title h2 {
  margin-bottom: 8px;
}
.form-main-title p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--gray-600);
}
.form-step { display: none; }
.form-step.active { display: block; }
.step-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--black);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.step-actions-right { display: flex; align-items: center; gap: 12px; }

/* ---- Notice Blocks ---- */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.6;
}
.notice svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
.notice p { color: inherit; margin: 0; }
.notice-info { background: var(--primary-light); border: 1px solid var(--primary-border); color: #1e40af; }
.notice-warning { background: var(--warning-light); border: 1px solid var(--warning-border); color: #92400e; }
.notice-success { background: var(--success-light); border: 1px solid var(--success-border); color: #14532d; }
.notice-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.card-hover:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-lg { padding: 32px; }
.card-xl { padding: 40px; }

/* Info card grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.info-card-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  margin-bottom: 14px;
}
.info-card-icon svg { width: 20px; height: 20px; }
.info-card h4 { margin-bottom: 6px; font-size: 15px; }
.info-card p { font-size: 13.5px; }

/* ---- FAQ ---- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  transition: color var(--transition);
}
.faq-btn:hover { color: #fff; }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-500);
  transition: all var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner ul { margin: 8px 0 8px 18px; list-style: disc; }
.faq-answer-inner li { margin-bottom: 6px; }

/* ---- Success Screen ---- */
.success-screen {
  text-align: center;
  padding: 56px 32px;
  max-width: 600px;
  margin: 0 auto;
}
.success-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--success);
}
.success-icon-wrap svg { width: 34px; height: 34px; }
.success-screen h2 { margin-bottom: 12px; }
.success-screen > p { font-size: 15px; max-width: 460px; margin: 0 auto 32px; }
.success-timeline {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0 auto 28px;
  max-width: 380px;
  text-align: left;
}
.success-timeline-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 22px;
  width: 2px;
  height: calc(100% + 6px);
  background: var(--border);
}
.tl-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.tl-dot.active {
  background: var(--success);
  border-color: var(--success);
}
.tl-dot.active::after { background: white; }
.tl-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  padding-top: 2px;
  padding-bottom: 20px;
}
.success-notice {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Summary Card ---- */
.summary-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.summary-section { margin-bottom: 24px; }
.summary-section:last-child { margin-bottom: 0; }
.summary-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  align-items: flex-start;
}
.summary-row:last-child { margin-bottom: 0; }
.sum-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  min-width: 160px;
  flex-shrink: 0;
}
.sum-value {
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
}

/* ---- Contact Support Banner ---- */
.support-banner {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
}
.support-banner h3 { color: var(--white); margin-bottom: 8px; }
.support-banner > p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.support-contact-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.support-contact-item {}
.support-contact-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.support-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* ---- Footer ---- */
.site-footer {
  background: #0c1822;
  color: var(--white);
  padding: 64px 0 0;
  margin-top: auto;
}
.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  margin-bottom: 44px;
  border: 1px solid rgba(61,197,242,0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}
.footer-newsletter h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 0 8px;
}
.footer-newsletter p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.footer-newsletter-form input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.96);
  color: var(--black);
  padding: 0 14px;
  font-weight: 600;
  outline: none;
}
.footer-newsletter-form input:focus {
  border-color: #475569;
  box-shadow: 0 0 0 3px rgba(61,197,242,0.18);
}
.footer-newsletter-form button {
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: #06131d;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: all 200ms ease;
}
.footer-newsletter-form button:hover {
  background: #4dc6f4;
  transform: translateY(-1px);
}
.footer-newsletter-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 700;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-brand-logo:hover { color: rgba(255,255,255,0.85); }
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(61,197,242,0.22);
  border-radius: 10px;
  color: white;
  background: rgba(255,255,255,0.045);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.footer-social a::before { content: none; }
.footer-social .social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(61,197,242,0.14);
  color: white;
  flex: 0 0 20px;
}
.footer-social .social-logo svg {
  width: 14px;
  height: 14px;
  display: block;
}
.footer-social a:hover {
  color: #0c1822;
  background: #3dc5f2;
  border-color: #3dc5f2;
  transform: translateY(-1px);
}
.footer-social a:hover .social-logo {
  background: rgba(12,24,34,0.12);
  color: #0c1822;
}.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ---- Footer payment badges ---- */
.footer-pay { padding: 26px 0 6px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-pay-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; text-align: center; }
.pay-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pay-badge { height: 30px; min-width: 48px; padding: 0 9px; background: #fff; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 3px; box-shadow: 0 1px 2px rgba(0,0,0,0.25); font-family: Arial, Helvetica, sans-serif; font-weight: 800; font-size: 12px; line-height: 1; white-space: nowrap; }
.pay-visa { color: #1a1f71; font-style: italic; font-size: 14px; letter-spacing: 0.02em; }
.pay-amex { background: #2e77bc; color: #fff; font-size: 10px; letter-spacing: 0.04em; }
.pay-mc .mc-r { width: 16px; height: 16px; border-radius: 50%; background: #eb001b; }
.pay-mc .mc-y { width: 16px; height: 16px; border-radius: 50%; background: #f79e1b; margin-left: -7px; mix-blend-mode: multiply; }
.pay-disc { color: #111827; font-size: 10px; letter-spacing: 0.02em; }
.pay-disc .disc-o { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #f76b1c; margin: 0 1px; }
.pay-diners { color: #0079be; font-size: 10px; letter-spacing: 0.02em; }
.pay-applepay { color: #000; font-size: 12px; }
.pay-applepay svg { display: block; }
.pay-gpay { color: #5f6368; font-size: 12px; }
.pay-paypal { font-size: 13px; font-style: italic; }
.pay-shoppay { color: #5a31f4; font-size: 11px; }
.pay-jcb { color: #0b4ea2; font-size: 11px; }
.pay-unionpay { color: #d10429; font-size: 9.5px; }
.pay-venmo { color: #008cff; font-size: 11px; font-style: italic; }
.pay-cashapp { color: #00d632; font-size: 11px; }
.pay-zelle { color: #6d1ed4; font-size: 12px; }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* ---- Utility classes ---- */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.text-sm { font-size: 13px; }
.text-blue { color: #475569; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.hidden { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ---- Cookie Preferences ---- */
.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100vw - 48px));
  z-index: 3000;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(12,24,34,0.16), 0 6px 14px rgba(12,24,34,0.08);
  padding: 18px;
  color: var(--black);
}
.cookie-consent[hidden],
.cookie-modal-overlay[hidden] { display: none !important; }
.cookie-consent-title,
.cookie-modal-title {
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cookie-consent p,
.cookie-modal p {
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 9px;
}
.cookie-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}
.cookie-actions .btn {
  min-height: 40px;
  padding: 11px 14px;
  font-size: 13.5px;
}
.cookie-actions .btn { width: 100%; justify-content: center; }
.cookie-text-btn {
  background: transparent;
  color: #0c1822;
  border: 1px solid var(--border);
}
.cookie-text-btn:hover {
  background: var(--gray-50);
  color: var(--black);
}
.cookie-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.cookie-links a {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-links a:hover { color: #0c1822; }
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12,24,34,0.48);
}
.cookie-modal {
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(12,24,34,0.25);
  padding: 26px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1;
}
.cookie-modal-close:hover {
  background: var(--gray-50);
  color: var(--black);
}
.cookie-setting {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.cookie-setting:first-of-type { margin-top: 18px; }
.cookie-setting h3 {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cookie-setting-label {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 48px;
  height: 28px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 999px;
  transition: background var(--transition);
}
.cookie-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.cookie-switch input:checked + .cookie-slider { background: var(--primary); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-always-active {
  align-self: start;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--primary-light);
  color: #0c1822;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

/* ---- Live Chat Widget ---- */
.live-chat-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2800;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0c1822;
  color: white;
  border: 1px solid rgba(61,197,242,0.38);
  box-shadow: 0 16px 34px rgba(12,24,34,0.22);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}
.live-chat-button:hover {
  background: #102234;
  border-color: #3dc5f2;
  transform: translateY(-1px);
}
.live-chat-button svg {
  width: 18px;
  height: 18px;
}
.live-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 84px;
  width: min(360px, calc(100vw - 48px));
  z-index: 2801;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(12,24,34,0.18), 0 8px 18px rgba(12,24,34,0.08);
  overflow: hidden;
}
.live-chat-panel[hidden] { display: none !important; }
.live-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: #0c1822;
  color: white;
}
.live-chat-header strong {
  display: block;
  color: white;
  font-size: 15px;
  margin-bottom: 3px;
}
.live-chat-header span {
  display: block;
  color: rgba(255,255,255,0.64);
  font-size: 12px;
  line-height: 1.4;
}
.live-chat-close {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 17px;
  line-height: 1;
}
.live-chat-body {
  padding: 18px;
}
.live-chat-note {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: #0c1822;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.live-chat-body label {
  display: block;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}
.live-chat-body input,
.live-chat-body textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 12px;
  margin-bottom: 12px;
  color: var(--black);
}
.live-chat-body textarea {
  min-height: 88px;
  resize: vertical;
}
.live-chat-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.live-chat-status {
  display: none;
  margin-top: 12px;
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.live-chat-status.is-visible { display: block; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .nav-menu, .nav-actions .btn, .nav-quick-links, .nav-account-action { display: none; }
  .nav-hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 56px 0; }
  .section-lg { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-menu, .nav-actions .btn, .nav-quick-links, .nav-account-action { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 48px 0 40px; }
  .form-wizard-wrap { padding: 36px 0 64px; }
  .selection-grid-3 { grid-template-columns: 1fr 1fr; }
  .step-actions { flex-direction: column; }
  .step-actions .btn { width: 100%; }
  .support-banner { padding: 32px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-newsletter { grid-template-columns: 1fr; padding: 22px; }
  .footer-newsletter-form { grid-template-columns: 1fr; }
  .footer-newsletter-form button { width: 100%; }
  .footer-brand { grid-column: 1 / -1; }
  .success-screen { padding: 40px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .selection-grid, .selection-grid-2, .selection-grid-3 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .progress-step-name { display: none; }
  .radio-group { flex-direction: column; }
  .radio-btn { width: 100%; }
  .page-hero-actions { flex-direction: column; align-items: center; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 16px;
  }
  .cookie-modal-overlay {
    align-items: flex-end;
    padding: 16px;
  }
  .cookie-modal {
    max-height: calc(100vh - 32px);
    padding: 22px;
  }
  .cookie-setting {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .live-chat-button {
    right: 16px;
    bottom: 16px;
  }
  .live-chat-panel {
    left: 16px;
    right: 16px;
    bottom: 76px;
    width: auto;
  }
}

/* Save badge overlay on image */
.fi-save-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.4);
}

/* Already existing styles */
.fi-img {
    position: relative;
    overflow: hidden;
}

.fi-mkt {
    position: absolute;
    right: 10px;
    z-index: 5;
}

.fi-cond {
    position: absolute;
    left: 10px;
    z-index: 5;
}

