html {
  scroll-behavior: smooth;
}

/* HEADER STRUCTURE WITH LOGO, TITLE, BURGER & BASKET */
.header-wrapper {
  position: relative;
  z-index: 10000;
  padding: 2rem 0 0 0; /* match original spacing */
  background: transparent;
}

header {
  background-color: #ebdcbc;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.5rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 90px;
  box-sizing: border-box;
  z-index: 10000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

body {
  padding-top: 50px; 
}

.logo {
  height: 75px;
  width: auto;
  display: block;
}

/* NAV TITLE IN CENTER */
.nav-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-title {
  font-family: 'Burgundia', cursive;
  font-size: 2rem;
  color: #4b3b2a;
  white-space: nowrap;
}

.title-underline {
  height: 2px;
  background-color: #4b3b2a;
  margin: 4px 0;
  width: fit-content;
  min-width: 17.5%;
  align-self: center;
}


.subtitle {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  color: #4b3b2a;
  font-style: italic;
}

/* NAV CONTROLS (BURGER + BASKET) RIGHT SIDE */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.burger {
  cursor: pointer;
}

.burger img {
  width: 75px;
  height: 75px;
  display: block;
}

.basket-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
}

.basket-icon:hover {
  transform: scale(1.1);
}

/* NAVIGATION */
nav {
  position: relative;
}

#navLinks {
  position: fixed;
  top: 0;
  right: -300px; /* Off-screen initially */
  width: 250px;
  height: 100vh;
  background-color: #e5d3b3;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}

#navLinks.show {
  right: 0; /* Slide into view */
}


nav a {
  font-family: 'Silver Melody', cursive;
  font-size: 1.4rem;
  text-decoration: none;
  color: #4b3b2a;
}

/* RESPONSIVE MENU */

/* HERO SECTION */
.hero {
  position: relative;
  height: 375px; /* Maintain full height */
  margin: 2rem auto; /* Adds spacing around the hero */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden; /* Ensures image respects the border-radius */
  max-width: 100%; /* Optional: use full width unless you want to limit it */
  box-sizing: border-box;
}

.hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0; /* Let the .hero wrapper handle rounding */
}

.hero-text {
  font-family: 'Burgundia', cursive;
  font-size: 7.5vw;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff3dc;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
  text-align: center;
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 10vw; /* Slightly larger on smaller screens */
  }
}

/* QUOTE SECTION */
.quote-banner {
  background-color: #d6c2a1;
  text-align: center;
  padding: 2rem;
  margin: 2rem auto; /* Adds spacing around the hero */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden; /* Ensures image respects the border-radius */
}

.quote-text {
  font-weight: bold;
  font-size: 3rem;
  margin: 0;
}

.quote-author {
  font-size: 1rem;
  font-style: italic;
  margin-top: 0.5rem;
  color: #5a4b3a;
}

