/* ============================================
   Dr. Swapnil Tamrakar Dental Clinic - CSS
   Color: #2fa3ac (Teal) + #000000 (Black)
   ============================================ */

:root {
  --primary: #2fa3ac;
  --primary-dark: #1d7e86;
  --primary-light: #e8f7f8;
  --black: #000000;
  --dark: #0d1b2a;
  --text: #333d4b;
  --text-muted: #6b7280;
  --white: #ffffff;
  --off-white: #f8fafb;
  --border: #e2e8f0;
  --gold: #c9a84c;
  --shadow: 0 8px 30px rgba(47, 163, 172, 0.12);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; }
a { color: var(--primary); text-decoration: none; transition: all .3s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ===== TOP HEADER ===== */
.top-header {
  background: var(--dark);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-info {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.top-info i { color: var(--primary); }
.top-phone {
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 0.88rem;
}
.top-phone:hover { color: white !important; }

/* ===== MAIN NAVBAR ===== */
.main-navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
  transition: all .3s;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-qual {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
.btn-appointment {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  font-weight: 600;
  font-size: 0.88rem;
}
.btn-appointment:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47,163,172,0.35);
}
.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232fa3ac' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label::before {
  content: '—';
  margin-right: 8px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title span { color: var(--primary); }
.section-divider {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 60%, #0d2a3e 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(47,163,172,0.18) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(47,163,172,0.12);
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero-pattern::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(47,163,172,0.1);
}
@keyframes pulse-ring {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.7; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,163,172,0.15);
  border: 1px solid rgba(47,163,172,0.3);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--primary);
  position: relative;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  box-shadow: 0 8px 25px rgba(47,163,172,0.4);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(47,163,172,0.5);
  color: white;
}
.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}
.btn-outline-custom:hover {
  background: white;
  color: var(--dark);
  border-color: white;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.hero-card-float.card-1 { bottom: 30px; left: -30px; }
.hero-card-float.card-2 { top: 20px; right: -20px; }
.hero-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Book Your Slot Section */
.book-slot-section {
  background: var(--off-white);
}
.book-slot-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}
.book-slot-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.book-slot-btn {
  background: white;
  color: var(--primary);
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.book-slot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  color: var(--primary-dark);
}
@media (max-width: 768px) {
  .book-slot-card { padding: 28px 24px; }
  .book-slot-card h2 { font-size: 1.45rem !important; }
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .35s;
  height: 100%;
}


.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.service-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: all .3s;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotate(-5deg) scale(1.08);
}

/* ===== WHY CHOOSE US ===== */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  transition: all .3s;
}
.why-item:hover { background: var(--primary-light); }
.why-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a5c 100%);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(47,163,172,0.2) 0%, transparent 60%);
}
.breadcrumb-section .page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 12px;
}
.breadcrumb-item { font-size: 0.88rem; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== TREATMENTS ===== */
.treatment-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .35s;
  height: 100%;
  background: white;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.treatment-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #d0f0f3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.treatment-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(47,163,172,0.08) 100%);
}
.treatment-body { padding: 24px; }
.treatment-body h5 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.treatment-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ABOUT SECTIONS ===== */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #e8f7f8, #c5edf0);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.about-img-placeholder i { font-size: 4rem; opacity: 0.5; }
.about-badge {
  position: absolute;
  bottom: -15px; right: 20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.doctor-img-ph {
  height: 340px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #b8e8ec 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.doctor-img-ph i { font-size: 7rem; opacity: 0.4; }
.doctor-info { padding: 28px; }
.doctor-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.credential-item:last-child { border-bottom: none; }
.credential-item i { color: var(--primary); width: 18px; }

/* ===== REVIEWS ===== */
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: all .3s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary-light);
  line-height: 1;
}
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }
.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

/* ===== GALLERY ===== */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-ph {
  background: linear-gradient(135deg, var(--primary-light), #c5edf0);
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 2.5rem;
  transition: all .3s;
}
.gallery-item:hover .gallery-ph {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: scale(1.03);
}
.before-after-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-label {
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  display: inline-block;
  border-radius: 0 0 8px 8px;
  margin-bottom: 6px;
}
.ba-ph {
  height: 200px;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: all .3s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47,163,172,0.1);
}
.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-info-box {
  background: linear-gradient(135deg, var(--dark), #1a3a5c);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: white;
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(47,163,172,0.2);
  border: 1px solid rgba(47,163,172,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.ci-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.ci-value {
  font-size: 0.92rem;
  color: white;
  font-weight: 500;
}
.btn-wa-contact {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  transition: all .3s;
  width: 100%;
  justify-content: center;
}
.btn-wa-contact:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

/* ===== TRUST BADGES ===== */
.trust-strip {
  background: var(--primary-light);
  padding: 20px 0;
  border-top: 1px solid rgba(47,163,172,0.1);
  border-bottom: 1px solid rgba(47,163,172,0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-item i { color: var(--primary); font-size: 1.1rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-heading {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-text { font-size: 0.88rem; line-height: 1.8; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: all .3s;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.hours-list { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.hours-list li { margin-bottom: 6px; }
.footer-map { border-radius: 10px; overflow: hidden; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== WHATSAPP BLINK BUTTON ===== */
.btn-whatsapp-blink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 16px;
  animation: wa-blink 2s ease-in-out infinite;
  transition: all .3s;
}
.btn-whatsapp-blink:hover { color: white; transform: scale(1.05); }
@keyframes wa-blink {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== FIXED WHATSAPP ===== */
.whatsapp-fixed {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: all .3s;
}
.whatsapp-fixed:hover { color: white; transform: scale(1.12); }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.whatsapp-fixed:hover .wa-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ===== GOOGLE REVIEW SECTION BG ===== */
.reviews-section { background: var(--off-white); }
.google-rating-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.google-rating-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.google-stars { font-size: 1.3rem; color: #f59e0b; }

/* ===== ALERT MESSAGES ===== */
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; border-radius: var(--radius); }
.alert-danger  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; border-radius: var(--radius); }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { gap: 20px; }
  .top-header { display: none; }
  .hero-card-float { display: none; }
  .contact-form-wrap { padding: 24px; }
  .contact-info-box { padding: 24px; margin-top: 24px; }
}
@media (max-width: 991px) {
  .main-navbar { padding: 8px 0; }
  .navbar-collapse { background: white; padding: 16px; margin-top: 10px; border-radius: var(--radius); box-shadow: var(--shadow); }
}
