/* ==========================================================================
   Dr. Md. Ekramul Haque Joarder — Premium Medical Website
   Design system inspired by DMK Health, customised for a single surgeon.
   ========================================================================== */

:root {
  /* --- Color system --- */
  --teal-900: #062E2B;
  --teal-800: #0A4643;
  --teal-700: #0E5A56;
  --teal-600: #137873;
  --teal-500: #1B948D;
  --teal-100: #E3F4F2;
  --teal-50: #F3FAF9;

  --navy-900: #0D1F2D;
  --navy-700: #1B3446;

  --amber-600: #C97A2E;
  --amber-500: #DB9142;
  --amber-100: #FBEBD9;

  --cream-50: #FBF9F4;
  --white: #FFFFFF;

  --gray-700: #4C5760;
  --gray-500: #78838B;
  --gray-300: #D8DFDD;
  --gray-200: #E9EFED;
  --gray-100: #F2F5F4;

  --border-color: var(--gray-200);

  /* --- Type --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- Shape / shadow --- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(13, 31, 45, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 31, 45, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 31, 45, 0.14);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-600);
  flex-shrink: 0;
}

.text-teal {
  color: var(--teal-700) !important;
}

.text-amber {
  color: var(--amber-600) !important;
}

.bg-cream {
  background: var(--cream-50) !important;
}

.bg-teal-50 {
  background: var(--teal-50) !important;
}

.bg-navy {
  background: var(--navy-900) !important;
}

a {
  color: var(--teal-700);
  text-decoration: none;
}

a:hover {
  color: var(--teal-900);
}

.lead-text {
  font-size: 1.12rem;
  color: var(--gray-700);
}

/* --- Buttons --- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: .85rem 1.9rem;
  font-size: .95rem;
  transition: all .25s var(--ease);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-amber {
  background: var(--amber-600);
  border-color: var(--amber-600);
  color: #fff;
}

.btn-amber:hover {
  background: #a9651f;
  border-color: #a9651f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light-custom {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

.btn-outline-teal {
  background: transparent;
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.btn-outline-teal:hover {
  background: var(--teal-700);
  color: #fff;
}

.btn-sm-pill {
  padding: .55rem 1.2rem;
  font-size: .85rem;
}

/* ==========================================================================
   Top bar + Header
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  padding: .5rem 0;
}

.topbar a {
  color: rgba(255, 255, 255, .85);
}

.topbar a:hover {
  color: var(--amber-500);
}

.topbar .divider {
  opacity: .25;
  margin: 0 .75rem;
}

.topbar .social-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  margin-left: .4rem;
  transition: background .2s var(--ease);
}

.topbar .social-link:hover {
  background: var(--teal-700);
}

.site-header {
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow .3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-text-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--navy-900);
  line-height: 1.2;
  display: block;
}

.brand-text-sub {
  font-size: .72rem;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.main-nav .nav-link {
  font-weight: 600;
  color: var(--navy-900);
  padding: .5rem 1rem !important;
  position: relative;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: var(--teal-700);
}

.main-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .15rem;
  height: 3px;
  border-radius: 2px;
  background: var(--amber-600);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 60%, var(--teal-600) 100%);
  overflow: hidden;
  color: #fff;
  min-height: 70vh;
  /* Reduced from default */
  max-height: 600px;
  /* Added max height */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(219, 145, 66, .28), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .08), transparent 40%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  right: -6%;
  top: 0;
  bottom: 0;
  width: 55%;
  background-image: radial-gradient(rgba(255, 255, 255, .15) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .35;
  mask-image: linear-gradient(to left, black, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 1.5rem !important;
  /* Reduced padding */
  padding-bottom: 1.5rem !important;
  /* Reduced padding */
}

.hero .eyebrow {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 0.75rem;
  /* Smaller font */
  padding: 0.3rem 0.8rem;
}

.hero .eyebrow::before {
  background: var(--amber-500);
}

.hero h1 {
  color: #fff;
  font-size: 2.2rem;
  /* Smaller heading */
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero .lead-text {
  color: rgba(255, 255, 255, .82);
  font-size: 0.95rem;
  /* Smaller text */
  margin-top: 0.5rem !important;
  margin-bottom: 1rem !important;
}

.hero-portrait-wrap {
  position: relative;
  z-index: 2;
  width: fit-content;
}

.hero-portrait-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  animation: rotateCircle 15s linear infinite;
  z-index: -1;
}

@keyframes rotateCircle {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Updated for round image */
.hero-portrait {
  border-radius: 50% !important;
  /* Make it round */
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, .2);
  width: 300px !important;
  /* Smaller size */
  height: 300px !important;
  /* Smaller size */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.hero-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
  background: #fff;
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 180px;
  font-size: 0.85rem;
}

.hero-stat-card .icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
}

.hero-stat-card span {
  font-size: .75rem;
  color: var(--gray-500);
}

.hero-info-strip {
  position: relative;
  z-index: 2;
  background: rgba(6, 32, 29, .55);
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 0.5rem 0;
  /* Reduced padding */
}

.info-strip-item {
  display: flex;
  gap: .7rem;
  align-items: center;
  /* Changed to center for better alignment */
  color: #fff;
  padding: 0.6rem 0;
}

