:root {
  --pink-50: #fff8fa;
  --pink-100: #fdebf1;
  --pink-200: #fbd4e0;
  --pink-300: #f7b8cb;
  --pink-400: #ef8cab;
  --pink-500: #e86591;
  --pink-600: #d84e7e;

  --brown-900: #492416;
  --brown-800: #5c2d19;
  --brown-700: #6d3820;

  --cream: #fffaf2;
  --white: #ffffff;
  --ink: #2f2027;
  --muted: #78636e;

  --line: rgba(73, 36, 22, 0.12);
  --shadow-soft: 0 18px 55px rgba(99, 47, 66, 0.10);
  --shadow-card: 0 12px 34px rgba(99, 47, 66, 0.08);

  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--pink-50);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: min(calc(100% - 34px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: 96px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow-light {
  color: var(--pink-200);
}

h1,
h2 {
  margin: 0;
  color: var(--brown-900);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(54px, 7vw, 88px);
}

h1 em {
  display: block;
  color: var(--pink-600);
  font-weight: 700;
}

h2 {
  font-size: clamp(40px, 5vw, 62px);
}

p {
  margin-top: 0;
}

.button {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--pink-600);
  box-shadow: 0 10px 25px rgba(216, 78, 126, 0.24);
}

.button-primary:hover {
  background: #c94372;
}

.button-secondary {
  color: var(--brown-900);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
}

.button-secondary:hover {
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--brown-900);
}

.button-dark:hover {
  background: #35190f;
}

.button-full {
  width: 100%;
}

/* =========================
   HEADER
========================== */

.site-header {
  width: min(calc(100% - 34px), var(--max-width));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 8px 16px 8px 18px;

  position: sticky;
  top: 12px;
  z-index: 100;

  display: flex;
  align-items: center;
  gap: 26px;

  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 14px 44px rgba(71, 32, 46, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand-banner {
  width: 190px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 4px;
  background: var(--pink-500);
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;

  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  margin: 5px 0;
  display: block;
  background: var(--brown-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* =========================
   HERO
========================== */

.hero {
  min-height: 650px;
  margin-top: 38px;
  padding: clamp(28px, 5vw, 64px);

  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(34px, 5vw, 70px);

  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 5% 5%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--pink-100));
  box-shadow: var(--shadow-soft);
}

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

.hero-text {
  max-width: 560px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  min-height: 520px;
  position: relative;
  overflow: visible;
}

.hero-media > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: 0 26px 65px rgba(87, 36, 54, 0.18);
}

.hero-badge {
  padding: 10px 14px;
  position: absolute;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(74, 31, 46, 0.12);

  font-size: 13px;
  font-weight: 800;
}

.hero-badge-top {
  top: 24px;
  left: -24px;
}

.hero-badge-bottom {
  right: -22px;
  bottom: 32px;
}

/* =========================
   TICKER
========================== */

.ticker {
  margin-top: 34px;
  overflow: hidden;
  background: var(--brown-900);
  color: var(--white);
}

.ticker-track {
  width: max-content;
  padding-block: 13px;
  display: flex;
  gap: 34px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;

  animation: ticker 24s linear infinite;
}

.ticker-track span::after {
  content: "♡";
  margin-left: 34px;
  color: var(--pink-300);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* =========================
   SECTION HEADING
========================== */

.section-heading {
  margin-bottom: 34px;

  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================
   FILTERS
========================== */

.filter-row {
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 15px;

  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown-900);

  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--brown-900);
  background: var(--brown-900);
  color: var(--white);
}

/* =========================
   PRODUCT GRID
========================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(91, 39, 58, 0.13);
}

.product-image {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  background: var(--pink-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  margin: 0 0 15px;
  color: var(--brown-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.18;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.availability {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.product-link {
  flex: 0 0 auto;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 800;
}

.product-link:hover {
  color: var(--brown-900);
}

.catalogue-note {
  margin-top: 28px;
  padding: 18px 22px;

  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;

  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);

  color: var(--muted);
  font-size: 14px;
}

.catalogue-note strong {
  color: var(--brown-900);
}

/* =========================
   CUSTOM ORDERS
========================== */

.custom-layout {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.custom-copy {
  padding: clamp(34px, 5vw, 62px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.10), transparent 30%),
    var(--brown-900);
}

.custom-copy h2 {
  color: var(--white);
}

.custom-copy > p {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  margin-block: 11px;
  color: rgba(255, 255, 255, 0.88);
}

.feature-list li::before {
  content: "♡";
  margin-right: 10px;
  color: var(--pink-300);
}

.phone-card {
  width: fit-content;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.phone-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.phone-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-500);
}

.phone-card small,
.phone-card strong {
  display: block;
}

.phone-card small {
  color: rgba(255, 255, 255, 0.62);
}

.order-form {
  padding: clamp(28px, 4vw, 50px);
  background: var(--white);
}

.order-form label {
  margin-bottom: 15px;
  display: grid;
  gap: 7px;

  color: var(--brown-900);
  font-size: 13px;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;

  color: var(--ink);
  background: var(--pink-50);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 3px rgba(232, 101, 145, 0.12);
}

.form-help {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 9px 0 0;
  color: var(--pink-600);
  font-size: 13px;
  font-weight: 700;
}

/* =========================
   ABOUT
========================== */

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.about-logo-panel {
  min-height: 450px;
  padding: 42px;

  display: grid;
  place-items: center;

  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.88), transparent 25%),
    linear-gradient(135deg, var(--pink-100), var(--pink-300));
  box-shadow: var(--shadow-soft);
}

