:root {
  --cream: #f5ede8;
  --off-white: #faf7f4;
  --espresso: #7b3b2a;
  --tan: #c4956a;
  --soft-tan: #e8cebc;
  --text: #5f3a31;
  --muted: #9b7568;
  --line: rgba(123, 59, 42, 0.08);
  --danger: #b04b3a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--off-white);
  color: var(--text);
}

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

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

/* NAV */
nav {
  height: 86px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 244, 0.96);
  border-bottom: 1px solid rgba(196, 149, 106, 0.22);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 700;
}

.brand-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
}

.nav-cta {
  background: var(--espresso);
  color: #fff !important;
  padding: 1rem 1.5rem;
  border-radius: 2px;
}

.hamburger,
.close-menu {
  display: none;
}

/* HERO */
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--off-white) 0%, var(--off-white) 52%, var(--cream) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 53%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(123, 59, 42, 0.035), transparent);
  opacity: 0.55;
  z-index: 2;
}

.hero-content {
  padding: 13rem 6% 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.eyebrow {
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  line-height: 0.98;
  color: var(--espresso);
  font-weight: 600;
  max-width: 740px;
  margin-bottom: 1.8rem;
}

.hero-title em {
  color: var(--tan);
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary,
.btn-submit {
  background: var(--espresso);
  color: #fff;
  border: 1px solid var(--espresso);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid rgba(123, 59, 42, 0.22);
}

.hero-image-wrap {
  position: relative;
  height: calc(100vh - 86px);
  overflow: hidden;
  border-left: 1px solid rgba(123, 59, 42, 0.035);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(0.98);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 247, 244, 0.72) 0%, rgba(250, 247, 244, 0.22) 35%, rgba(250, 247, 244, 0.04) 100%);
}

/* TAGLINE */
.tagline-strip {
  background: var(--espresso);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
}

.tagline-track {
  width: 100%;
  overflow: hidden;
}

.tagline-content,
.tagline-scroll {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollTagline 20s linear infinite;
}

.tagline-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  white-space: nowrap;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--soft-tan);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.6rem;
}

@keyframes scrollTagline {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
section {
  padding: 6rem 6%;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header h2,
.about-content h2,
.contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-header p,
.about-content p,
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* SERVICES */
.services {
  position: relative;
  background:
    linear-gradient(rgba(250, 247, 244, 0.88), rgba(250, 247, 244, 0.88)),
    url("images/services-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-grid,
.services .section-header {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(196, 149, 106, 0.2);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(123, 59, 42, 0.05);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* PRODUCTS */
.shop {
  background: #fffaf7;
  text-align: center;
}

.products-grid {
  width: min(1180px, 100%);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.product-card {
  width: 100%;
  min-width: 0;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(196, 149, 106, 0.2);
  box-shadow: 0 20px 50px rgba(123, 59, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  text-align: center;
  appearance: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(123, 59, 42, 0.12);
}

.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f1ed;
  overflow: hidden;
  padding: 1rem;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-badge {
  display: none !important;
}

.product-info {
  flex: 1;
  min-height: 155px;
  padding: 1.4rem 1rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.product-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.product-price {
  margin-top: auto;
  width: 100%;
  color: var(--espresso);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-align: center;
}

.shop .btn-primary.fade-up {
  margin-top: 1.5rem;
}

/* PRODUCT MODAL */
.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(52, 30, 22, 0.45);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 999;
}

.product-modal.active {
  display: flex;
}

.product-modal-card {
  width: min(920px, 100%);
  background: var(--off-white);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
}

.product-modal-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.modal-content {
  padding: 3rem;
}

.modal-content h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.modal-detail {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.modal-detail strong {
  color: var(--espresso);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(123, 59, 42, 0.18);
  background: rgba(250, 247, 244, 0.92);
  color: var(--espresso);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 3;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  background: var(--off-white);
}

.about-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(123, 59, 42, 0.13);
}

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(250, 247, 244, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.6rem;
  border-radius: 18px;
  color: var(--espresso);
  border: 1px solid rgba(196, 149, 106, 0.28);
}

.big-num {
  font-family: "Cormorant Garamond", serif;
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 2rem 0;
}

.value-item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--text);
}

.value-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tan);
}

/* TESTIMONIALS */
.testimonials {
  background: #fffaf7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(196, 149, 106, 0.2);
}

.stars {
  color: var(--tan);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-source {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.testimonial-disclaimer {
  max-width: 720px;
  margin: 2rem auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
}

.review-button-wrap {
  margin: 2rem auto 0;
  text-align: center;
}

/* REVIEW */
.review-section {
  background: var(--off-white);
  padding: 6rem 6%;
}

.review-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(196, 149, 106, 0.22);
  border-radius: 28px;
  padding: 2.4rem;
  box-shadow: 0 25px 70px rgba(123, 59, 42, 0.07);
}

.review-note {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  background: var(--off-white);
}

.contact-details {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0;
}

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

.contact-item-icon {
  font-size: 1.3rem;
}

.contact-item-label {
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.25rem;
}

.contact-item-text {
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 0.9rem;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(196, 149, 106, 0.35);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.25s ease;
}

.social-link:hover {
  background: var(--espresso);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 2.4rem;
  border: 1px solid rgba(196, 149, 106, 0.22);
  box-shadow: 0 25px 70px rgba(123, 59, 42, 0.07);
}

.contact-form-wrap h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

label {
  display: block;
  color: var(--espresso);
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(196, 149, 106, 0.32);
  background: var(--off-white);
  padding: 1rem;
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
}

/* CHECKOUT */
.checkout-page {
  background:
    linear-gradient(rgba(250, 247, 244, 0.9), rgba(250, 247, 244, 0.94)),
    url("images/services-bg.png");
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 86px);
}

.checkout-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
  padding-block: 5rem;
}

.checkout-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 149, 106, 0.24);
  border-radius: 34px;
  padding: clamp(2rem, 5vw, 3.4rem);
  box-shadow: 0 35px 90px rgba(123, 59, 42, 0.11);
  backdrop-filter: blur(12px);
}

