/* DomSale Minimal Styles
   Clean, fast, no external deps. Edit variables below. */
:root {
  --bg: #ffffff;
  /* --text: #1f2430; */
  --text: #55607b;
  --muted: #6b7280;
  /* Slightly darker color for headings */
  --heading: #2b334a;
  --border: #e5e7eb;
  /* Teal / duck-blue theme (greener for buttons) */
  --primary: #0EA5A6;      /* teal-500 */
  --primary-600: #0D9488;  /* teal-600 for hover */
  --accent: #14B8A6;       /* teal-500 (badges/ticks) */
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
  --container: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI,
               Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings a bit darker than body text */
h1, h2, h3 {
  color: var(--heading);
}

/* Global list reset */
ul { list-style: none; padding-left: 0; margin: 0; }
li { margin: 0; }

/* Page background for main area: canard blue gradient */
main {
  /* Duck blue (bleu canard) to white */
  background: linear-gradient(
    180deg,
    #0E5F6F 0%,     /* deep duck blue */
    #0EA5A6 40%,    /* vibrant teal */
    #E6F6F8 75%,    /* very light teal tint */
    #FFFFFF 100%    /* white bottom */
  );
  /* Provide consistent horizontal breathing room at all widths */
  padding-left: 24px;
  padding-right: 24px;
}

/* Ensure inner cards remain readable on dark top */
.hero, .section, .site-header { background: #ffffff; }
.hero { background: transparent; }

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--container); margin: 0 auto; /*padding: 0 20px; */ }
.stack { display: grid; gap: 12px; text-align: justify; }
.stack-lg { display: grid; gap: 28px; }

/* Header */
.site-header { /*border-bottom: 1px solid var(--border);*/ background: #fff9; backdrop-filter: blur(6px); position: sticky; top: 0; z-index: 10; }
.site-nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 700; letter-spacing: -0.02em; }
.brand a { color: var(--text); text-decoration: none; }

