:root {
  --bg: #faf8fe;
  --surface: #ffffff;
  --surface-soft: #f4f3f8;
  --surface-muted: #eeedf3;
  --surface-border: #e3e2e7;
  --text: #1a1b1f;
  --text-soft: #616365;
  --text-muted: #868587;
  --primary: #1d1d1f;
  --secondary: #2f3034;
  --success: #25d366;
  --shadow-soft: 0 20px 40px rgba(17, 18, 23, 0.04);
  --shadow-card: 0 16px 32px rgba(17, 18, 23, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1200px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 96px 0;
}

.section-soft {
  background: var(--surface-soft);
  border-top: 1px solid rgba(29, 29, 31, 0.04);
  border-bottom: 1px solid rgba(29, 29, 31, 0.04);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: rgba(255, 255, 255, 0.68);
}

.page-title,
.section-title {
  margin: 0;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-title-small {
  font-size: clamp(32px, 4vw, 48px);
}

.page-title-home {
  max-width: 10ch;
}

.page-lead,
.section-description {
  margin: 24px 0 0;
  max-width: 640px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.section-title-dark,
.section-description-dark {
  color: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-secondary {
  border-color: rgba(29, 29, 31, 0.12);
  background: #fff;
  color: var(--primary);
}

.button-light {
  background: #fff;
  color: var(--primary);
}

.button-whatsapp {
  background: var(--success);
  color: #fff;
}

.button-block {
  width: 100%;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: -0.03em;
}

.brand-strong {
  font-weight: 800;
}

.brand-light {
  font-weight: 400;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 50%;
}

.is-hidden {
  display: none !important;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon-inline {
  width: 18px;
  height: 18px;
}

.hero-grid,
.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border-radius: 32px;
  background: #d8d6dd;
  box-shadow: var(--shadow-card);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tall {
  aspect-ratio: 4 / 5;
}

.image-wide {
  aspect-ratio: 16 / 9;
}

.hero-floating-card {
  position: absolute;
  right: -24px;
  bottom: 32px;
  max-width: 320px;
  padding: 24px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.hero-floating-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.hero-floating-card p {
  margin: 0;
  color: var(--text-soft);
}

.section-heading,
.page-heading {
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.panel-card,
.contact-card,
.team-card,
.service-card,
.booking-summary-card,
.info-card {
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 28px;
}

.feature-card-head,
.service-card-head,
.contact-card-head,
.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card-head h3,
.service-card-head h2,
.contact-card-head h2,
.panel-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
}

.feature-list strong,
.service-row h3,
.package-item h3,
.team-card-body h3,
.summary-service-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.feature-list span,
.feature-list em,
.service-row p,
.team-card-body p,
.footer-copy,
.footer-links a,
.footer-meta p,
.panel-head p,
.booking-service-copy span,
.social-handle,
.map-badge small,
.service-row-compact p,
.section-description,
.page-lead {
  color: var(--text-soft);
}

.feature-list em,
.service-row strong,
.summary-row strong,
.summary-total strong,
.contact-phone {
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

.split-copy .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.team-card-body {
  padding: 20px;
}

.team-card-body p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.gallery-banner {
  display: grid;
  gap: 32px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer {
  padding: 72px 0;
  background: #fff;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-heading {
  display: block;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-meta p,
.footer-copy {
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card-wide {
  grid-column: span 8;
}

.service-card-muted {
  background: #f7f7f9;
}

.service-card-dark {
  grid-column: span 4;
  background: var(--primary);
  color: #fff;
}

.service-card-head-dark h2,
.service-card-head-dark .icon {
  color: #fff;
}

.service-list,
.package-list {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.service-row,
.package-item,
.summary-service-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-row {
  padding-top: 22px;
  border-top: 1px solid rgba(29, 29, 31, 0.07);
}

.service-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-row-compact {
  flex-direction: column;
}

.service-row-compact strong {
  align-self: flex-start;
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 24px;
}

.service-card-dark .package-item {
  display: block;
}

.package-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.package-item p,
.service-card-dark .footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.visual-banner {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.visual-banner img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.visual-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(17, 18, 23, 0.1), rgba(17, 18, 23, 0.78));
  color: #fff;
}

.visual-banner-overlay h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
}

.visual-banner-overlay p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.booking-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.sticky-card {
  position: sticky;
  top: 116px;
}

.step-list {
  display: grid;
  gap: 20px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e6e5ea;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.step-item.is-current {
  color: var(--primary);
}

.step-item.is-current span {
  background: var(--primary);
  color: #fff;
}

.step-item.is-muted {
  opacity: 0.45;
}

.booking-stack {
  display: grid;
  gap: 24px;
}

.panel-card {
  padding: 32px;
}

.panel-card-faded {
  opacity: 0.88;
}

.panel-head {
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.panel-head p {
  margin: 8px 0 0;
}

.booking-service-list {
  display: grid;
  gap: 12px;
}

.booking-service {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 20px;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.booking-service:hover {
  border-color: rgba(29, 29, 31, 0.12);
  background: var(--surface-soft);
}

.booking-service input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.booking-service-copy {
  flex: 1;
}

.booking-service-copy strong {
  display: block;
  font-size: 20px;
}

.booking-service em {
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.avatar-pick {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 20px;
  transition: background-color var(--transition);
}

.avatar-pick:hover,
.avatar-pick.is-selected {
  background: var(--surface-soft);
}

.avatar-frame {
  position: relative;
  width: 110px;
  height: 110px;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-check {
  position: absolute;
  right: 6px;
  bottom: 4px;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 3px #fff;
}

.avatar-pick strong {
  font-size: 18px;
}

.avatar-pick span:last-child {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.calendar-chip,
.slot-chip {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 16px 12px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 16px;
  background: #fff;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.calendar-chip small {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-chip strong {
  font-size: 16px;
}

.calendar-chip.is-active,
.calendar-chip.is-picked,
.slot-chip.is-active,
.slot-chip.is-picked {
  background: #8f8f95;
  border-color: #8f8f95;
  color: #fff;
}

.calendar-chip.is-active small,
.calendar-chip.is-picked small {
  color: rgba(255, 255, 255, 0.7);
}

.calendar-chip.is-disabled,
.slot-chip.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-chip.is-danger {
  color: #c13232;
  cursor: not-allowed;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.slot-chip {
  min-height: 56px;
  font-weight: 600;
}

.input-grid {
  display: grid;
  gap: 18px;
}

.field-block span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.field-block input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--primary);
}

.field-block input:focus {
  outline: 2px solid rgba(29, 29, 31, 0.1);
  background: #fff;
}

.booking-summary-column {
  display: grid;
  gap: 20px;
}

.booking-summary-card,
.info-card {
  padding: 28px;
}

.booking-summary-card h2 {
  margin: 0 0 24px;
  font-size: 28px;
}

.summary-group,
.summary-row {
  padding: 18px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
}

.summary-group {
  border-top: 0;
  padding-top: 0;
}

.summary-group > span,
.summary-row span,
.summary-total span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.summary-services {
  display: grid;
  gap: 12px;
}

.summary-service-row span {
  color: var(--text-soft);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-row span {
  margin-bottom: 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 18px 0 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
}

.summary-total strong {
  font-size: 48px;
  line-height: 1;
}

.info-card {
  display: flex;
  gap: 14px;
  background: var(--surface-soft);
}

.info-card p {
  margin: 0;
  color: var(--text-soft);
}

.contact-layout {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 24px;
}

.contact-card {
  padding: 32px;
}

.contact-phone {
  display: inline-block;
  margin: 20px 0 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.social-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-card-muted {
  background: var(--surface-soft);
}

.contact-block + .contact-block {
  margin-top: 28px;
}

.contact-block-border {
  padding-top: 28px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.address-copy {
  margin: 12px 0 0;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  color: var(--text-soft);
}

.hours-row strong {
  color: var(--primary);
}

.social-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(29, 29, 31, 0.16);
  border-radius: 14px;
  background: #fff;
}

.map-panel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 30px;
  background: #161618;
  box-shadow: var(--shadow-card);
}

.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.map-marker {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  color: #fff;
}

.map-marker .icon {
  width: 62px;
  height: 62px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(29, 29, 31, 0.95);
}

.map-marker strong {
  padding: 8px 12px;
  background: rgba(29, 29, 31, 0.92);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-badge {
  position: absolute;
  right: 36px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.map-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 14px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
}

.map-badge strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.map-badge small {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }

  .booking-sidebar {
    order: -1;
  }

  .booking-summary-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-row {
    grid-template-columns: auto auto auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    padding: 20px;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split-section,
  .contact-layout,
  .footer-grid,
  .feature-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .avatar-grid,
  .services-grid,
  .technical-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide,
  .service-card-dark {
    grid-column: span 12;
  }

  .booking-summary-column {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-floating-card {
    position: static;
    margin-top: 20px;
    max-width: none;
  }

  .map-panel {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .section-space {
    padding: 72px 0;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-row {
    gap: 12px;
    min-height: 76px;
  }

  .brand {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .button-row,
  .social-list,
  .hours-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-card,
  .contact-card,
  .feature-card,
  .service-card,
  .booking-summary-card,
  .info-card {
    padding: 24px;
    border-radius: 24px;
  }

  .booking-service {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .booking-service em {
    grid-column: 2;
  }

  .calendar-grid,
  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px;
  }

  .address-copy {
    font-size: 22px;
  }

  .summary-total strong {
    font-size: 38px;
  }
}