.about-logo-panel img {
  width: min(100%, 450px);
}

.about-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  margin-top: 26px;
  display: inline-block;
  color: var(--pink-600);
  font-weight: 800;
}

.text-link:hover {
  color: var(--brown-900);
}

/* =========================
   CONTACT
========================== */

.contact-card {
  padding: clamp(32px, 5vw, 58px);

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px 54px;
  align-items: start;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.85), transparent 25%),
    linear-gradient(135deg, var(--pink-100), #ffe5ee);
  box-shadow: var(--shadow-soft);
}

.contact-copy p {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-item {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 13px;

  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 17px;
}

.contact-item:hover {
  background: var(--white);
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--brown-900);
  border-radius: 50%;
  font-size: 18px;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  margin-bottom: 2px;
  color: var(--muted);
}

.contact-item strong {
  color: var(--brown-900);
  line-height: 1.3;
}

.contact-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   FOOTER
========================== */

.site-footer {
  margin-top: 20px;
  padding: 28px 17px 42px;
}

.footer-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-top: 28px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;

  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 170px;
}

.footer-links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--pink-600);
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

/* =========================
   RESPONSIVE
========================== */

@media (max-width: 1000px) {
  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media > img {
    min-height: 0;
    height: 500px;
  }

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

  .custom-layout,
  .about-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-self: center;
  }

  .footer-inner > p {
    text-align: center;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    min-height: 68px;
    padding: 7px 11px 7px 14px;
    border-radius: 24px;
  }

  .brand-banner {
    width: 155px;
    max-height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    width: min(calc(100vw - 34px), var(--max-width));
    margin: 0;
    padding: 82px 22px 24px;

    position: fixed;
    left: 17px;
    top: 12px;
    z-index: -1;

    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;

    background: rgba(255, 255, 255, 0.98);
    border-radius: 26px;
    box-shadow: 0 20px 70px rgba(73, 36, 22, 0.18);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 6px;
    font-size: 16px;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    margin-top: 24px;
    padding: 34px 23px 24px;
    border-radius: 30px;
  }

  .hero-media,
  .hero-media > img {
    height: 390px;
  }

  .hero-badge-top {
    left: 14px;
  }

  .hero-badge-bottom {
    right: 14px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .custom-layout {
    border-radius: 28px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-logo-panel {
    min-height: 340px;
  }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .site-header {
    width: calc(100% - 22px);
  }

  .main-nav {
    width: calc(100vw - 22px);
    left: 11px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    gap: 8px 14px;
  }

  .hero-media,
  .hero-media > img {
    height: 330px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-note {
    justify-content: flex-start;
  }

  .contact-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================
   MULTI-PHOTO PRODUCT CARDS
========================== */

.product-image-button {
  width: 100%;
  padding: 0;
  position: relative;
  border: 0;
  cursor: pointer;
}

.product-primary-image,
.product-secondary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-secondary-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms ease, transform 320ms ease;
}

.product-card:hover .product-secondary-image {
  opacity: 1;
  transform: scale(1.035);
}

.photo-count {
  padding: 7px 10px;
  position: absolute;
  right: 11px;
  bottom: 11px;

  color: var(--brown-900);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(73, 36, 22, 0.12);

  font-size: 11px;
  font-weight: 800;
}

/* =========================
   ABOUT MAP LINK
========================== */

.about-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.about-actions .text-link {
  margin-top: 0;
}

.map-link {
  color: var(--brown-900);
  font-weight: 800;
}

.map-link:hover {
  color: var(--pink-600);
}

/* =========================
   PRODUCT GALLERY MODAL
========================== */

body.modal-open {
  overflow: hidden;
}

.product-modal {
  padding: 24px;
  position: fixed;
  inset: 0;
  z-index: 300;

  display: none;
  place-items: center;

  background: rgba(42, 22, 29, 0.72);
  backdrop-filter: blur(8px);
}

.product-modal.open {
  display: grid;
}

.product-modal-dialog {
  width: min(920px, 100%);
  max-height: min(90vh, 760px);

  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 30px 100px rgba(35, 17, 24, 0.30);
}

.modal-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;

  display: grid;
  place-items: center;

  color: var(--brown-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 50%;

  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-image-wrap {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--pink-100);
}

.modal-image-wrap > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.modal-arrow {
  width: 44px;
  height: 44px;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  display: grid;
  place-items: center;

  color: var(--brown-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(73, 36, 22, 0.15);

  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.modal-arrow:hover {
  background: var(--white);
}

.modal-arrow-left {
  left: 14px;
}

.modal-arrow-right {
  right: 14px;
}

.modal-counter {
  padding: 7px 10px;
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);

  color: var(--brown-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
}

.modal-content {
  padding: clamp(34px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-content h3 {
  margin: 0;
  color: var(--brown-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.modal-content p {
  margin: 20px 0 26px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .product-modal {
    padding: 12px;
  }

  .product-modal-dialog {
    max-height: 94vh;
    grid-template-columns: 1fr;
    overflow-y: auto;
    border-radius: 24px;
  }

  .modal-image-wrap,
  .modal-image-wrap > img {
    min-height: 0;
    height: min(58vh, 480px);
  }

  .modal-content {
    padding: 28px 24px 30px;
  }

  .modal-content .button {
    width: 100%;
  }
}