/* Hero */
.hero { padding: 56px 0 28px; color: #fff; }
.hero .domain { color: #fff; }
.hero .subtitle { color: #e6f6f8; }
.hero .badge { border-color: rgba(255,255,255,0.3); color: #f3f3ff; background: rgba(255,255,255,0.06); }
.badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; color: var(--muted); font-size: 13px; }
.sale-label { font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji; font-weight: 600; font-size: clamp(16px, 2.2vw, 22px); line-height: 1.2; }
.hero .sale-label { color: #ffffff; }
.domain {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI,
               Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  font-weight: 700; /* Bold */
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.subtitle { color: var(--muted); font-size: 18px; }

/* Tighter spacing for section headings and body */
.section .stack { gap: 8px; }
.section h2, .section h3 { margin: 0; }
.section h2 + p, .section h3 + p, .section h3 + ul { margin-top: 6px; }
/*.section p { margin: 0; }*/
.section ul { margin: 6px 0 0 0; padding-left: 0; list-style: none; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.btn { border: 1px solid var(--border); padding: 12px 18px; border-radius: 10px; font-weight: 600; background: #fff; color: var(--text); text-decoration: none; transition: transform .04s ease; cursor: pointer; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-600); border-color: var(--primary-600); }
.btn-ghost { background: #fff; }

/* Arrow pill for primary buttons */
.btn .arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1;
  transition: transform .12s ease, background-color .2s ease, color .2s ease;
}
.btn .arrow::before { content: '›'; font-size: 18px; line-height: 1; }
.btn.btn-primary .arrow { background: rgba(255,255,255,0.16); color: #fff; }
.btn.btn-primary:hover .arrow { background: rgba(255,255,255,0.26); }
.btn:hover .arrow { transform: translateX(2px); }

/* Old price — diagonal red strikethrough */
.old-price {
  position: relative;
  display: inline-block;
  color: var(--muted);
  font-size: 0.95em;
  margin-right: 8px;
  text-decoration: none; /* remove default straight line */
}
.old-price::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  border-top: 2px solid #ef4444; /* red line */
  transform: rotate(-12deg);
  transform-origin: center;
  pointer-events: none;
}
.btn-primary .old-price { color: rgba(255,255,255,0.85); }

/* New price emphasis */
.new-price {
  font-weight: 600; /* semi-bold */
  font-size: 1.3em;
  letter-spacing: -0.01em;
  color: var(--text);
}
.price .new-price { font-size: 1.4em; }
.btn-primary .new-price { color: #fff; font-size: 1.25em; }

/* Promo text (no box/encadré) */
.promo-offer { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.promo-title { font-weight: 700; margin-bottom: 6px; }
.promo-details { color: var(--muted); font-size: 14px; }
.promo-timer { margin-top: 16px; display: flex; align-items: center; justify-content: left; gap: 12px; }
.promo-timer .caption { color: var(--text); font-weight: 700; font-size: 16px; }
.countdown { display: flex; align-items: stretch; gap: 8px; }
.countdown .unit { display: grid; justify-items: center; gap: 4px; }
.countdown .value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(16px, 4.2vw, 28px);
  line-height: 1;
  padding: 8px 12px;
  min-width: 52px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--text);
}
.countdown .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }

/* Promo details list without bullets or indent */
.promo-details ul { list-style: none; margin: 0; padding-left: 0; }
.promo-details li { margin: 0; }

.price-chip { display: inline-flex; align-items: baseline; gap: 8px; background: #E6F6F8; color: #0B3B46; border: 1px solid #CFECEF; padding: 8px 12px; border-radius: 999px; font-weight: 700; }
.price-chip small { font-weight: 600; color: #0E6172; }

/* Highlights */
.highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 720px) { .highlights { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.chip { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; color: var(--muted); font-size: 14px; background: #fff; }
/* Accented chips specifically inside highlights */
.highlights .chip { display: inline-flex; align-items: center; justify-content: center; text-align: center; gap: 8px; border-color: #CFECEF; background: #E6F6F8; color: #0B3B46; font-weight: 600; transition: transform .06s ease, box-shadow .12s ease; }
.highlights .chip:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(14, 117, 128, 0.16); }

/* Highlights bullet: same style as use-ideas bullets */
.hl-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  line-height: 12px;
  background: linear-gradient(135deg, #2DD4BF 0%, #0EA5A6 100%);
  box-shadow: 0 2px 8px rgba(14, 165, 166, 0.35);
}

/* Keywords: color-only emphasis (no border/shadow) */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags .chip { border-color: transparent; background: #E6F6F8; color: #0B3B46; font-weight: 600; }

/* Card sections */
.section { padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.section.stack-lg { gap: 36px; }
/* Harmonize typography in main left section */
.section.stack-lg h2 {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.section.stack-lg h3 {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
}
.section.stack-lg p,
.section.stack-lg li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
#about {
  margin-top: 10px;
}
.section.stack-lg .promo-details { font-size: 16px; margin-top: 15px; }
/* Increase inner block spacing inside this section */
.section.stack-lg > .stack { gap: 20px; }
.grid { display: grid; gap: 20px; }
@media (min-width: 960px) { .grid-2 { grid-template-columns: 1.5fr 1fr; } }
.grid-2 { align-items: stretch; }
/* Ensure the left content card fills the column height, but keep inner content aligned to the top */
.grid-2 > .section { height: 100%; display: grid; align-content: start; }
/* Ensure right sidebar items start at top and don't distribute vertically */
.grid-2 > aside.stack { align-content: start; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.gallery .frame { aspect-ratio: 4 / 3; border: 1px solid var(--border); border-radius: 10px; background: #fafafa; display: grid; place-items: center; color: var(--muted); font-size: 14px; }

/* Trust */
.trust { display: grid; gap: 10px; color: var(--muted); font-size: 14px; align-content: start; }
.trust .section-inner { display: grid; gap: 8px; align-content: start; }
.trust .row { display: flex; gap: 10px; align-items: center; }
.tick { display: inline-block; width: 18px; height: 18px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12px; line-height: 18px; text-align: center; }

/* Purchase sidebar */
.purchase { display: grid; gap: 14px; align-content: start; }
.purchase .section-inner { display: grid; gap: 12px; align-content: start; }
.option { border: 1px solid var(--border); border-radius: 10px; padding: 12px; display: grid; gap: 8px; background: #fff; }
.option-muted { background: #f9fafb; }
.option-muted label { color: var(--muted); font-weight: 600; }
.option-muted:hover { background: #f3f4f6; }
.option-muted input[type="radio"] { accent-color: #9ca3af; }
.option .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.option label { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.lease-price { display: grid; justify-items: end; gap: 2px; }
.note { color: var(--muted); font-size: 13px; }
.field { display: grid; gap: 6px; }
.field input, .field textarea { width: 100%; padding: 12px 12px; border: 1px solid var(--border); border-radius: 10px; font: inherit; background: #fff; }
.field textarea { min-height: 90px; resize: vertical; }
.btn.block { width: 100%; text-align: center; }
.muted-small { color: var(--muted); font-size: 12px; }
.contact-panel { display: none; }
.contact-panel.show { display: grid; gap: 10px; }
.section#contact-section { display: none; }
.section#contact-section.show { display: block; }
.or-separator { text-align: center; color: var(--muted); font-size: 12px; margin: -2px 0; }

/* FAQ */
.faq details { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; background: #fff; }
.faq details+details { margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 8px 0 0; color: var(--muted); }

/* Footer */
.site-footer { margin-top: 40px; padding: 28px 0; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }

/* Use ideas — pretty custom bullets */
.use-ideas { display: grid; gap: 8px; }
.use-ideas li { position: relative; padding-left: 26px; }
.use-ideas li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em; /* aligns near first line */
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2DD4BF 0%, #0EA5A6 100%);
  box-shadow: 0 2px 8px rgba(14, 165, 166, 0.35);
}
.site-footer a { color: inherit; text-decoration: underline; }

/* Utilities */
.muted { color: var(--muted); }
.spacer-sm { height: 10px; }
.spacer { height: 28px; }
.hidden { display: none !important; }

/* Mobile adjustments: slightly larger domain title and side padding */
@media (max-width: 640px) {
  /* Make the domain name a bit bigger on small screens */
  .domain { font-size: clamp(40px, 9.5vw, 56px); }
  /* Add small side padding to the main area */
  main { padding-left: 12px; padding-right: 12px; }
}

/* Keywords tag list */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Other valuable domains */
.domain-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 640px) { .domain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) { .domain-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.domain-item { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; text-decoration: none; color: inherit; transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease; }
.domain-item:hover { transform: translateY(-2px); border-color: var(--primary); box-shadow: 0 10px 24px rgba(0,0,0,0.12); background: #f9fafb; text-decoration: none; }
.domain-item .name { font-weight: 700; color: var(--text); }
.domain-item .price { display: inline-flex; align-items: baseline; gap: 8px; }
.domain-item .arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: #E6F6F8;
  color: var(--primary);
  font-weight: 700;
  margin-left: 8px;
  line-height: 1;
  vertical-align: middle;
  align-self: center;
  transition: transform .12s ease, background-color .2s ease, color .2s ease;
}
.domain-item .arrow::before { content: '›'; font-size: 18px; line-height: 1; }
.domain-item:hover .arrow { transform: translateX(2px); background: #D1EEF1; color: var(--primary-600); }

/* Keep prices on one line and improve fit */
.domain-item .name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.domain-item .price { white-space: nowrap; gap: 6px; }
.domain-item .price .new-price { font-size: 1.1em; }
.domain-item .price .old-price { font-size: 0.9em; }
.domain-item .arrow { width: 24px; height: 24px; min-width: 24px; min-height: 24px; }

/* On very small screens, hide old price in cards to prevent wrapping */
@media (max-width: 380px) {
  .domain-item .price .old-price { display: none; }
}
