@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manjari:wght@400;700&display=swap');

/* Disable text selection and tap highlight universally to mimic native app feel */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

/* Allow text selection in inputs and textareas so forms still work */
input, textarea {
  -webkit-user-select: auto;
  user-select: auto;
}

body.lang-ml {
  font-family: 'Manjari', 'Inter', ui-sans-serif, system-ui, sans-serif;
}
body.lang-ml button,
body.lang-ml input,
body.lang-ml textarea,
body.lang-ml select,
body.lang-ml a,
body.lang-ml .btn-primary,
body.lang-ml .btn-ghost,
body.lang-ml .nav-cta,
body.lang-ml .nav-lang-btn {
  font-family: 'Manjari', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

:root {
  --color-lime-spark: #c8d90f;
  --color-lavender-mist: #e9c0e9;
  --color-cobalt-band: #2665d6;
  --color-maroon-plate: #780016;
  --color-cobalt-deep: #061492;
  --color-forest-ink: #254f1a;
  --color-mustard-pop: #d6a337;
  --color-linen-canvas: #f3f3f1;
  --color-white-plate: #ffffff;
  --color-ink-black: #000000;
  --color-midnight-ink: #1e2330;
  --color-sage-mute: #676b5f;
  --color-leaf-wash: #ebffc5;
  --color-moss-tint: #e8efd6;
  --color-concrete-tile: #adadad;
  --font-primary: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --radius-nav: 8px;
  --radius-tags: 99px;
  --radius-cards: 32px;
  --radius-inputs: 8px;
  --radius-buttons: 99px;
  --radius-largecards: 64px;
  --radius-organic: 1000px;
  --border-ink: none;
  --page-max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-primary);
  background: var(--color-linen-canvas);
  color: var(--color-ink-black);
  font-size: 16px;
  line-height: 1.5;
}

a, button, [role="button"], label {
  cursor: pointer;
}

/* ── ANNOUNCEMENT BANNER ── */
.banner-strip {
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.banner-strip span { text-decoration: underline; font-weight: 600; color: rgba(200, 217, 15, 0.7); }
.banner-strip i { color: rgba(200, 217, 15, 0.7); }

/* ── FLOATING NAV ── */
.nav-float {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}
.nav-inner {
  background: var(--color-white-plate);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 20px;
  width: 100%;
  max-width: var(--page-max-width);
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0,0,0,0.06);
  pointer-events: all;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo span { color: var(--color-maroon-plate); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink-black);
  text-decoration: none;
  border-radius: var(--radius-nav);
  transition: background 0.15s;
}
.nav-links a:hover { background: var(--color-linen-canvas); }
.nav-cta {
  background: var(--color-lime-spark);
  color: var(--color-ink-black);
  border: var(--border-ink);
  border-radius: var(--radius-buttons);
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.1s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* ── LANGUAGE SELECTOR ── */
.nav-lang-selector {
  position: relative;
  display: inline-block;
}
.nav-lang-btn {
  background: transparent;
  border: none;
  border-radius: var(--radius-buttons);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--font-primary) !important;
  outline: none;
}
.nav-lang-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  /* border-color: rgba(0, 0, 0, 0.3); removed */
}
.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-white-plate);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px;
  display: none;
  flex-direction: column;
  min-width: 140px;
  z-index: 1000;
}
.nav-lang-dropdown.open {
  display: flex;
  flex-direction: column;
}
.lang-option {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-black);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
  text-align: left;
}
.lang-option:hover {
  background: var(--color-linen-canvas);
}
.lang-option.active {
  background: var(--color-lime-spark);
  font-weight: 700;
}
@media (max-width: 900px) {
  .nav-lang-selector { display: none; }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink-black);
  border-radius: 2px;
}

