/* ==========================================================================
   Domainer.my - 100% Brand-New Modern Tech Marketplace Stylesheet
   DEFAULT THEME: CERAH (Modern Clean Light Mode)
   Mobile-First Architecture, Outfit & Plus Jakarta Sans
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ==========================================================================
     LIGHT THEME (DEFAULT CERAH)
     ========================================================================== */
  --bg-main: #F8FAFC;
  --bg-mesh: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-elevated: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-tile: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  
  /* Borders */
  --border-subtle: #E2E8F0;
  --border-light: #CBD5E1;
  --border-focus: #0284C7;
  --border-glow: rgba(2, 132, 199, 0.2);

  /* Typography Colors */
  --text-white: #0F172A; /* Heading color in light mode */
  --text-primary: #1E293B; /* Main text */
  --text-secondary: #475569; /* Subtitle / secondary */
  --text-muted: #64748B; /* Muted captions */
  --text-dim: #94A3B8;

  /* Accent Vibrancies */
  --cyan: #0284C7;
  --cyan-glow: rgba(2, 132, 199, 0.18);
  --blue: #2563EB;
  --indigo: #4F46E5;
  --purple: #7C3AED;
  --purple-glow: rgba(124, 58, 237, 0.15);
  --emerald: #059669;
  --emerald-glow: rgba(5, 150, 105, 0.15);
  --coral: #E11D48;
  --coral-glow: rgba(225, 29, 72, 0.15);
  --gold: #D97706;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #0284C7 0%, #2563EB 50%, #4F46E5 100%);
  --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
  --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radius & Elevation */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.05);
  --shadow-cyan: 0 8px 25px -4px rgba(2, 132, 199, 0.25);
  --shadow-wa: 0 8px 25px -4px rgba(37, 211, 102, 0.35);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Optional Dark Theme Support */
[data-theme="dark"] {
  --bg-main: #080C15;
  --bg-mesh: #0C1222;
  --bg-card: rgba(16, 24, 40, 0.75);
  --bg-card-hover: rgba(22, 33, 56, 0.9);
  --bg-glass: rgba(15, 23, 42, 0.82);
  --bg-elevated: #131C31;
  --bg-subtle: rgba(255, 255, 255, 0.04);
  --bg-tile: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --border-focus: rgba(0, 242, 254, 0.6);
  --border-glow: rgba(99, 102, 241, 0.4);

  --text-white: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dim: #475569;

  --cyan: #00F2FE;
  --cyan-glow: rgba(0, 242, 254, 0.25);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-main);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(56, 189, 248, 0.1), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(99, 102, 241, 0.05), transparent 60%),
    radial-gradient(ellipse 50% 30% at 0% 70%, rgba(14, 165, 233, 0.05), transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 5.5rem; /* Space for mobile bottom dock */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

input, select, textarea {
  font-family: inherit;
  color: var(--text-white);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ==========================================================================
   Top Announcement Ribbon
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #F1F5F9 0%, #E2E8F0 50%, #F1F5F9 100%);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 50;
}

.top-notice-bar .pill-tag {
  background: #FFE4E6;
  color: var(--coral);
  border: 1px solid #FECDD3;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.top-notice-bar strong {
  color: var(--text-white);
}

.top-notice-bar a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-notice-bar a:hover {
  color: var(--blue);
}

/* ==========================================================================
   Site Header (Sticky Glassmorphic Nav)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Brand Logo */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

.site-brand .brand-logo-icon,
.site-brand .brand-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.site-brand .brand-logo-icon {
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
}

.site-brand span.tld-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  background: #E0F2FE;
  color: var(--cyan);
  border: 1px solid #BAE6FD;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-xs);
  margin-left: 0.25rem;
  letter-spacing: 0;
}

/* Desktop Navigation */
.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .site-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .header-actions {
    gap: 0.75rem;
  }
}

.shortlist-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.shortlist-badge-btn:hover {
  background: #FFF1F2;
  border-color: #FECDD3;
  color: var(--coral);
}

.shortlist-badge-btn .count {
  background: var(--coral);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.05rem 0.45rem;
  border-radius: var(--radius-full);
  min-width: 18px;
  text-align: center;
}

