:root {
  --red: #EB3E3E;
  --red-dark: #C42222;
  --black: #010101;
  --ink: #171A1E;
  --g700: #4A4F58;
  --g500: #7A7F87;
  --g300: #D6D3CC;
  --white: #fff;
  --pearl: #FAF7F2;
  --graybg: #D9D9D9;
  --fh: 'Poppins', sans-serif;
  --fb: 'Inter', sans-serif;
  --fc: 'Barlow Condensed', sans-serif;
  --ink-btn: #171A1E;
}

[data-theme="dark"] {
  --white: #0B0D10;
  --ink: #FAF7F2;
  --pearl: #171A1E;
  --graybg: #212529;
  --g300: #4A4F58;
  --g500: #7A7F87;
  --g700: #D6D3CC;
  --ink-btn: #171A1E;
}

[data-theme="dark"] .btn-light {
  background: #2a2e35;
  color: var(--g700);
}

[data-theme="dark"] .tracker-form button:hover {
  background: var(--red-dark);
}

[data-theme="dark"] .tracker-form button {
  background: var(--red);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden
}

h1,
h2,
h3 {
  font-family: var(--fh);
  line-height: 1.1;
  letter-spacing: -.01em
}

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

.reveal {
  opacity: 0
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s;
  position: relative
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-red:hover {
  transform: translateY(-2px);
  background: var(--red-dark)
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px)
}

.btn-pill {
  background: var(--red);
  color: #fff;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: .85rem
}

.btn-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  animation: pulse 2.4s infinite
}

.btn-wa svg {
  width: 26px;
  height: 26px;
  fill: #fff
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 30px rgba(37, 211, 102, .3)
  }

  50% {
    box-shadow: 0 12px 40px rgba(37, 211, 102, .65)
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px
}

/* HEADER — blanco fijo, con sombra sutil al hacer scroll */
.hdr {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  padding: 18px 0;
  transition: padding .3s, box-shadow .3s, background .3s;
  border-bottom: 1px solid var(--graybg)
}

.hdr.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08)
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-img {
  height: 38px;
  width: auto;
  display: block
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none
}

.nav-menu a {
  font-family: var(--fh);
  font-size: .88rem;
  font-weight: 500;
  color: var(--g700);
  text-decoration: none;
  transition: color .2s
}

.nav-menu a:hover {
  color: var(--red)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px
}

/* MENÚ MÓVIL — pantalla completa */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .4s ease
}

.mob-menu.open {
  transform: translateX(0)
}

.mob-menu a {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color .2s
}

.mob-menu .theme-toggle svg {
  stroke: #fff;
}

.mob-menu a:hover {
  color: var(--red)
}

.mob-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px
}

/* HERO */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px
}

.hero-img {
  position: absolute;
  inset: -8% -8% -8% -8%;
  background: url('../assets/IMG_9898.jpg') center/cover;
  will-change: transform
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, .94) 45%, rgba(10, 10, 10, .55) 100%)
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .9
}

.hero-cnt {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%
}

.hero-cnt h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  max-width: 680px;
  margin-bottom: 1.4rem;
  text-transform: uppercase
}

.hero-sub {
  font-size: 1.05rem;
  color: #d5d3cd;
  font-weight: 300;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 2.4rem
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px
}

/* Cajas de estadísticas */
.hero-stats {
  display: flex;
  gap: 2px;
  max-width: 760px;
  flex-wrap: wrap
}

.stat {
  flex: 1;
  min-width: 170px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 22px
}

.stat-num {
  font-family: var(--fh);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px
}

.stat-num .unit {
  font-size: 1.1rem;
  font-weight: 600
}

.stat-lbl {
  font-size: .8rem;
  font-weight: 300;
  color: var(--g300);
  margin-top: 6px;
  line-height: 1.3
}

.stat.key {
  display: flex;
  align-items: center;
  gap: 12px
}

.stat.key svg {
  width: 24px;
  height: 24px;
  fill: var(--red);
  flex-shrink: 0
}

/* RASTREAR TRÁMITE */
.tracker-sec {
  padding: 80px 0 70px;
  text-align: center;
  background: var(--white);
  transition: background .3s;
}

.tracker-sec h2 {
  color: var(--red);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: .04em;
  margin-bottom: 10px
}

.tracker-sec p {
  color: var(--g500);
  font-size: .98rem;
  margin-bottom: 30px
}