@media (max-width: 768px) {
  .image-gallery {
    flex-direction: column;
    align-items: center;
  }

  .image-card {
    width: 90%;
    max-width: none;
  }
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  margin: 2rem auto;
  background-color: #fff7ea;
  border-radius: 12px;
  max-width: 95%;      /* Use 95% of the page width */
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.image-gallery.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-card {
  flex: 1 1 250px;
  width: 250px;
  height: 200px; /* 👈 fixed height */
  transition: transform 0.3s ease, flex-grow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  line-height: 0;
}

.image-card:hover {
  transform: scale(1.05);
  flex-grow: 1.2;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

.image-modal.hidden {
  display: none;
}

.gallery-with-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.cta-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cta-button {
  background-color: #4b3b2a;
  color: #fff3dc;
  padding: 1.25rem 2rem;
  font-size: 1.4rem;
  font-family: 'Roboto Medium', sans-serif;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #3a2f20;
  transform: scale(1.05);
}

/* Animate slide-in */
.fade-slide-in {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}


.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.intro-with-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff7ea;
  border-radius: 12px;
  margin: 2rem auto;
  flex-wrap: wrap;
  font-family: 'Roboto Medium', sans-serif;
  text-align: center;
  font-family: 'Burgundia', sans-serif; /* ← or use 'Burgundia', 'Silver Melody', etc. */
}

.intro-text {
  flex: 1 1 500px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-button {
  background-color: #4b3b2a;
  color: #fff3dc;
  padding: 1.5rem 3rem;           /* Bigger padding */
  font-size: 1.6rem;              /* Bigger text */
  font-weight: bold;             /* More emphasis */
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Roboto Medium', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Optional: subtle shadow */

  /* 👇 pull it in from the right */
  margin-right: 10rem;
}


.cta-button:hover {
  background-color: #3a2f20;
  transform: scale(1.05);
}


/* Slide-in animation */
.fade-slide-in {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .intro-with-cta {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    max-width: 100%;
  }
}


/* INTRO SECTION */
.intro {
  text-align: center;
  padding: 2rem;
  font-family: 'Burgundia', sans-serif;
  margin: 2rem auto; /* Adds spacing around the hero */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden; /* Ensures image respects the border-radius */
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.2rem;
}

/* ABOUT PAGE SECTION */
.about-content {
  background-color: #cbb894;
  color: #2e1f0f;
  font-family: 'DMSerifText-Regular', sans-serif;
  padding: 3rem 2rem;
  font-size: 1.2rem;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  margin: 2rem auto; /* Adds spacing around the hero */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden; /* Ensures image respects the border-radius */
}

@font-face {
  font-family: 'DMSerifText-Regular';
  src: url('DMSerifText-Regular.ttf') format('truetype');
}


/* FOOTER */
footer {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #d6c2a1;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  margin: 2rem auto; /* Adds spacing around the hero */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden; /* Ensures image respects the border-radius */
}

footer .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

footer .credit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

footer .credit a {
  color: #4b3b2a;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.offbeat-logo {
  height: 50px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}

/* CUSTOM FONTS */
@font-face {
  font-family: 'Burgundia';
  src: url('Burgundia.otf') format('opentype');
}

@font-face {
  font-family: 'Silver Melody';
  src: url('SilverMelody.otf') format('opentype');
}

@font-face {
  font-family: 'Roboto Medium';
  src: url('Roboto-Medium.ttf') format('truetype');
}

.contact-columns {
  display: flex;
  justify-content: left;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-box {
  max-width: 300px;
  text-align: left;
}

form {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f1e2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  font-weight: bold;
  font-family: 'Roboto Medium', sans-serif;
}

form input,
form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  width: 700px;      /* fixed width */
  max-width: 100%;   /* still responsive */
  box-sizing: border-box;
}


form button {
  padding: 0.75rem 1.5rem;
  background-color: #4b3b2a;
  color: #fff3dc;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Roboto Medium', sans-serif;
  width: 700px;
  max-width: 100%;
}


form button:hover {
  background-color: #3a2f20;
}

.contact-layout {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #f9f1e2;
  padding: 2rem;
  border-radius: 8px;
  box-sizing: border-box;
  min-width: 900px;
}

#contactForm {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: #f9f1e2;
  border-radius: 8px;
  box-sizing: border-box;
  max-width: 900px;  /* Increase from previous 600px */
  width: 100%;
}



.contact-details.embedded {
  background-color: #fff7ea;
  padding: 1rem 0 0;
  border-top: 1px solid #cbb894;
}

.contact-details.embedded h2 {
  margin-top: 0;
}

.contact-columns {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  min-width: 120px;
  font-size: 0.95rem;
}

.form-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
  }

  .form-image {
    margin-top: 1.5rem;
    height: auto;
  }
}

@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
  }

  .logo {
    height: 55px;
    margin-bottom: 0.5rem;
  }

  .nav-title {
    order: 2;
    margin-bottom: 0.5rem;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.8rem;
  }

  .nav-controls {
    order: 3;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
  }

  .basket-icon,
  .burger img {
    width: 40px;
    height: 40px;
  }
}

.contact-details.embedded {
  background-color: #fff7ea;
  padding: 1rem 0 0;
  border-top: 1px solid #cbb894;
  text-align: center;
}

.contact-details.embedded h2 {
  margin-top: 0;
  font-family: 'Roboto Medium', sans-serif;
  font-size: 1.5rem;
  color: #4b3b2a;
}

/* Optional: center the phone and email paragraphs */
.contact-details.embedded p {
  margin: 0.5rem 0;
}

/* Optional: style icons inline */
.contact-details.embedded .contact-icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Keep columns nicely spaced */
.contact-columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ORDER FORM STYLING */
#orderForm {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f1e2;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Roboto Medium', sans-serif;
  box-sizing: border-box;
}

#orderForm label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
}

#orderForm input[type="number"] {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

#orderForm button {
  padding: 0.75rem 1.5rem;
  background-color: #4b3b2a;
  color: #fff3dc;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
}

#orderForm button:hover {
  background-color: #3a2f20;
}

#totalDisplay {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1rem;
  font-family: 'Roboto Medium', sans-serif;
  color: #4b3b2a;
}