/* ── HERO SECTION ── */
.hero-section {
  background: var(--color-lime-spark);
  border-bottom: var(--border-ink);
  padding: 72px 24px 80px;
  position: relative;
  overflow: visible;
  transition: background-color 0.5s ease-in-out;
}
.hero-house-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100% !important;
  width: 90% !important;
  object-fit: cover;
  object-position: right;
  z-index: 1;
  pointer-events: none;
}
.hero-yellow-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  z-index: 2;
  background: linear-gradient(to right, var(--color-lime-spark) 40%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  transition: opacity 0.4s ease-in-out;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white-plate);
  border: var(--border-ink);
  border-radius: var(--radius-tags);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3.44px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.36px;
  color: var(--color-midnight-ink);
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--color-ink-black);
  color: var(--color-white-plate);
  border: var(--border-ink);
  border-radius: var(--radius-buttons);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--color-ink-black);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-buttons);
  padding: 16px 26px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(0,0,0,0.06); }
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: visible;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-bottom: -180px;
  z-index: 10;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.18));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-image-wrap:hover {
  transform: scale(1.04) translateY(-5px);
}
.hero-bucket-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ── SECTION WRAPPER ── */
.section-wrap { padding: 80px 24px; }
.section-inner { max-width: var(--page-max-width); margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: var(--border-ink);
  border-radius: var(--radius-tags);
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.19px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 18px;
  color: var(--color-sage-mute);
  letter-spacing: -0.36px;
  line-height: 1.4;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ── BENTO GRID ── */
.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Each row wraps side-by-side cards */
.bento-grid-row {
  display: flex;
  gap: 14px;
}

/* Layout modifiers via flex-basis */
.bento-full  { flex: 1 1 100%; }
.bento-60    { flex: 0 0 calc(60% - 7px); }
.bento-40    { flex: 0 0 calc(40% - 7px); }
.bento-third { flex: 1 1 0; }

/* Cards in the same visual row auto-wrap via flex on the grid */
.bento-grid {
  flex-wrap: wrap;
  flex-direction: row;
}

.bento-card {
  border: var(--border-ink);
  border-radius: 40px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.bento-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); }
.bento-card.span2 { grid-column: span 2; }
.bento-card.large { border-radius: var(--radius-cards); min-height: 260px; }
.bento-card-icon {
  font-size: 48px;
  line-height: 1;
  display: inline-flex;
}
.bento-card-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
.bento-card-desc { font-size: 14px; line-height: 1.5; opacity: 0.8; }
.bento-card-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(0,0,0,0.08);
  border: var(--border-ink);
  border-radius: var(--radius-tags);
  padding: 6px 14px;
  width: fit-content;
  text-decoration: none;
  transition: background 0.15s;
}
.bento-card-arrow:hover { background: rgba(0,0,0,0.15); }

/* card color variants */
.card-lime   { background: var(--color-lime-spark);    color: #000; }
#card-paint-workers {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/Paint Workers Portal.jpg');
  background-size: cover;
  background-position: center;
  color: #fff !important;
}
#card-paint-workers > * {
  position: relative;
  z-index: 1;
}
#card-paint-workers .bento-card-icon {
  color: #fff;
}
#card-paint-workers .bento-card-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

