:root {
  --plum: #3d0d3d;
  --cream: #FDEED0;
  --gold: #d7ad65;
  --navbar-height: 64px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--plum);
}

/* Navbar styles */
.navbar {
  background: transparent;
  padding: 0.5rem 0;
  transition: filter 180ms ease;
  z-index: 1030;
}

.navbar.is-scrolled {
  filter: drop-shadow(0 4px 7px rgba(19, 3, 20, 0.4));
}

.navbar .container-fluid {
  background: var(--plum);
  border: 1px solid rgba(255, 241, 203, 0.62);
  border-radius: 0.95rem;
  max-width: 1200px;
  min-height: 64px;
  padding: 0.28rem 1.05rem;
  box-shadow: 0 6px 11px rgba(19, 3, 20, 0.38);
}

.navbar-brand {
  align-items: center;
  color: var(--cream);
  display: flex;
  gap: 0.65rem;
  margin: 0;
}

.navbar-brand img {
  display: block;
  height: 31px;
  max-width: 180px;
  object-fit: contain;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  gap: 0.1rem;
}

.nav-link {
  color: var(--cream) !important;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.7rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold) !important;
}

.navbar-actions {
  margin-left: auto;
}

.cart-link {
  color: var(--cream);
  display: inline-flex;
  position: relative;
  text-decoration: none;
}

.cart-link svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 21px;
}

.cart-badge {
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--plum);
  border-radius: 50%;
  color: var(--plum);
  display: flex;
  font-size: 0.52rem;
  font-weight: 700;
  height: 13px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -7px;
  top: -7px;
  width: 13px;
}

.shop-button {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 0.42rem;
  box-shadow: inset 0 0 0 1px #8e5214;
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  text-transform: none;
}

.shop-button:hover,
.shop-button:focus {
  background: transparent;
  color: var(--cream);
}

.mobile-actions {
  align-items: center;
  display: none;
  gap: 0.8rem;
  margin-left: auto;
}

.mobile-cart {
  align-items: center;
  background: rgba(255, 247, 231, 0.1);
  border-radius: 1rem;
  color: var(--cream);
  display: flex;
  height: 66px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  width: 66px;
}

.mobile-cart svg {
  fill: none;
  height: 31px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 31px;
}

.mobile-cart .cart-badge {
  border-color: var(--plum);
  font-size: 0.68rem;
  height: 32px;
  right: -8px;
  top: -9px;
  width: 32px;
}

.navbar-toggler {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 1rem;
  box-shadow: inset 0 0 0 2px #9d6419, 0 2px 4px rgba(0, 0, 0, .3);
  height: 66px;
  padding: 0;
  width: 66px;
}

.navbar-toggler:focus {
  box-shadow: inset 0 0 0 2px #9d6419, 0 0 0 .2rem rgba(215, 173, 101, .4);
}