.order-layout {
  display: flex;
  width: 100%;
  gap: 2rem;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 2rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f9f1e2;
  padding: 2rem;
  border-radius: 8px;
  min-width: 320px;
  box-sizing: border-box;
}

.form-image {
  flex: 1;
  position: relative;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-overlay-text {
  position: absolute;
  font-family: 'Burgundia', cursive;
  font-size: 3vw;
  color: #fff3dc;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .order-layout {
    flex-direction: column;
  }

  .form-image {
    margin-top: 1.5rem;
    height: auto;
  }

  .hero-overlay-text {
  position: absolute;
  font-family: 'Burgundia', cursive;
  font-size: 3vw;
  color: #fff3dc;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}


.product-item {
  margin-bottom: 1.5rem;
}

.product-desc {
  font-style: italic;
  font-weight: normal;
  font-size: 0.95rem;
  margin-top: 0.25rem;
  margin-left: 0.25rem;
  color: #4b3b2a;
}

.pay-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #4b3b2a;
  color: #fff3dc;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Roboto Medium', sans-serif;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
}

.pay-button:hover {
  background-color: #3a2f20;
}

.confirmation-container {
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
  font-family: 'Roboto Medium', sans-serif;
  padding: 2rem;
  background-color: #fff7ea;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.return-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #4b3b2a;
  color: #fff3dc;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.return-button:hover {
  background-color: #3a2f20;
}

form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.size-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stock-note {
  font-size: 0.8rem;
  color: #a33;
  margin-left: 0.5rem;
}
}

/* ========== PRIVACY BUTTON ========== */

.privacy-button-wrapper {
  margin-top: 1rem;
  text-align: center;
}

.privacy-button {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background-color: #4b3b2a;
  color: #fff3dc;
  text-decoration: none;
  border-radius: 3px;
  font-family: 'Roboto Medium', sans-serif;
  font-size: 0.65rem;
  transition: background-color 0.2s ease;
}


.privacy-button:hover {
  background-color: #3a2f20;
}

/* ========== COOKIE BANNER ========== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #4b3b2a;
  color: #fff3dc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner a {
  color: #ffeebc;
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 0.5rem;
}

.cookie-buttons button {
  background: #fff3dc;
  color: #4b3b2a;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
}

.cookie-buttons button:hover {
  background-color: #e0cfa6;
}

.cookie-banner.hidden {
  display: none;
}

.pay-button.loading {
  opacity: 0.6;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero.loaded img {
  opacity: 1;
}

.cookie-banner {
  transition: transform 0.4s ease-in-out;
}

@media (max-width: 480px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0.5rem 1rem;
  }

  .logo {
    height: 50px;
    margin-bottom: 0.5rem;
  }

  .nav-title {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .main-title {
    font-size: 1.3rem;
    white-space: normal;
    word-break: break-word;
    max-width: 90vw;
  }

  .subtitle {
    font-size: 0.75rem;
  }

  .nav-controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
  }

  .basket-icon,
  .burger img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero-overlay-text {
    font-size: 6vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 1rem;
    max-width: 90%;
  }
}

.product-thumb {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0.5rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.collection-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.collection-option input[type="radio"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.collection-option label {
  min-width: 100px;   /* Ensures labels line up */
  font-size: 1rem;
}

.collection-days {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #8c3f3f;
  color: #fff;
  font-size: 0.65rem;
  font-family: 'Roboto Medium', sans-serif;
  padding: 0.2rem 0.4rem;
  border-radius: 50%;
  line-height: 1;
  min-width: 1.2rem;
  text-align: center;
  display: none; /* Hidden if 0 items */
}

.basket-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #8c3f3f;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  display: none;
}
.basket-link {
  position: relative;
}

@media (max-width: 480px) {
  .image-card {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }

  .image-card img {
    height: 100%;
    object-fit: cover;
  }
}

.hero-text.thank-you {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  font-size: 4vw;
  max-width: 90%;
  padding: 0 1rem;
  line-height: 1.2;
}

.thank-you-message {
  text-align: center;
  font-family: 'Burgundia', cursive;
  font-size: 1.6rem;
  margin: 2rem auto;
  padding: 1rem;
  color: #4b3b2a;
  max-width: 700px;
}

.thank-you-button-wrapper {
  text-align: center;
  margin: 2rem auto 5rem; /* Top = 2rem, Bottom = 5rem spacing from footer */
}

.center-button {
  margin-right: 0 !important;
}