.checkout-card h1 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.checkout-card > p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.order-box {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.35rem 0;
  border-block: 1px solid rgba(196, 149, 106, 0.2);
}

.order-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196, 149, 106, 0.18);
}

.order-box div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-box span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.order-box strong {
  color: var(--espresso);
  text-align: right;
}

.checkout-card .form-group {
  margin: 1.5rem 0 0;
}

.stock-status {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.stock-status.in {
  color: #4f7f45;
}

.stock-status.out {
  color: var(--danger);
}

.payment-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 149, 106, 0.2);
}

.payment-box .eyebrow {
  display: block;
  margin-bottom: 0.65rem;
}

.payment-box p {
  color: var(--muted);
  line-height: 1.7;
}

.payment-box .btn-primary {
  width: auto;
  min-width: 160px;
  padding-inline: 1.8rem;
}

.payment-disabled {
  pointer-events: none;
  opacity: 0.46;
}

/* NEWSLETTER */
.newsletter {
  background:
    linear-gradient(rgba(250, 247, 244, 0.9), rgba(250, 247, 244, 0.9)),
    url("images/services-bg.png");
  background-size: cover;
  background-position: center;
}

.newsletter-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(196, 149, 106, 0.24);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(123, 59, 42, 0.09);
  backdrop-filter: blur(10px);
}

.newsletter h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.newsletter p {
  color: var(--muted);
  line-height: 1.8;
}

.newsletter-form {
  display: grid;
  gap: 0.8rem;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
}

.newsletter-row .btn-submit {
  width: auto;
  white-space: nowrap;
}

/* POLICY */
.policy-page {
  background: var(--off-white);
  min-height: calc(100vh - 86px);
}

.policy-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.policy-wrap h1 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 2.5rem;
}

.policy-card {
  background: #fff;
  border: 1px solid rgba(196, 149, 106, 0.22);
  border-radius: 28px;
  padding: 2.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 60px rgba(123, 59, 42, 0.06);
}

.policy-card h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--espresso);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.policy-card h3 {
  color: var(--espresso);
  font-size: 1rem;
  margin: 1.4rem 0 0.4rem;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--espresso);
  color: #fff;
  padding: 4rem 6% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p,
.footer-col a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

/* MOBILE MENU */
.nav-mobile-menu,
.nav-overlay {
  display: none;
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */
@media (max-width: 1000px) {
  .hero,
  .about,
  .contact,
  .checkout-wrap,
  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    padding: 7rem 6% 3rem;
  }

  .hero-image-wrap {
    height: 520px;
    border-left: 0;
  }

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

  .products-grid {
    max-width: 760px;
  }

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

/* MOBILE */
@media (max-width: 760px) {
  nav {
    height: 74px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: grid;
    gap: 5px;
    background: transparent;
    border: 0;
  }

  .hamburger span {
    width: 26px;
    height: 2px;
    background: var(--espresso);
  }

  .nav-mobile-menu.active,
  .nav-overlay.active {
    display: flex;
  }

  .nav-overlay.active {
    position: fixed;
    inset: 0;
    background: rgba(40, 20, 12, 0.35);
    z-index: 200;
  }

  .nav-mobile-menu.active {
    position: fixed;
    right: 0;
    top: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: var(--off-white);
    z-index: 201;
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
  }

  .close-menu {
    display: block;
    align-self: flex-end;
    background: transparent;
    border: 0;
    color: var(--espresso);
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .services-grid,
  .products-grid,
  .about-values,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    padding: 2rem;
  }

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

  .newsletter-row .btn-submit {
    width: 100%;
  }

  .checkout-wrap {
    padding-block: 3rem;
  }

  .payment-box {
    grid-template-columns: 1fr;
  }

  .payment-box .btn-primary {
    width: 100%;
  }

  .product-img {
    aspect-ratio: 1 / 1.02;
  }

  .product-modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .product-modal-card img {
    min-height: 300px;
  }

  .modal-content {
    padding: 2rem;
  }

  .modal-content h3 {
    font-size: 2.2rem;
  }

  .modal-actions .btn-primary {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