.info-strip-item .icon-badge-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.info-strip-item .label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber-500);
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.info-strip-item .value {
  font-weight: 600;
  font-size: .85rem;
  line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    max-height: none;
    padding: 2rem 0;
  }

  .hero-portrait {
    width: 200px !important;
    height: 200px !important;
  }

  .hero-portrait-wrap::before {
    width: 230px;
    height: 230px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .hero-portrait {
    width: 150px !important;
    height: 150px !important;
  }

  .hero-portrait-wrap::before {
    width: 180px;
    height: 180px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .lead-text {
    font-size: 0.85rem;
  }

  .hero-stat-card {
    min-width: 150px;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    bottom: -1rem;
    left: -0.5rem;
  }

  .hero-stat-card .icon-badge {
    width: 32px;
    height: 32px;
  }

  .info-strip-item .value {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   Sections & Cards
   ========================================================================== */
section {
  padding: 5.5rem 0;
}

@media (max-width:767.98px) {
  section {
    padding: 3.5rem 0;
  }
}

.section-head {
  max-width: 640px;
}

.section-head.mx-auto {
  text-align: center;
}

.card-elevated {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.card-elevated:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card {
  padding: 2rem 1.7rem;
  height: 100%;
}

.service-card .service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--teal-700);
  color: #fff;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: .6rem;
}

.service-card p {
  color: var(--gray-500);
  font-size: .92rem;
  margin-bottom: 0;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber-600);
  width: 48px;
  flex-shrink: 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.42rem;
  top: .15rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-700);
  border: 3px solid var(--teal-100);
}

.timeline-item .t-date {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--amber-600);
  display: block;
  margin-bottom: .25rem;
}

.badge-pill {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-100);
  font-size: .82rem;
  font-weight: 600;
  margin: .2rem .3rem .2rem 0;
}

.stat-block {
  text-align: center;
}

.stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--teal-700);
  line-height: 1;
}

.stat-block .num .plus {
  color: var(--amber-600);
}

.stat-block .lbl {
  color: var(--gray-500);
  font-size: .9rem;
  margin-top: .4rem;
}

/* --- Review cards --- */
.review-card {
  padding: 1.8rem;
  height: 100%;
}

.review-stars {
  color: var(--amber-600);
  letter-spacing: 2px;
  font-size: .95rem;
}

.review-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card .r-name {
  font-weight: 700;
  font-size: .95rem;
}

.review-card .r-date {
  font-size: .78rem;
  color: var(--gray-500);
}

.review-card p {
  font-size: .92rem;
  color: var(--gray-700);
  margin-top: 1rem;
  margin-bottom: 0;
}

.rating-summary {
  background: var(--teal-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}

.rating-summary .big-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
}

/* --- News cards --- */
.news-card {
  overflow: hidden;
}

.news-card .news-img {
  aspect-ratio: 16/10.5;
  overflow: hidden;
  background: var(--teal-100);
}

.news-card .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

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

.news-card .news-body {
  padding: 1.5rem;
}

.news-card .news-meta {
  font-size: .78rem;
  color: var(--amber-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.news-card h3 {
  font-size: 1.05rem;
  margin: .6rem 0;
}

.news-card h3 a {
  color: var(--navy-900);
}

.news-card h3 a:hover {
  color: var(--teal-700);
}

/* --- FAQ --- */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .9rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--navy-900);
}

.accordion-button:not(.collapsed) {
  background: var(--teal-50);
  color: var(--teal-700);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

/* --- CTA band --- */
.cta-band {
  background: linear-gradient(120deg, var(--teal-800), var(--teal-600));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  padding: .75rem 1rem;
  font-size: .95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px var(--teal-100);
}

label {
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy-900);
  margin-bottom: .35rem;
}

.form-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}

.date-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.date-pill {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: .6rem .9rem;
  cursor: pointer;
  text-align: center;
  min-width: 68px;
  transition: all .2s var(--ease);
  background: #fff;
}

.date-pill .d-name {
  display: block;
  font-size: .7rem;
  color: var(--gray-500);
  text-transform: uppercase;
}

.date-pill .d-num {
  display: block;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.date-pill.active,
.date-pill:hover {
  border-color: var(--teal-700);
  background: var(--teal-50);
}

.date-pill.disabled {
  opacity: .4;
  cursor: not-allowed;
}

.consult-type-card {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.consult-type-card:hover,
.consult-type-card.active {
  border-color: var(--teal-700);
  background: var(--teal-50);
}

.consult-type-card input {
  margin-right: .5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .72);
}

.site-footer h6 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .82rem;
  margin-bottom: 1.2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .72);
}

.site-footer a:hover {
  color: var(--amber-500);
}

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: .6rem;
  font-size: .92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.3rem 0;
  font-size: .85rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  transition: background .2s var(--ease);
}

.footer-social a:hover {
  background: var(--teal-700);
}

.emergency-strip {
  background: var(--amber-600);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: .7rem 0;
  font-size: .92rem;
}

.emergency-strip a {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(150deg, var(--teal-900), var(--teal-700));
  color: #fff;
  padding: 3.2rem 0 3.6rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(219, 145, 66, .25), transparent 45%);
}

.page-hero .breadcrumb {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .5);
}

/* ==========================================================================
   Utility / animation
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

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

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  z-index: 999;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--teal-900);
}

.toast-confirm {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2000;
  background: #fff;
  border-left: 4px solid var(--teal-700);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.3rem;
  max-width: 320px;
  transform: translateX(120%);
  transition: transform .35s var(--ease);
}

.toast-confirm.show {
  transform: none;
}

::selection {
  background: var(--amber-100);
  color: var(--navy-900);
}