.tracker-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: var(--pearl);
  border-radius: 6px;
  padding: 6px;
  gap: 8px
}

.tracker-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 14px;
  font-family: var(--fb);
  font-size: .92rem;
  color: var(--ink)
}

.tracker-form input:focus {
  outline: none
}

.tracker-form button {
  background: var(--ink-btn);
  color: #fff;
  border: none;
  padding: 0 26px;
  border-radius: 4px;
  font-family: var(--fh);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: background .25s
}

.tracker-form button:hover {
  background: var(--red)
}

/* SERVICIOS */
.svc-sec {
  padding: 70px 0
}

.svc-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px
}

.svc-logo-img {
  height: 34px;
  width: auto;
  display: block
}

.svc-logo-img.elaa {
  height: 44px
}

.svc-eyebrow {
  font-family: var(--fc);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g500)
}

.svc-sec h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 26px;
  max-width: 600px
}

.svc-sec p.svc-desc {
  color: var(--g500);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 26px
}

/* Blanco aperlado, no gris — sección de inmobiliaria */
.svc-sec.alt {
  background: var(--pearl)
}

/* PROPIEDADES — fondo gris (distinto del blanco aperlado de "inmobiliarios") */
.properties {
  background: var(--graybg);
  padding: 80px 0
}

.prop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px
}

.prop-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800
}

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

.prop-count {
  font-size: .85rem;
  color: var(--g500)
}

#exploreAllBtn {
  font-family: var(--fh);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0
}

#exploreAllBtn:hover {
  color: var(--red)
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  margin-bottom: 34px
}

.prop-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20, 18, 14, .06);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, background .3s
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -14px rgba(20, 18, 14, .22)
}

.prop-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: repeating-conic-gradient(#e5e1d4 0% 25%, #efece1 0% 50%) 50%/24px 24px
}

.prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.prop-card:hover .prop-img img {
  transform: scale(1.06)
}

.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--fc);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px
}

.prop-info {
  padding: 20px 20px 24px
}

.prop-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--g500);
  margin-bottom: 12px
}

.prop-loc svg {
  width: 13px;
  height: 13px;
  fill: var(--red)
}

.prop-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0efec
}

.prop-price span {
  color: var(--red);
  font-size: 1.15rem
}

.link-more.small {
  font-family: var(--fh);
  font-weight: 600;
  font-size: .85rem;
  color: var(--red);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.link-more.small:hover {
  color: var(--red-dark)
}

.properties-caption {
  text-align: center;
  color: var(--g500);
  font-size: .92rem;
  max-width: 560px;
  margin: 0 auto
}

/* MODAL DE DETALLE DE PROPIEDAD */
.prop-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.prop-modal.open {
  display: flex
}

.prop-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px)
}

.prop-modal-panel {
  position: relative;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 12px;
  max-width: 1160px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .4)
}

.prop-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.prop-modal-gallery {
  position: relative;
  background: repeating-conic-gradient(#e5e1d4 0% 25%, #efece1 0% 50%) 50%/24px 24px;
  min-height: 460px;
  overflow: hidden
}

.pm-track {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1)
}

.pm-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0
}

.pm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s
}

.pm-arrow:hover {
  background: rgba(0, 0, 0, .75)
}

.pm-arrow.prev {
  left: 14px
}

.pm-arrow.next {
  right: 14px
}

.pm-arrow svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.pm-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2
}

.pm-gallery-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s
}

.pm-gallery-dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 5px
}

.prop-modal-body {
  padding: 38px 36px;
  max-height: 92vh;
  overflow-y: auto
}

.prop-modal-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 10px 0 12px
}

.prop-modal-body .prop-loc {
  margin-bottom: 16px
}

.pm-price {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px
}

.pm-price span {
  color: var(--red)
}

.pm-specs {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 18px
}

.pm-spec {
  display: flex;
  flex-direction: column
}

.pm-spec strong {
  font-family: var(--fh);
  font-size: 1.05rem
}

.pm-spec span {
  font-size: .75rem;
  color: var(--g500);
  text-transform: uppercase;
  letter-spacing: .05em
}

.pm-desc {
  color: var(--g500);
  line-height: 1.75;
  margin-bottom: 20px
}

.pm-map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 0, 0, .08)
}

.pm-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  display: block;
  filter: grayscale(.15)
}

.pm-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.btn-wa-solid {
  background: #25D366;
  color: #fff
}