.lang-toggle-btn {
  background: #FFFFFF;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.lang-toggle-btn:hover {
  color: var(--text-white);
  border-color: var(--border-light);
  background: #F8FAFC;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 10px 25px -3px rgba(37, 211, 102, 0.45);
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
    gap: 0.75rem;
  }
  .site-brand {
    font-size: 1.35rem;
  }
  .site-brand .brand-logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .site-brand span.tld-pill {
    font-size: 0.72rem;
    padding: 0.12rem 0.4rem;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .lang-toggle-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }
  .nav-cta-btn {
    padding: 0.48rem 1.1rem;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    padding: 4.5rem 0 3.5rem;
  }
}

.hero-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  max-width: 94%;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse-dot 2s infinite;
}

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

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-white);
  max-width: 880px;
  margin: 0 auto 1.25rem;
}

.hero-heading .gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-lead {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 1.85rem;
  line-height: 1.65;
}

/* 9.9 Exclusive Flash Sale Card in Hero */
.promo-99-hero-card {
  max-width: 780px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 50%, #FFF1F2 100%);
  border: 1px solid #FECDD3;
  border-radius: var(--radius-lg);
  padding: 1rem 1.35rem;
  box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.08), 0 0 0 1px rgba(225, 29, 72, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
}

.promo-99-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.promo-99-tag {
  background: #E11D48;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.3);
}

.promo-99-countdown-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #FFFFFF;
  border: 1px solid #FDA4AF;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.85rem;
  font-size: 0.82rem;
  color: #9F1239;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.promo-99-timer {
  font-family: var(--font-mono);
  font-weight: 800;
  color: #E11D48;
  letter-spacing: 0.03em;
}

.promo-99-desc {
  font-size: 0.88rem;
  color: #881337;
  line-height: 1.5;
}

.promo-99-desc strong {
  color: #4C0519;
}

/* ==========================================================================
   Hero Search Bar & Filter Hub
   ========================================================================== */
.search-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.searchbar {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.5rem 0.4rem 1.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.searchbar:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 15px 35px -5px rgba(2, 132, 199, 0.15), 0 0 0 3px var(--cyan-glow);
}

.search-icon {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-right: 0.65rem;
}

.searchbar input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 0;
  box-shadow: none !important;
  min-width: 0;
}

.searchbar input::placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.search-clear {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 0.4rem 0.6rem;
  display: none;
  border-radius: 50%;
}

.search-clear.active {
  display: block;
}

.search-clear:hover {
  color: var(--text-white);
}

.search-submit {
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-cyan);
  white-space: nowrap;
}

.search-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* Category Chips (Horizontal Scroll) */
.chips-container {
  margin-top: 1.25rem;
  position: relative;
  overflow: hidden;
}

.chips {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 0.6rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  background: #FFFFFF;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.chip:hover {
  background: #F8FAFC;
  color: var(--cyan);
  border-color: var(--border-light);
}