#card-factory-outlets {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/outlet.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-factory-outlets > * {
  position: relative;
  z-index: 1;
}
#card-factory-outlets .bento-card-icon {
  color: #fff;
}
#card-factory-outlets .bento-card-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media (min-width: 601px) {
  #card-factory-outlets .bento-card-icon {
    font-size: 28px;
  }
  #card-factory-outlets .bento-card-title {
    font-size: 34px;
  }
}
#card-products {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/products.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-products > * {
  position: relative;
  z-index: 1;
}
#card-products .bento-card-icon {
  color: #fff;
}
#card-products .bento-card-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
#card-color-studio {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/colors.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-color-studio > * {
  position: relative;
  z-index: 1;
}
#card-color-studio .bento-card-icon {
  color: #fff;
}
#card-color-studio .bento-card-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
#card-catalogs {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/catelog.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-catalogs > * {
  position: relative;
  z-index: 1;
}
#card-catalogs .bento-card-icon {
  color: #fff;
}
#card-catalogs .bento-card-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
#card-calculator {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/paint calculator.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-calculator > * {
  position: relative;
  z-index: 1;
}
#card-calculator .bento-card-icon {
  color: #fff;
}
#card-calculator .bento-card-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
#card-visualizer {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('assets/paint visualizer.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#card-visualizer > * {
  position: relative;
  z-index: 1;
}
#card-visualizer .bento-card-icon {
  color: #fff;
}
#card-visualizer .bento-card-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
@media (min-width: 601px) {
  #card-visualizer .bento-card-icon {
    font-size: 28px;
  }
  #card-visualizer .bento-card-title {
    font-size: 34px;
  }
}
.card-cobalt { background: var(--color-cobalt-deep);   color: #fff; }
.card-forest { background: var(--color-forest-ink);    color: #fff; }
.card-maroon { background: var(--color-maroon-plate);  color: #fff; }
.card-mustard{ background: var(--color-mustard-pop);   color: #000; }
.card-lavender{background: var(--color-lavender-mist); color: #000; }
.card-cobaltb{ background: var(--color-cobalt-band);   color: #fff; }
.card-white  { background: var(--color-white-plate);   color: #000; }
.card-linen  { background: var(--color-linen-canvas);  color: #000; }

/* ── COBALT BAND SECTION ── */
.band-cobalt {
  background: var(--color-cobalt-band);
  border-top: var(--border-ink);
  border-bottom: var(--border-ink);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.stats-house-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: 1;
  pointer-events: none;
}
.band-cobalt .section-inner {
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .stats-house-bg {
    display: none;
  }
}
.band-cobalt .section-title,
.band-cobalt .section-label { color: #fff; }
.band-cobalt .section-sub { color: rgba(255,255,255,0.7); }
.band-cobalt .section-label { border-color: rgba(255,255,255,0.4); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.stat-card {
  background: rgba(255,255,255,0.12);
  border: 2.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-cards);
  padding: 32px 28px;
  color: #fff;
}
.stat-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.stat-unit { font-size: 28px; font-weight: 800; }
.stat-label { font-size: 16px; margin-top: 8px; opacity: 0.8; }

/* ── MAROON BAND ── */
.band-maroon {
  background: var(--color-maroon-plate);
  border-top: var(--border-ink);
  border-bottom: var(--border-ink);
  padding: 80px 24px;
}
.band-maroon .section-title { color: #000000; }
.band-maroon .section-label { color: #fff; border-color: rgba(255,255,255,0.4); }
.band-maroon .section-sub { color: rgba(255,255,255,0.7); }
.band-maroon .btn-primary {
  background: var(--color-lime-spark);
  color: #000;
  border-color: #000;
}
.band-maroon .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.band-maroon .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ── CONTACT / INFO SECTION ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.info-card {
  background: var(--color-white-plate);
  border: var(--border-ink);
  border-radius: var(--radius-cards);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.info-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-ink);
  border-radius: 16px;
  background: var(--color-linen-canvas);
}
.info-card h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
}
.info-card p { font-size: 15px; color: var(--color-sage-mute); line-height: 1.5; }

/* ── FOOTER ── */
.footer-section {
  background: var(--color-ink-black);
  border-top: var(--border-ink);
  padding: 64px 24px 40px;
}
.footer-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand-name {
  margin-bottom: 12px;
}
.footer-brand-name img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.social-pill {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-tags);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.15s;
}
.social-pill:hover { background: rgba(255,255,255,0.15); }
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--color-lime-spark); }
.footer-subscribe p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.5; }
.subscribe-row { display: flex; gap: 8px; }
.subscribe-row input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-inputs);
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  outline: none;
  font-family: var(--font-primary);
}
.subscribe-row input::placeholder { color: rgba(255,255,255,0.35); }
.subscribe-row input:focus { border-color: var(--color-lime-spark); }
.subscribe-row button {
  background: var(--color-lime-spark);
  color: #000;
  border: var(--border-ink);
  border-radius: var(--radius-buttons);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s;
  font-family: var(--font-primary);
}
.subscribe-row button:hover { transform: translateY(-1px); }
.footer-bottom {
  max-width: var(--page-max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(210,232,35,0.12);
  border: 2px solid var(--color-lime-spark);
  border-radius: var(--radius-tags);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-lime-spark);
  letter-spacing: 0.04em;
  margin-top: 16px;
  width: fit-content;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--color-white-plate);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 72px 16px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink-black);
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav a:hover { background: var(--color-linen-canvas); }

/* ══════════════════════════════════════
   RESPONSIVE — COMPACT DESKTOP  (≤ 1120 px)
══════════════════════════════════════ */
@media (min-width: 938px) and (max-width: 1120px) {
  .nav-links a {
    padding: 6px 9px;
    font-size: 13px;
  }
  .nav-links { gap: 2px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-inner { gap: 10px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 937 px)
══════════════════════════════════════ */
@media (max-width: 937px) {

  /* NAV */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-lang-selector { display: none; }
  .nav-cta { display: none; }
  .nav-float { top: 8px; padding: 0 12px; }
  .nav-inner {
    border-radius: 60px;
    padding: 6px 6px 6px 16px;
    gap: 10px;
  }
  .nav-right { margin-left: auto; }

  /* HERO — keep the two-column feel, just tighter */
  .hero-section { padding: 56px 20px 64px; }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }
  .hero-right { display: flex; }
  .hero-image-wrap {
    max-width: 280px;
    margin-bottom: -100px;
  }
  .hero-headline { font-size: clamp(36px, 5vw, 60px); }

  /* BENTO — keep 2-column with real heights */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .bento-card.span2 { grid-column: span 2; }
  .bento-card { min-height: 180px; }
  .bento-card.large { min-height: 220px; }

  /* STATS */
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  /* CONTACT */
  .info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 600 px)
══════════════════════════════════════ */
@media (max-width: 600px) {

  /* NAV */
  .nav-float { top: 8px; padding: 0 16px; }
  .nav-inner { padding: 6px 6px 6px 16px; gap: 8px; }
  .nav-logo img { height: 28px; }
  .nav-inner.search-active .nav-logo { display: none; }
  .nav-inner.search-active .nav-toggle { display: none; }

  /* HERO — stacked, but keep house image as decorative bg accent */
  .hero-section {
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-yellow-overlay {
    display: none !important;
  }
  .hero-house-bg {
    display: none !important;
  }
  .hero-section {
    padding: 88px 16px 48px;
    overflow: hidden;
  }
  .hero-left {
    color: #ffffff;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero-right {
    display: none !important;
  }
  .hero-headline {
    color: #ffffff;
    font-size: clamp(38px, 10vw, 54px);
    letter-spacing: -2px;
    line-height: 1.1;
  }
  .hero-headline br {
    display: none;
  }
  .hero-sub { font-size: 16px; max-width: 100%; margin-bottom: 24px; color: rgba(255, 255, 255, 0.9); }
  .hero-actions {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }
  .btn-ghost {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }
  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }
  .btn-primary, .btn-ghost {
    font-size: 14px;
    padding: 13px 20px;
    flex: 1;
    text-align: center;
  }

  /* SECTIONS */
  .section-wrap { padding: 48px 16px; }
  .section-title {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.5px;
    line-height: 1.1;
  }
  .section-title br {
    display: none;
  }
  .section-sub { font-size: 16px; margin-bottom: 32px; }
  .section-label { font-size: 12px; padding: 4px 12px; }
  .band-cobalt { padding: 48px 16px; }
  .band-maroon { padding: 48px 16px; }

  /* BENTO — single column on mobile */
  .bento-grid {
    flex-direction: column;
    gap: 12px;
  }
  .bento-full,
  .bento-60,
  .bento-40,
  .bento-third {
    flex: 1 1 100%;
    width: 100%;
  }
  .bento-card {
    padding: 24px 20px;
    min-height: auto;
    gap: 12px;
    border-radius: 24px !important;
  }
  .bento-card.large {
    border-radius: 28px !important;
  }
  .bento-card-icon {
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .bento-card-title { font-size: 18px; letter-spacing: -0.2px; }
  .bento-card-desc { font-size: 13px; opacity: 0.85; }
  .bento-card-arrow { font-size: 13px; padding: 6px 12px; margin-top: 8px; }

  /* STATS */
  .stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .stats-row .stat-card:last-child {
    grid-column: span 1;
  }
  .stat-card { padding: 24px 20px; border-radius: 24px; }
  .stat-num { font-size: 44px; }
  .stat-label { font-size: 14px; }

  /* CONTACT */
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .info-grid .info-card:nth-child(1) {
    grid-column: span 2;
    order: 3;
  }
  .info-grid .info-card:nth-child(2) {
    grid-column: span 1;
    order: 1;
  }
  .info-grid .info-card:nth-child(3) {
    grid-column: span 1;
    order: 2;
  }
  .info-card { padding: 20px 16px; border-radius: 20px; gap: 8px; }
  .info-icon { font-size: 24px; width: 40px; height: 40px; }
  .info-card h4 { font-size: 16px; }
  .info-card p { font-size: 13px; }
  .btn-ghost { font-size: 12px; padding: 8px 14px; }

  /* FOOTER */
  .footer-section { padding: 48px 20px 32px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .footer-inner > div:first-child { grid-column: span 2; text-align: left; }
  .footer-brand-name { text-align: left; }
  .footer-brand-name img { margin: 0; }
  .footer-tagline { text-align: left; }
  .footer-socials { justify-content: flex-start; }
  .footer-col { text-align: left; grid-column: span 1; }
  .footer-col ul { display: flex; flex-direction: column; align-items: flex-start; }
  .footer-subscribe { grid-column: span 2; text-align: left; }
  .subscribe-row { margin: 0; max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    margin-top: 40px;
  }
  .footer-bottom-links { justify-content: flex-start; gap: 16px; flex-wrap: wrap; }

  /* ANNOUNCEMENT */
  .banner-strip { font-size: 12px; padding: 10px 14px; line-height: 1.5; }

  /* COY CAROUSEL MOBILE SPECIFICS */
  .coy-slider-track {
    padding: 12px 16px 24px 16px;
    margin: -12px -16px 0 -16px;
    gap: 16px;
  }
  .coy-item {
    flex: 0 0 72vw;
    aspect-ratio: 2 / 3;
    height: auto;
    border-radius: 16px;
  }
  
  /* SHORTS CAROUSEL MOBILE SPECIFICS */
  .shorts-slider-track {
    padding: 12px 16px 24px 16px;
    margin: -12px -16px 0 -16px;
    gap: 12px;
  }
  .short-card {
    flex: 0 0 180px;
    width: 180px;
    height: 310px;
  }
}

/* ── CHATBOT WIDGET ── */
.chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-primary);
}

.chatbot-toggle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-midnight-ink);
  color: #fff;
  border: 2px solid var(--color-lime-spark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s, box-shadow 0.2s;
  position: relative;
}

.chatbot-toggle-btn:hover {
  transform: scale(1.08) translateY(-2px);
  background: #000;
  box-shadow: 0 12px 30px rgba(200, 217, 15, 0.3);
}

.chatbot-toggle-btn:active {
  transform: scale(0.95);
}

.chat-input-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(40px) scale(0.95);
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
  width: 70%;
  max-width: 750px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.chat-input-wrapper.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

.inputbar {
  flex: 1;
  width: 100%;
  background: #0f0b13;
  box-shadow: 0 4px 42px rgba(0, 0, 0, 0.532);
  border: 1px solid rgba(253, 245, 230, 0.045);
  border-radius: 36px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eef1ffb2;
  position: relative;
}

.chatbox {
  flex: 1;
  background: transparent;
  border: none;
  color: #eef1ffb2;
  outline: none;
  resize: none;
  height: 24px;
  max-height: 120px;
  overflow-y: auto;
  line-height: 24px;
  font-family: inherit;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
}

.chatbox::placeholder {
  color: rgba(238, 241, 255, 0.4);
}

.mso {
  cursor: pointer;
  font-size: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
  user-select: none;
  font-family: 'Material Symbols Outlined', sans-serif;
}

.mso:hover {
  opacity: 1;
}

.chat-close-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: #6b7280; /* Gray color */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  border: none;
  transition: transform 0.1s, color 0.2s;
  flex-shrink: 0;
  font-size: 24px;
}

.chat-close-circle:hover {
  transform: scale(1.1);
  color: #374151; /* Darker gray on hover */
}

.popup-menu {
  position: absolute;
  bottom: 70px;
  left: 0px;
  border-radius: 40px;
  padding: 10px;
  width: 220px;
  z-index: 999;
  background: #0f0b13;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(111, 111, 111, 0.1);
  color: #a9a9a9;
}

.popup-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.popup-menu li {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 14px;
  border-radius: 30px;
}

.popup-menu li:hover {
  background: rgba(255,255,255,0.1);
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  padding: 0 4px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: #eef1ffb2;
  border-radius: 50%;
  animation: wave 1.2s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes wave {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

/* AI Response Popup */
.ai-response-popup {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  max-width: none;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  background-color: rgba(18, 18, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(28, 28, 28, 0.6);
  color: #eef1ffb2;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  z-index: 10;
  overflow: hidden;
  backdrop-filter: blur(45px) saturate(1.05);
  pointer-events: none;
  transition: transform .22s cubic-bezier(.2, .9, .2, 1), opacity .18s ease-out;
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
  transform: translateY(20px);
  opacity: 0;
}
.ai-response-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ai-response-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ai-badge img {
  height: 24px;
}
.ai-response-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
}
.ai-response-close:hover {
  color: #fff;
}
.ai-response-messages {
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
}
.ai-user, .ai-assistant {
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
}
.ai-user {
  background: rgba(255, 255, 255, 0.1);
  align-self: flex-end;
}
.ai-assistant {
  background: rgba(0, 0, 0, 0.3);
  align-self: flex-start;
}
.ai-response-error {
  color: #ff6b6b;
}

@media (max-width: 600px) {
  .chat-input-wrapper {
    width: 95%;
  }
  .inputbar {
    width: 100%;
    box-sizing: border-box;
  }
}

/* ── AI TOOL SUGGESTIONS ── */
.ai-text {
  margin: 0 0 10px 0;
  font-size: 13px;
  line-height: 1.5;
}
.ai-tool-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.ai-tool-card {
  flex: 1 1 100px;
  min-width: 100px;
  max-width: 180px;
  height: 72px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.ai-tool-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.55), rgba(0,0,0,0.72));
  border-radius: 12px;
  transition: background 0.2s;
}
.ai-tool-card:hover .ai-tool-overlay {
  background: linear-gradient(160deg, rgba(0,0,0,0.4), rgba(0,0,0,0.58));
}
.ai-tool-name {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}
.ai-tool-icon {
  font-size: 9px;
  opacity: 0.8;
}

/* COY CAROUSEL */
.coy-section { 
  background: transparent; 
  overflow: hidden; 
  position: relative; 
  border-radius: 0; 
  margin-top: 80px; 
  box-shadow: none;
  border: none;
}
.coy-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.coy-header .section-sub { max-width: 500px; }
.btn-coy-view { background: #1e2330; color: #fff; border-radius: 9999px; padding: 12px 24px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.btn-coy-view:hover { background: var(--color-lime-spark); color: #000; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(210,232,35,0.3); }
.coy-slider-container { position: relative; width: 100%; display: flex; align-items: center; padding-bottom: 12px; }
.coy-slider-track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding: 20px 24px 40px 24px; margin: -20px 14px 0 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.coy-slider-track::-webkit-scrollbar { display: none; }
.coy-item { position: relative; flex: 0 0 280px; aspect-ratio: 2 / 3; height: auto; border-radius: 20px; overflow: hidden; scroll-snap-align: start; cursor: pointer; text-decoration: none; display: block; background: #2a2e36; box-shadow: none; transition: transform 0.3s; }
.coy-item:hover { transform: translateY(-8px); }
.coy-bg { 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; 
  height: auto;
  min-height: 100%;
  object-fit: cover; 
  object-position: bottom center;
  transition: transform 0.8s; 
  opacity: 0.8; 
  z-index: 1;
}
.coy-item:hover .coy-bg { transform: scale(1.05); opacity: 1; }
.coy-img-wrap {
  width: 100%;
  height: 55%;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.split-layout .coy-img-wrap:first-child {
  height: auto;
  aspect-ratio: 1 / 1;
}
.split-layout .coy-img-wrap:last-child {
  height: auto;
  flex: 1;
}
.coy-fg { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease; 
  filter: none; 
}
.coy-item:hover .coy-fg { transform: scale(1.05); }
.coy-content { 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  z-index: 3; 
  background: none; 
  padding: 0; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  align-items: center; 
  text-align: center;
  overflow: hidden;
}
.coy-text-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.coy-title { 
  font-size: 11px; 
  font-weight: 700; 
  color: rgba(255,255,255,0.9); 
  text-align: center;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6); 
}
.coy-desc {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  max-width: 100%;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.coy-explore { 
  font-size: 16px; 
  color: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: absolute;
  bottom: 20px;
  right: 24px;
  opacity: 0; 
  transform: translate(5px, 5px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  margin-top: 0;
  -webkit-text-stroke: 1px #fff;
}
.coy-item:hover .coy-explore { 
  opacity: 1; 
  transform: translate(0, 0); 
  color: #fff; 
}
.coy-btn { position: absolute; top: calc(50% - 12px); transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: #fff; border: none; color: #000; font-size: 16px; cursor: pointer; z-index: 5; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: background 0.2s, transform 0.2s; display: flex; align-items: center; justify-content: center; }
.coy-btn:hover { background: var(--color-lime-spark); transform: translateY(-50%) scale(1.05); }
.coy-btn:active { transform: translateY(-50%) scale(0.95); }
.coy-prev { left: 24px; }
.coy-next { right: 24px; }
@media (max-width: 768px) {
  .coy-item { flex: 0 0 80vw; aspect-ratio: 2 / 3; height: auto; scroll-snap-align: center; }
  .coy-section { margin-top: 32px; }
  .coy-slider-track { padding: 16px; gap: 16px; margin: 0; }
  .coy-slider-container { padding-bottom: 0; }
  .coy-btn { display: none; }
  .coy-header { margin-bottom: 24px; gap: 12px; }
}

/* FEATURED PRODUCTS CAROUSEL */
.featured-section {
  background: var(--color-linen-canvas);
  padding: 48px 24px;
  overflow: hidden;
}
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.featured-controls {
  display: flex;
  gap: 12px;
}
.feat-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-ink-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.feat-control-btn:hover {
  background: var(--color-ink-black);
  color: #fff;
  border-color: var(--color-ink-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.featured-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  height: auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background: #f0f0f0;
}
.featured-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.featured-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.featured-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.featured-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.featured-banner-link:hover .featured-banner-img {
  transform: scale(1.02);
}
.featured-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  line-height: 1.3;
  padding: 0 8px;
}
.ai-tool-icon {
  font-size: 9px;
  opacity: 0.8;
}

/* Featured slider: 16:9 on mobile */
@media (max-width: 600px) {
  .featured-slider-container {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }
  .featured-section {
    padding: 32px 16px;
  }
}
/* INSPIRING IDEAS / SHORTS SECTION */
.shorts-section {
  background: var(--color-ink-black);
  padding: 80px 24px;
  overflow: hidden;
}
.shorts-header {
  margin-bottom: 32px;
}
.shorts-carousel-container {
  position: relative;
  width: 100%;
}
.shorts-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.shorts-slider-track::-webkit-scrollbar {
  display: none;
}
.short-card {
  flex: 0 0 240px;
  width: 240px;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  background: #000;
  text-decoration: none;
}
.short-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.8);
}
.short-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.short-card:hover .short-video {
  transform: scale(1.05);
}
.short-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  pointer-events: none;
}
.short-views {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.short-views i {
  font-size: 11px;
}
.short-cta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  z-index: 10;
}
.short-card:hover .short-cta {
  background: #fff;
  color: var(--color-ink-black);
}
.shorts-control {
  position: absolute;
  top: calc(50% - 24px - 12px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s, background 0.2s;
  color: var(--color-ink-black);
}
.shorts-control:hover {
  background: var(--color-lime-spark);
  transform: scale(1.05);
}
.shorts-prev { left: -24px; }
.shorts-next { right: -24px; }

@media (max-width: 1200px) {
  .shorts-prev { left: 0; }
  .shorts-next { right: 0; }
}

@media (max-width: 991px) {
  .shorts-control { display: none; }
  .shorts-slider-track { padding-bottom: 16px; gap: 16px; }
  .short-card { flex: 0 0 220px; width: 220px; height: 380px; }
}
@media (max-width: 767px) {
  .short-card { flex: 0 0 200px; width: 200px; height: 350px; }
}

/* SHORTS MODAL */
.shorts-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.shorts-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.shorts-modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.shorts-modal-actions {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 16px;
  z-index: 10;
}
.shorts-modal-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.shorts-modal-btn:hover {
  background: #fff;
  color: #000;
}
.shorts-modal-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
}
.shorts-modal-content {
  position: relative;
  width: 100% !important;
  max-width: 420px !important;
  height: 80vh !important;
  min-height: 600px;
  max-height: 850px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.shorts-modal.active .shorts-modal-content.swiper-slide-active {
  transform: scale(1) translateY(0);
}
.shorts-modal-video-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.shorts-modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.shorts-modal-video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  pointer-events: none;
}
.shorts-modal-caption {
  position: absolute;
  bottom: 60px;
  left: 20px;
  pointer-events: auto;
}
.shorts-modal-side-controls {
  position: absolute;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: auto;
}
.shorts-modal-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.shorts-modal-icon-btn:hover { background: rgba(255,255,255,0.2); }
.shorts-modal-timeline-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  pointer-events: auto;
  margin-top: auto;
}
.shorts-modal-play-btn {
  background: none; border: none; color: #fff; font-size: 16px; cursor: pointer;
}
.shorts-modal-timeline {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.shorts-modal-progress {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: #fff;
  border-radius: 2px;
}
.shorts-modal-progress::after {
  content: '';
  position: absolute;
  right: -4px; top: -3px;
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
}
.shorts-modal-time {
  color: #fff; font-size: 12px; font-variant-numeric: tabular-nums;
}
.shorts-modal-info {
  height: 72px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-top: 1px solid #222;
}
.shorts-modal-cta-link {
  text-decoration: none;
  width: 100%;
}
.shorts-modal-cta-btn {
  width: 100%;
  background: #2a2e36;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}
.shorts-modal-cta-btn:hover {
  background: #fff;
  color: #000;
}
.shorts-modal-inquiry {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  z-index: 10;
  transition: all 0.3s;
}
.shorts-modal-inquiry:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 768px) {
  .shorts-modal-content {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  .shorts-modal-actions {
    top: 16px; right: 16px;
  }
  .shorts-modal-inquiry {
    display: none;
  }
}


/* SHORTS MODAL COVERFLOW - SHOW EXACTLY 3, DARKER INACTIVE */
.shorts-modal-swiper .swiper-slide {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
}
.shorts-modal-swiper .swiper-slide.swiper-slide-active,
.shorts-modal-swiper .swiper-slide.swiper-slide-prev,
.shorts-modal-swiper .swiper-slide.swiper-slide-next {
  opacity: 0.3 !important;
  visibility: visible;
}
.shorts-modal-swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}


/* Hero Slide Toggle Dots */
.bg-dot {
  width: 50px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin: 0 4px;
}

.bg-dot.active {
  background: var(--color-lime-spark);
  width: 70px;
  box-shadow: 0 0 10px var(--color-lime-spark);
}

/* --- MOBILE BOTTOM NAV --- */

    .mobile-bottom-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #f3f3f1;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: 16px 0;
      padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .bottom-nav-item {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000000;
      text-decoration: none;
      transition: color 0.3s, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .bottom-nav-item .material-symbols-rounded {
      font-size: 28px;
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
      transition: font-variation-settings 0.3s, color 0.3s, transform 0.3s;
    }

    .bottom-nav-item.active,
    .bottom-nav-item:active {
      color: #000000;
    }

    .bottom-nav-item.active .material-symbols-rounded {
      font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      transform: scale(1.15);
    }

    @media (max-width: 768px) {
      .mobile-bottom-nav {
        display: flex;
      }

      .hide-on-mobile {
        display: none !important;
      }

      body {
        padding-bottom: 70px !important;
      }

      #chatbot-toggle-btn {
        display: none !important;
      }
    }
  
/* Smooth Page Transitions */
body {
    animation: pageFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.page-transition-out {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%
   SKELETON LOADER
P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P%P% */
.skeleton-card {
    background: var(--color-white-plate);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.skeleton-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: #f0f0f0;
}

.skeleton-text {
    height: 16px;
    border-radius: 8px;
    background: #f0f0f0;
}

.skeleton-title {
    width: 70%;
    height: 24px;
}

.skeleton-desc {
    width: 100%;
    height: 14px;
}

.skeleton-price {
    width: 40%;
    height: 20px;
    margin-top: 10px;
}

.skeleton-shimmer {
    position: relative;
    overflow: hidden;
}

.skeleton-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.6) 20%,
        rgba(255, 255, 255, 0.8) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