.btn-wa-solid:hover {
  background: #1DA851;
  transform: translateY(-2px)
}

@media(max-width:760px) {
  .prop-modal-panel {
    grid-template-columns: 1fr
  }

  .prop-modal-gallery {
    min-height: 260px
  }

  .prop-modal-body {
    max-height: none
  }
}

/* NOSOTROS */
.about {
  padding: 90px 0
}

.about-section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 36px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 44px;
  align-items: start;
}

.about-inner--two {
  grid-template-columns: 1fr 1fr;
}

.about-inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-inner p {
  color: var(--g500);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-title {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cf-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--g700);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cf-group input,
.cf-group textarea {
  font-family: var(--fb);
  font-size: .9rem;
  padding: 10px 13px;
  border: 1.5px solid var(--g300);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, background .3s, color .3s;
  width: 100%;
  resize: vertical;
}

.cf-group input:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.cf-submit {
  width: 100%;
  justify-content: center;
}

/* Map */
.about-map {
  display: flex;
  flex-direction: column;
}

.about-map-frame {
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
  border: 1.5px solid var(--g300);
  margin-bottom: 10px;
}

.about-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.about-map-addr {
  font-size: .82rem;
  color: var(--g500);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.about-map-addr svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive about */
@media(max-width:1024px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-map {
    grid-column: 1 / -1;
  }

  .about-map-frame {
    height: 240px;
  }
}

@media(max-width:640px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  background: var(--black);
  color: #8f8d89;
  padding: 60px 0 26px
}

.foot-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  display: block
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px
}

.foot-grid h4 {
  font-family: var(--fh);
  color: #fff;
  font-size: .95rem;
  margin-bottom: 16px
}

.foot-grid p {
  font-size: .86rem;
  line-height: 1.8
}

.foot-grid ul {
  list-style: none
}

.foot-grid a {
  color: #8f8d89;
  text-decoration: none;
  font-size: .86rem;
  line-height: 2.2;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color .2s
}

.foot-grid a:hover {
  color: var(--red)
}

.foot-grid a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  font-size: .78rem;
  text-align: center;
  color: #5c5a57
}

@media(max-width:980px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:920px) {
  .nav-menu {
    display: none
  }

  .hamburger {
    display: flex
  }

  .about-inner {
    grid-template-columns: 1fr
  }

  .about-visual {
    aspect-ratio: 16/10
  }

  .tracker-form {
    flex-direction: column
  }

  #heroCanvas {
    width: 100%;
    opacity: .35
  }
}

@media(max-width:560px) {
  .foot-grid {
    grid-template-columns: 1fr
  }
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important
  }
}

/* === UTILITIES EXTRACED FROM INLINE STYLES === */
.btn-header-agenda {
  padding: 11px 22px;
  font-size: .8rem;
}

.mt-10 {
  margin-top: 10px;
}

.text-g500 {
  color: var(--g500);
}

.btn-light {
  background: #f0efec;
  color: var(--ink);
}

.hero-title-anim {
  opacity: 0;
  transform: translateY(24px);
}

.hero-sub-anim {
  opacity: 0;
  transform: translateY(20px);
}

.hero-btns-anim,
.stat-anim {
  opacity: 0;
  transform: translateY(16px);
}

/* Dark Mode Toggle Styles */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}

.theme-toggle:hover {
  background: rgba(122, 127, 135, 0.15);
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
}

:root[data-theme="dark"] .moon-icon {
  display: none;
}

:root[data-theme="dark"] .sun-icon {
  display: block;
}

:root:not([data-theme="dark"]) .sun-icon {
  display: none;
}

:root:not([data-theme="dark"]) .moon-icon {
  display: block;
}

/* CoolAlertJS: forzar a que respete el tema claro/oscuro del sitio */
.cool-alert-modal {
  background: var(--white) !important;
  color: var(--ink) !important;
}

.cool-alert-modal-title {
  color: var(--ink) !important;
}

.cool-alert-modal-message {
  color: var(--g700) !important;
}

.cool-alert-close {
  color: var(--ink) !important;
}

/* Countdown circular de auto-cierre */
.cool-alert-countdown {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cool-alert-countdown svg {
  transform: rotate(-90deg);
}

.cool-alert-countdown-track {
  fill: none;
  stroke: var(--g300);
  stroke-width: 3;
}

.cool-alert-countdown-ring {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}

.cool-alert-countdown-number {
  position: absolute;
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink);
}