.chip.active {
  background: #E0F2FE;
  color: var(--cyan);
  border-color: var(--cyan);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

/* ==========================================================================
   Featured Domain Carousel / Marquee
   ========================================================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title-wrap h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.section-title-wrap .subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.view-link {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.view-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.carousel-section {
  padding: 1rem 0 2.5rem;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-marquee 45s linear infinite;
  padding: 0.5rem 0;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Catalog & Filter Toolbar
   ========================================================================== */
.catalog-section {
  padding: 2.5rem 0 3.5rem;
}

.filter-toolbar {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
  .filter-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.toolbar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}

.tag-filter-btn {
  background: #F8FAFC;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.38rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.tag-filter-btn:hover {
  background: #E2E8F0;
  color: var(--text-white);
  border-color: var(--border-light);
}

.tag-filter-btn.active {
  background: #F3E8FF;
  color: var(--purple);
  border-color: #D8B4FE;
  box-shadow: 0 2px 8px var(--purple-glow);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.sort-select {
  background: #FFFFFF;
  color: var(--text-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.results-count-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Domain Cards Grid
   ========================================================================== */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Single Domain Card */
.dcard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.dcard:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(2, 132, 199, 0.12);
}

/* Bookmark Button */
.bookmark-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bookmark-btn:hover {
  transform: scale(1.1);
  background: #FFF1F2;
  border-color: #FECDD3;
}

.bookmark-btn.active {
  background: #FFE4E6;
  border-color: var(--coral);
}

/* Domain Visual Tile */
.tile-card {
  padding: 1.75rem 1.25rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-tile);
}

.tile-icon {
  font-size: 2.5rem;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease;
}

.dcard:hover .tile-icon {
  transform: scale(1.12);
}

.tile-domain-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.2;
  word-break: break-word;
}

.tile-domain-name .tld {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 800;
}

.tile-badge-overlay {
  margin-top: 0.75rem;
  display: inline-block;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

/* Card Body */
.dcard .body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dmeta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.dcat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dlength {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #F1F5F9;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-xs);
}

.dtitle {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.dheadline {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Micro Badges */
.micro-badges-row {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.micro-badge {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.micro-badge.search {
  background: #E0F2FE;
  color: #0369A1;
  border: 1px solid #BAE6FD;
}

.micro-badge.audio {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.micro-badge.gray {
  background: #F1F5F9;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.micro-badge.nego {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.micro-badge.bundle {
  background: #EDE9FE;
  color: #6D28D9;
  border: 1px solid #DDD6FE;
}

.micro-badge.promo-99 {
  background: #FFF1F2;
  color: #E11D48;
  border: 1px solid #FECDD3;
  font-weight: 800;
}

.price-sub-hint {
  font-size: 0.7rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 2px;
}

/* Card Bottom & Price */
.dmeta-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.price-wrap {
  display: flex;
  flex-direction: column;
}

.price-row-strike {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
}

.dprice-old {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount-pill {
  font-size: 0.7rem;
  font-weight: 800;
  background: #FFE4E6;
  color: var(--coral);
  border: 1px solid #FECDD3;
  border-radius: var(--radius-full);
  padding: 0.05rem 0.4rem;
}

.dprice {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.dcard-action {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.dcard:hover .dcard-action {
  background: var(--cyan);
  color: #FFFFFF;
}

/* AI Highlight Helper */
.ai-highlight {
  font-weight: 900;
  font-size: 1.08em;
  color: var(--cyan);
}

/* Sold Domain Badges & Card Styles */
.dcard.is-sold {
  border-color: #FECDD3;
  background: #FFFDFD;
}

.dcard.is-sold:hover {
  border-color: #E11D48;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(225, 29, 72, 0.12);
}

.sold-ribbon-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #E11D48;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.35);
  z-index: 5;
}

.tile-badge-overlay.sold {
  background: #FFE4E6;
  color: #BE123C;
  border-color: #FECDD3;
  font-weight: 800;
}

.micro-badge.sold-tag {
  background: #FFE4E6;
  color: #BE123C;
  border: 1px solid #FECDD3;
  font-weight: 800;
}

.sold-pill {
  font-size: 0.7rem;
  font-weight: 800;
  background: #E11D48;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 0.05rem 0.45rem;
}

.dprice.sold-price {
  color: #64748B;
  text-decoration: line-through;
  font-size: 1.25rem;
}

.dcard-action.sold-action {
  background: #FFF1F2;
  color: #BE123C;
  border-color: #FECDD3;
}

.dcard.is-sold:hover .dcard-action.sold-action {
  background: #BE123C;
  color: #FFFFFF;
}

/* Modal Sold Alert & Button */
.modal-sold-banner {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-sold-banner .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.modal-sold-banner .title {
  font-weight: 800;
  font-size: 0.9rem;
  color: #9F1239;
}

.modal-sold-banner .desc {
  font-size: 0.78rem;
  color: #BE123C;
  line-height: 1.4;
  margin-top: 0.15rem;
}

.btn-whatsapp-sold {
  background: linear-gradient(135deg, #BE123C 0%, #E11D48 100%) !important;
  color: #FFFFFF !important;
}

.btn-whatsapp-sold:hover {
  background: linear-gradient(135deg, #9F1239 0%, #BE123C 100%) !important;
}

.chip.chip-sold {
  border-color: #FECDD3;
  color: #BE123C;
  font-weight: 800;
}

.chip.chip-sold.active {
  background: #E11D48 !important;
  color: #FFFFFF !important;
  border-color: #E11D48 !important;
}

/* Modal Bundle Box */
.modal-bundle-box {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
  border: 1px solid #DDD6FE;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-bundle-box .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.modal-bundle-box .title {
  font-weight: 800;
  font-size: 0.88rem;
  color: #5B21B6;
}

.modal-bundle-box .desc {
  font-size: 0.78rem;
  color: #6D28D9;
  line-height: 1.4;
  margin-top: 0.15rem;
}

.modal-bundle-box.promo-99-box {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
  border: 1px solid #FECDD3;
}

.modal-bundle-box.promo-99-box .title {
  color: #BE123C;
}

.modal-bundle-box.promo-99-box .desc {
  color: #9F1239;
}

/* Domain Concept Demo Preview Button & Modal Banner */
.dcard-actions-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dcard-btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #0284c7;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dcard-btn-demo:hover {
  background: #0284c7;
  color: #ffffff !important;
  border-color: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.modal-demo-banner {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-demo-banner .demo-banner-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-demo-banner .icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.modal-demo-banner .title {
  font-weight: 800;
  font-size: 0.9rem;
  color: #065F46;
}

.modal-demo-banner .desc {
  font-size: 0.78rem;
  color: #047857;
  line-height: 1.4;
  margin-top: 0.15rem;
}

.btn-launch-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-launch-demo:hover {
  background: linear-gradient(135deg, #047857 0%, #065F46 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.4);
}

@media (max-width: 600px) {
  .modal-demo-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-launch-demo {
    width: 100%;
    justify-content: center;
  }
}

/* Shortlist Drawer Bundle Alert */
.drawer-bundle-alert {
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.drawer-bundle-alert .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.drawer-bundle-alert .title {
  font-weight: 800;
  font-size: 0.82rem;
  color: #5B21B6;
}

.drawer-bundle-alert .desc {
  font-size: 0.74rem;
  color: #6D28D9;
  line-height: 1.35;
  margin-top: 0.1rem;
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1.5rem;
  background: #FFFFFF;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.empty-state .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 1.5rem;
}

/* ==========================================================================
   Stats Strip Metrics
   ========================================================================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 3.5rem 0 2.5rem;
}

@media (min-width: 992px) {
  .stat-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.stat-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.stat-item .n {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-item .n span {
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-item .l {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================================================
   How It Works (3 Steps)
   ========================================================================== */
.steps-section {
  padding: 3rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.65rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Why .MY Section
   ========================================================================== */
.why-section {
  padding: 3.5rem 0;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.why-row {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-row:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.why-row .icon-lead {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}

.why-row h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.why-row p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 3rem 0;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-list details {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-list details[open] {
  border-color: var(--cyan);
}

.faq-list summary {
  padding: 1.15rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--cyan);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list .a {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid #F1F5F9;
  padding-top: 0.85rem;
}

.faq-list .a strong {
  color: var(--text-white);
}

/* ==========================================================================
   Footer (Contrasting Elegant Deep Slate Anchor)
   ========================================================================== */
.site-footer {
  background: #0B1120;
  color: #E2E8F0;
  border-top: 1px solid #1E293B;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.foot-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

@media (min-width: 768px) {
  .foot-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 0 2rem 3rem;
  }
}

.foot-brand-col .foot-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.foot-brand-col .foot-brand span {
  color: #38BDF8;
}

.foot-brand-col p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 320px;
}

.foot-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.foot-col a {
  display: block;
  font-size: 0.88rem;
  color: #94A3B8;
  margin-bottom: 0.65rem;
}

.foot-col a:hover {
  color: #38BDF8;
}

.foot-legal {
  border-top: 1px solid #1E293B;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #64748B;
}

@media (min-width: 768px) {
  .foot-legal {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.75rem 2rem 0;
  }
}

/* ==========================================================================
   Domain Detail Modal / Bottom Sheet
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 0;
}

@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
    padding: 2rem 1.5rem;
  }
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 760px;
    max-height: 85vh;
    border-radius: var(--radius-xl);
    transform: translateY(20px) scale(0.97);
    padding-bottom: 1.5rem;
  }
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0) scale(1);
}

/* Mobile Pull Bar Handle */
.modal-dialog::before {
  content: '';
  display: block;
  width: 44px;
  height: 5px;
  background: #CBD5E1;
  border-radius: var(--radius-full);
  margin: 10px auto 4px;
}

@media (min-width: 768px) {
  .modal-dialog::before {
    display: none;
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 20;
}

.modal-close-btn:hover {
  background: #E2E8F0;
}

/* Modal Hero Header */
.modal-header-hero {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .modal-header-hero {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
}

.modal-hero-tile {
  width: 100%;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #F0F9FF 0%, #EEF2FF 100%);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 640px) {
  .modal-hero-tile {
    width: 220px;
    flex-shrink: 0;
  }
}

.modal-hero-tile .icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.modal-hero-tile .dname {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.modal-hero-tile .dname span {
  color: var(--cyan);
}

.modal-header-info {
  flex: 1;
}

.modal-cat-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple);
  display: inline-block;
  margin-bottom: 0.35rem;
}

.modal-domain-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.modal-price-row {
  margin: 0.85rem 0 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.modal-price-strike-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-price-old {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.modal-discount-badge {
  font-size: 0.75rem;
  font-weight: 800;
  background: #FFE4E6;
  color: var(--coral);
  border: 1px solid #FECDD3;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.modal-price-val {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-white);
}

.modal-action-btns {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.btn-whatsapp-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
}

.btn-whatsapp-offer:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-make-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #F8FAFC;
  color: var(--text-white);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
}

.btn-make-offer:hover {
  background: #E2E8F0;
}

.btn-copy-domain {
  background: #FFFFFF;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-copy-domain:hover {
  color: var(--text-white);
  border-color: var(--border-light);
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .modal-body {
    padding: 2rem;
  }
}

/* 4 Strengths Grid */
.modal-strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .modal-strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.modal-strength-card {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  gap: 0.85rem;
}

.modal-strength-card .emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.modal-strength-card .title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.modal-strength-card .desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Why Box & Research */
.modal-why-box {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.modal-why-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.modal-why-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.modal-why-box .en-translation {
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--cyan);
  padding-left: 0.85rem;
}

.modal-target-buyers {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-subtle);
}

.modal-target-buyers h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.buyer-chips {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.buyer-chip {
  background: #EEF2FF;
  color: var(--indigo);
  border: 1px solid #C7D2FE;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* Enquiry Form Box */
.modal-enquiry-box {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-enquiry-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.modal-enquiry-box .sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-white);
}

.form-submit-row {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-submit-enquiry {
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-cyan);
}

.btn-submit-enquiry:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* MYNIC & Broker Notice */
.modal-mynic-notice {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #065F46;
  line-height: 1.55;
}

.modal-mynic-notice strong {
  color: #047857;
}

/* ==========================================================================
   Shortlist Drawer
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #FFFFFF;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
  z-index: 101;
}

.drawer-overlay.active .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.drawer-item {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.drawer-item .name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
}

.drawer-item .remove-btn {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-xs);
}

.drawer-item .remove-btn:hover {
  color: var(--coral);
  background: #FFE4E6;
}

.drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: #F8FAFC;
}

.btn-drawer-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
}

/* ==========================================================================
   Mobile Bottom Floating Dock (Native App Bar)
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 440px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 45;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.15);
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.5rem;
  position: relative;
  transition: var(--transition);
}

.mobile-nav-item .nav-icon {
  font-size: 1.15rem;
  margin-bottom: 2px;
  position: relative;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: var(--cyan);
}

.mobile-nav-item .mobile-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.05rem 0.35rem;
  border-radius: var(--radius-full);
  display: none;
}

.mobile-nav-item.mobile-nav-wa {
  color: #25D366;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.toast-notice.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   News & Market Insights Section (Google News & Discover Optimization)
   ========================================================================== */
.news-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-tile);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.news-badge {
  background: rgba(2, 132, 199, 0.1);
  color: var(--cyan);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.news-card h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.news-card p.news-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.news-card details {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
}

.news-card details summary {
  font-weight: 700;
  color: var(--cyan);
  cursor: pointer;
  user-select: none;
  font-size: 0.82rem;
}

.news-card details .details-content {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.news-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text-primary);
}