.menu-bars {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.menu-bars i {
  background: #bd7a17;
  border-radius: 2px;
  display: block;
  height: 4px;
  width: 28px;
}

/* Hanging logo styles */
.hanging-logo {
  display: block;
  filter: drop-shadow(0 9px 8px rgba(23, 3, 23, 0.42));
  left: 50%;
  line-height: 0;
  position: fixed;
  top: 66px;
  transform: translateX(-50%);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.hanging-logo.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hanging-logo img {
  display: block;
  height: auto;
  max-height: 150px;
  max-width: min(13vw, 204px);
  width: 100%;
}

/* Hero styles */
.hero {
  margin-top: 0;
  overflow: hidden;
  width: 100%;
}

.hero picture,
.hero img {
  display: block;
  width: 100%;
}

.hero img {
  height: auto;
}

/* Founder and legacy section */
.legacy-intro {
  background: transparent;
  padding: clamp(3.6rem, 8vw, 7.5rem) 0;
  position: relative;
}

.legacy-intro::before {
  background: linear-gradient(to bottom, transparent 0, #fdeed0 130px, #fdeed0 100%);
  content: "";
  inset: -130px 0 0;
  position: absolute;
  z-index: 0;
}

.legacy-intro::after {
  background: linear-gradient(to bottom, #fdeed0 0, rgba(253, 238, 208, 0) 100%);
  bottom: -100px;
  content: "";
  height: 100px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.legacy-intro .container {
  position: relative;
  z-index: 2;
}

.section-kicker {
  color: #9a6c7a;
  font-family: "Inter", sans-serif;
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.27em;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.legacy-intro h1 {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.3vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
}

.title-ornament {
  align-items: center;
  display: inline-flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.title-ornament i {
  background: rgba(61, 13, 61, 0.18);
  display: block;
  height: 1px;
  width: 73px;
}

.title-ornament b {
  background: #c89f75;
  border-radius: 50%;
  display: block;
  height: 6px;
  width: 6px;
}

.about-image-section {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.about-image-section picture,
.about-image-section img {
  display: block;
  height: 100%;
  width: 100%;
}

.about-image-section img {
  object-fit: cover;
}

.about-image-section::before {
  background: linear-gradient(to bottom, #fdeed0 0, rgba(253, 238, 208, 0) 130px);
  content: "";
  height: 130px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* Awards and recognition section */
.awards-section {
  background: #fdeed0;
  padding: clamp(4.5rem, 5vw, 5rem) 0;
}

.awards-container {
  max-width: 1280px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.awards-heading {
  align-items: center;
  display: flex;
  gap: 1.65rem;
  margin-bottom: 2.3rem;
}

.awards-heading .section-kicker {
  margin-bottom: 0.55rem;
}

.awards-heading h2 {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
}

.heading-rule {
  background: rgba(128, 82, 96, 0.15);
  flex: 1;
  height: 1px;
  margin-top: 1.6rem;
}

.medal-icon {
  fill: none;
  height: 33px;
  margin-top: 1.6rem;
  stroke: #b39a9c;
  stroke-width: 1.5;
  width: 33px;
}

.award-card {
  background: rgba(255, 251, 241, 0.62);
  border: 2px solid #f3c400;
  border-radius: 1.3rem;
  box-shadow: 6px 8px 13px rgba(90, 55, 26, 0.14);
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 1.7rem;
}

.award-featured {
  min-height: 100%;
}

.award-topline {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.award-label {
  background: rgba(217, 198, 195, 0.28);
  border-radius: 99px;
  color: #9a7482;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  padding: 0.38rem 0.75rem;
  text-transform: uppercase;
}

.trophy-label::before {
  color: #c98a09;
  content: "♕";
  font-size: 1rem;
  margin-right: 0.55rem;
  vertical-align: -0.08rem;
}

.award-year {
  background: rgba(232, 187, 79, 0.14);
  border: 1px solid rgba(204, 151, 34, 0.28);
  border-radius: 99px;
  color: #c48a18;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
}

.award-card h3 {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  font-weight: 400;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.award-featured h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  text-transform: none;
}

.award-card p {
  color: #a58291;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  line-height: 1.45;
  margin: auto 0 0;
}

.award-featured img {
  border-radius: 0.4rem;
  display: block;
  height: 238px;
  object-fit: cover;
  width: 100%;
}

.award-featured .award-description {
  border-bottom: 1px solid rgba(128, 82, 96, 0.14);
  margin-top: 0.95rem;
  padding-bottom: 0.35rem;
}

.award-footer {
  color: #9a7482;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  margin-top: 0.65rem;
  text-transform: uppercase;
}

/* Sonaka Delights promise section */
.promise-section {
  background: #fdeed0;
  padding: 1rem 0 4rem;
}

.promise-container {
  max-width: 1280px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.promise-message {
  align-items: center;
  background: var(--plum);
  border-radius: 1.1rem;
  color: var(--cream);
  display: flex;
  gap: 1.35rem;
  min-height: 124px;
  padding: 1.7rem 2.4rem;
}

.quote-mark {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.5;
}

.promise-message p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 0.45rem;
}

.promise-message p strong {
  font-weight: 700;
}

.promise-message div>span {
  color: rgba(253, 238, 208, 0.65);
  font-family: "Inter", sans-serif;
  font-size: 0.51rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promise-stats {
  margin-top: 0.5rem;
}

.promise-stat {
  align-items: center;
  background: var(--plum);
  border-radius: 0.75rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 145px;
  padding: 1rem;
  text-align: center;
}

.stat-icon {
  align-items: center;
  background: rgba(253, 238, 208, 0.2);
  border-radius: 50%;
  display: flex;
  font-size: 1rem;
  height: 29px;
  justify-content: center;
  margin-bottom: 0.35rem;
  width: 29px;
}

.promise-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.promise-stat h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.73rem;
  font-weight: 400;
  margin: 0.25rem 0;
}

.promise-stat p {
  color: rgba(253, 238, 208, 0.66);
  font-family: "Inter", sans-serif;
  font-size: 0.48rem;
  margin: 0;
}

/* Sonaka Delights story section */
.story-intro {
  background: #fdeed0;
  padding: 1.1rem 1rem 1.6rem;
  text-align: center;
}

.story-intro p {
  color: var(--plum);
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0 0 1.25rem;
}

.story-intro h2 {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
}

.story-image-section {
  background: #fdeed0;
  line-height: 0;
  overflow: hidden;
  width: 100%;
}

.story-image-section picture,
.story-image-section img {
  display: block;
  width: 100%;
}

.story-image-section img {
  height: auto;
}

/* Catalogue section */
.catalogue-section {
  background: #fdeed0;
  padding: 1.5rem 3rem;
}

.catalogue-panel {
  background-color: var(--plum);
  background-image: url("images/desktop/background%20pattern%20desktop.svg");
  background-position: center;
  background-size: cover;
  border-radius: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.8rem) clamp(3rem, 5vw, 4.5rem);
}

.catalogue-heading {
  color: var(--cream);
  margin: 0 auto 2rem;
}

.catalogue-heading .section-kicker {
  color: rgba(253, 238, 208, 0.55);
  margin-bottom: 0.5rem;
}

.catalogue-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 0.8rem;
}

.catalogue-heading>p:last-child {
  color: rgba(253, 238, 208, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.catalogue-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  perspective: 1200px;
}

.catalogue-card {
  background: #fdf1d8;
  border-radius: 1rem;
  box-shadow: 0 16px 20px rgba(21, 1, 18, 0.35), 0 3px 0 rgba(255, 255, 255, 0.35) inset;
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-2deg) translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.catalogue-card:nth-child(even) {
  transform: rotateX(2deg) rotateY(2deg) translateZ(0);
}

.catalogue-card:hover {
  box-shadow: 0 23px 28px rgba(21, 1, 18, 0.4), 0 3px 0 rgba(255, 255, 255, 0.35) inset;
  transform: rotateX(0) rotateY(0) translateY(-8px) translateZ(20px);
}

.card-image {
  background: #fdf1d8;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.catalogue-copy {
  color: var(--plum);
  min-height: 124px;
  padding: 1rem 1.05rem 1.2rem;
}

.catalogue-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0 0 0.55rem;
}

.catalogue-copy p {
  color: #9c7482;
  font-family: "Inter", sans-serif;
  font-size: 0.63rem;
  line-height: 1.45;
  margin: 0;
}

/* Responsive breakpoints */
@media (max-width: 1199.98px) {
  .navbar .container-fluid {
    max-width: calc(100% - 2rem);
  }

  .navbar-collapse {
    background: var(--plum);
    margin: 0.4rem -1.05rem -0.28rem;
    padding: 0.65rem 1.5rem 1.15rem;
  }

  .nav-links {
    padding-bottom: 0.55rem;
  }

  .navbar-actions {
    margin-left: 0;
    padding-top: 0.55rem;
  }

  .mobile-actions {
    display: flex;
  }

  .mobile-cart,
  .navbar-toggler {
    height: 38px;
    width: 38px;
  }

  .mobile-cart {
    border-radius: 0.8rem;
  }

  .navbar-toggler {
    border-radius: 0.8rem;
  }

  .mobile-cart svg {
    height: 21px;
    width: 21px;
  }

  .mobile-cart .cart-badge {
    height: 19px;
    width: 19px;
  }

  .menu-bars {
    gap: 3px;
  }

  .menu-bars i {
    height: 2px;
    width: 18px;
  }

  .hanging-logo {
    display: none;
  }

  header.menu-open .hanging-logo {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 767.98px) {
  :root {
    --navbar-height: 76px;
  }

  .navbar {
    padding: 0.55rem 0;
  }

  .navbar .container-fluid {
    border-radius: 1.5rem;
    max-width: calc(100% - 1.25rem);
    min-height: 64px;
    padding: 0.35rem 1rem;
  }

  .navbar-brand {
    gap: 0.42rem;
  }

  .navbar-brand img {
    height: 42px;
    max-width: 42px;
  }

  .brand-name {
    font-size: clamp(0.7rem, 3.6vw, 1rem);
    letter-spacing: 0.11em;
  }

  .navbar-collapse {
    border-radius: 0 0 1.25rem 1.25rem;
    margin: 0.4rem -1rem -0.35rem;
    padding: 0.7rem 1rem 1.1rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.72rem 0 !important;
  }

  .mobile-actions {
    display: flex;
  }

  .mobile-cart,
  .navbar-toggler {
    height: 40px;
    width: 40px;
  }

  .mobile-cart {
    border-radius: 0.8rem;
  }

  .navbar-toggler {
    border-radius: 0.8rem;
  }

  .mobile-cart svg {
    height: 21px;
    width: 21px;
  }

  .mobile-cart .cart-badge {
    height: 19px;
    width: 19px;
  }

  .hanging-logo {
    top: 75px;
  }

  .hanging-logo img {
    max-height: none;
    max-width: none;
    width: 76px;
  }

  .legacy-intro {
    padding: 2.1rem 1rem 2.25rem;
    z-index: 1;
  }

  .legacy-intro::before {
    background: linear-gradient(to bottom, transparent 0, #fdeed0 80px, #fdeed0 100%);
    inset: -80px 0 0;
  }

  .legacy-intro::after {
    bottom: -70px;
    height: 70px;
  }

  .about-image-section::before {
    background: linear-gradient(to bottom, #fdeed0 0, rgba(253, 238, 208, 0) 80px);
    height: 80px;
  }

  .title-ornament i {
    width: 52px;
  }

  .awards-section {
    padding: 3.5rem 0;
  }

  .awards-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .awards-heading {
    align-items: flex-end;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .heading-rule {
    margin-top: 1rem;
  }

  .medal-icon {
    height: 25px;
    margin-top: 1rem;
    width: 25px;
  }

  .award-card {
    min-height: 0;
    padding: 1.25rem;
  }

  .award-featured img {
    height: 220px;
  }

  .promise-section {
    padding: 0.5rem 0 2.5rem;
  }

  .promise-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .promise-message {
    align-items: flex-start;
    border-radius: 0.85rem;
    gap: 0.7rem;
    min-height: 0;
    padding: 1.25rem;
  }

  .quote-mark {
    font-size: 2.5rem;
    margin-top: 0.4rem;
  }

  .promise-message p {
    font-size: 0.78rem;
  }

  .promise-stat {
    min-height: 128px;
    padding: 0.8rem 0.4rem;
  }

  .promise-stat h3 {
    font-size: 0.66rem;
  }

  .promise-stat p {
    font-size: 0.43rem;
  }

  .story-intro {
    padding: 1.25rem 1rem 1.6rem;
  }

  .story-intro p {
    margin-bottom: 0.85rem;
  }

  .catalogue-section {
    padding: 1rem;
  }

  .catalogue-panel {
    border-radius: 1rem;
    padding: 2.5rem 1rem;
  }

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

  .card-image {
    height: 150px;
  }

  .catalogue-copy {
    min-height: 135px;
    padding: 0.85rem;
  }

  .catalogue-copy h3 {
    font-size: 0.9rem;
  }

  .catalogue-copy p {
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 210px;
  }
}

/* Footer */
.site-footer {
  background: #fdeed0;
  /* padding: 0 3rem 1.3rem; */
}

.footer-panel {
  background-color: var(--plum);
  background-image: url("images/desktop/background%20pattern%20desktop.svg");
  background-position: center;
  background-size: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  color: rgba(253, 238, 208, 0.7);
  margin: 0 auto;
  /* max-width: 1320px; */
  padding: 3.2rem 3.7rem 1.35rem;
}

.footer-main {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2.8fr 1fr 1fr 1fr;
}

.footer-brand {
  max-width: 255px;
}

.footer-wordmark {
  align-items: center;
  color: var(--cream);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-wordmark span {
  align-items: center;
  border: 1px solid rgba(253, 238, 208, 0.4);
  border-radius: 50%;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.6rem;
  height: 32px;
  justify-content: center;
  letter-spacing: 0;
  margin-right: 0.7rem;
  width: 32px;
}

.footer-brand p {
  font-family: "Inter", sans-serif;
  font-size: 0.73rem;
  line-height: 1.6;
  margin: 1.65rem 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links p {
  color: rgba(253, 238, 208, 0.43);
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.21em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(253, 238, 208, 0.76);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(253, 238, 208, 0.13);
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  justify-content: space-between;
  margin-top: 3.25rem;
  padding-top: 1.2rem;
}

.footer-bottom em {
  color: rgba(253, 238, 208, 0.48);
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 0 1rem 1rem;
  }

  .footer-panel {
    border-radius: 1rem;
    padding: 2.5rem 1.5rem 1.2rem;
  }

  .footer-main {
    gap: 2rem 1.2rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 290px;
  }

  .footer-brand p {
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .footer-bottom em {
    font-size: 0.55rem;
  }
}

@media (max-width: 430px) {
  .navbar .container-fluid {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .navbar-brand img {
    max-width: 38px;
  }

  .brand-name {
    font-size: clamp(0.62rem, 3.4vw, 0.82rem);
    letter-spacing: 0.09em;
  }

  .mobile-actions {
    gap: 0.45rem;
  }

  .mobile-cart,
  .navbar-toggler {
    height: 38px;
    width: 38px;
  }

  .mobile-cart {
    border-radius: 0.75rem;
  }

  .navbar-toggler {
    border-radius: 0.75rem;
  }

  .mobile-cart svg {
    height: 20px;
    width: 20px;
  }

  .mobile-cart .cart-badge {
    height: 18px;
    width: 18px;
  }

  .menu-bars {
    gap: 3px;
  }

  .menu-bars i {
    height: 2px;
    width: 18px;
  }
}