.animated-logo {
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.ambah-word {
  display: block;
}
.ambah-tagline {
  display: block;
  margin-inline-start: 12px;
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  white-space: nowrap;
  letter-spacing: 0.5px;
  animation: tagline-enter 0.7s ease 0.45s both;
}
@media (max-width: 680px) {
  .ambah-tagline {
    margin-inline-start: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ambah-tagline {
    animation: none;
  }
}
/* Brighter, warmer Ambah palette */
body {
  background: #17100c;
  color: #fff8f2;
}
.topbar {
  background: #17100c;
}
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(20, 12, 8, 0.86) 0%,
      rgba(20, 12, 8, 0.58) 38%,
      rgba(20, 12, 8, 0.04) 78%
    ),
    url('hero-food.png') 65% center/cover no-repeat;
}
.hero:after {
  height: 90px;
  background: linear-gradient(transparent, #17100c);
}
.menu-controls {
  background: rgba(23, 16, 12, 0.94);
  border-bottom-color: rgba(255, 137, 82, 0.16);
}
.search,
.cat-btn {
  background: #2a1b14;
  border-color: rgba(255, 255, 255, 0.12);
}
.menu-item {
  background: linear-gradient(145deg, #342117, #21140e);
  border-color: rgba(255, 174, 128, 0.13);
  box-shadow: 0 10px 28px rgba(6, 3, 2, 0.2);
}
.menu-item:hover {
  background: linear-gradient(145deg, #3b2519, #25160f);
}
.variant-btn {
  background: rgba(255, 104, 45, 0.16);
  border-color: rgba(255, 126, 71, 0.38);
}
.notice,
.cart-panel {
  background: #281a13;
}
.section-title:after {
  background: linear-gradient(90deg, rgba(255, 112, 49, 0.52), transparent);
}
@media (max-width: 680px) {
  .hero {
    background:
      linear-gradient(0deg, #17100c 0%, rgba(20, 12, 8, 0.18) 60%, rgba(20, 12, 8, 0.02)),
      url('hero-food.png') 62% center/cover no-repeat;
  }
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.language-btn {
  min-width: 48px;
  color: var(--orange2);
  font-weight: 800;
}
.english-ui {
  direction: ltr;
}
.english-ui .hero-content,
.english-ui .item-name,
.english-ui .item-detail,
.english-ui .section-title,
.english-ui .control-title {
  text-align: left;
}
.english-ui .animated-logo {
  align-items: flex-start;
}
.english-ui .ambah-word {
  letter-spacing: 0;
}
.topbar,
main,
.categories,
.menu-grid {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}
.language-changing .topbar,
.language-changing main {
  opacity: 0.35;
  transform: translateY(5px);
  filter: blur(3px);
}
.language-btn {
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.language-changing .language-btn {
  transform: rotateY(180deg);
  background: rgba(242, 90, 32, 0.18);
}
.add-btn,
.variant-btn {
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.add-btn.added,
.variant-btn.added {
  animation: add-success 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes add-success {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.9);
    background: #32a86c;
    color: #fff;
  }
  100% {
    transform: scale(1);
  }
}
.cart-bar.cart-bump {
  animation: cart-bump 0.42s cubic-bezier(0.2, 0.9, 0.2, 1);
}
@keyframes cart-bump {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.045;
  }
}
.cart-sheet {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s;
}
.cart-sheet.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease;
}
.cart-panel {
  transform: translateY(105%);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cart-sheet.open .cart-panel {
  transform: translateY(0);
}
.cart-row {
  animation: row-enter 0.28s ease both;
}
@keyframes row-enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .topbar,
  main,
  .categories,
  .menu-grid,
  .language-btn,
  .add-btn,
  .variant-btn,
  .cart-bar,
  .cart-sheet,
  .cart-panel,
  .cart-row {
    animation: none !important;
    transition: none !important;
  }
}
.category-home {
  padding: 34px 0 24px;
  scroll-margin-top: 175px;
}
.category-home[hidden],
.section-toolbar[hidden] {
  display: none;
}
.category-home-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}
.category-home-head h2 {
  margin: 2px 0 0;
  font-size: 30px;
}
.category-home-head small {
  color: var(--muted);
}
.eyebrow {
  color: var(--orange2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.category-card {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 174, 128, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, #3a2418, #24150e);
  color: #fff;
  text-align: start;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.category-card:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  inset: -45px -35px auto auto;
  border-radius: 50%;
  background: rgba(242, 90, 32, 0.12);
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 16px 32px rgba(8, 4, 2, 0.22);
}
.category-icon {
  font-size: 40px;
  line-height: 1;
}
.category-copy b {
  display: block;
  font-size: 14px;
}
.category-copy small {
  color: var(--muted);
  font-size: 9px;
}
.category-card i {
  position: absolute;
  inset-inline-end: 15px;
  bottom: 17px;
  color: var(--orange2);
  font-style: normal;
}
.section-toolbar {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 137, 82, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 106, 45, 0.1), rgba(42, 27, 20, 0.72));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  scroll-margin-top: 150px;
}
.back-categories {
  border: 1px solid rgba(255, 137, 82, 0.35);
  border-radius: 9px;
  background: rgba(255, 106, 45, 0.1);
  color: var(--orange2);
  padding: 8px 11px;
  cursor: pointer;
  font-size: 11px;
}
.section-toolbar span {
  font-size: 16px;
  font-weight: 800;
}
.english-ui .category-card {
  text-align: left;
}
.english-ui .category-card i {
  transform: rotate(180deg);
}
@media (max-width: 820px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .category-home {
    padding-top: 22px;
  }
  .category-home-head {
    align-items: start;
    flex-direction: column;
  }
  .category-home-head h2 {
    font-size: 25px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .category-card {
    min-height: 135px;
    padding: 15px;
  }
  .category-icon {
    font-size: 34px;
  }
  .section-toolbar {
    top: 153px;
  }
  .categories {
    display: none;
  }
}

/* Clear, conversion-focused category chooser */
.category-home-head {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.category-home-head small {
  font-size: 11px;
}
.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.category-card {
  min-height: 235px;
  border-color: rgba(255, 174, 128, 0.22);
  box-shadow: 0 12px 30px rgba(6, 3, 2, 0.18);
}
.category-card:focus-visible {
  outline: 3px solid rgba(255, 138, 85, 0.5);
  outline-offset: 3px;
}
.category-copy {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(25, 14, 9, 0.9), rgba(25, 14, 9, 0.99));
  border-top: 1px solid rgba(242, 90, 32, 0.28);
}
.category-copy b {
  font-size: 18px;
  line-height: 1.35;
}
.category-copy small {
  margin: 0;
}
.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--orange2);
  font-size: 10px;
  font-weight: 900;
  transform: translateY(-1px);
}
.category-cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
[dir='rtl'] .category-cta svg {
  transform: rotate(180deg);
}
.featured-category {
  grid-column: span 2;
  border: 2px solid #f25a20;
  background: linear-gradient(145deg, #4a2414, #24120b);
  box-shadow: 0 18px 42px rgba(242, 90, 32, 0.2), 0 0 0 5px rgba(242, 90, 32, 0.08);
}
.featured-category:hover {
  border-color: #ff9a6c;
  box-shadow: 0 22px 50px rgba(242, 90, 32, 0.3), 0 0 0 6px rgba(242, 90, 32, 0.12);
}
.featured-category .category-shade {
  background: linear-gradient(180deg, rgba(15, 8, 4, 0.02) 12%, rgba(45, 16, 7, 0.35) 48%, rgba(15, 8, 4, 0.98) 100%);
}
.category-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  inset-inline-start: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7b3d, #e74712);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(242, 90, 32, 0.32);
}
.featured-category .category-copy {
  background: linear-gradient(180deg, rgba(67, 28, 14, 0.82), rgba(37, 16, 9, 0.98));
  border-top-color: rgba(255, 138, 85, 0.55);
}
.featured-category .category-copy b {
  color: #fff;
  text-shadow: 0 2px 12px rgba(242, 90, 32, 0.35);
}
.featured-category .category-cta {
  padding: 9px 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6a2d, #e74712);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 90, 32, 0.28);
}
@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .featured-category {
    grid-column: auto;
  }
  .category-card {
    min-height: 200px;
  }
}
.menu-controls .categories {
  display: none !important;
}

/* Ambah order experience */
.cart-sheet {
  align-items: center;
  padding: 18px;
  backdrop-filter: blur(6px);
}
.cart-panel {
  width: min(680px, 100%);
  max-height: min(90vh, 820px);
  padding: 26px;
  border-color: rgba(242, 90, 32, 0.2);
  border-radius: 26px;
  background: #fff8f2 !important;
  color: #2b1a12;
  box-shadow: 0 30px 90px rgba(10, 5, 2, 0.48);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cart-panel::-webkit-scrollbar {
  display: none;
  width: 0;
}
.sheet-head {
  align-items: center;
}
.sheet-head h2 {
  margin: 1px 0 0;
  color: #8f3218;
  font-size: 27px;
}
.sheet-head small {
  color: #8a7468;
  font-size: 10px;
}
.sheet-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sheet-head button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(143, 50, 24, 0.14);
  border-radius: 50%;
  background: #fff;
  color: #8f3218;
  cursor: pointer;
}
.sheet-head .clear-cart {
  width: auto;
  padding: 0 12px;
  border-radius: 11px;
  background: #fff0e9;
  color: #a43b20;
  font-size: 10px;
  font-weight: 800;
}
.cart-row {
  grid-template-columns: minmax(0, 1fr) 150px 88px;
  gap: 12px;
  padding: 13px;
  border-color: rgba(143, 50, 24, 0.12);
  border-radius: 15px;
  background: #fff;
}
.cart-panel .item-note input {
  border-color: rgba(242, 90, 32, 0.2);
  background: #fff5ef;
  color: #d94d18;
}
.cart-panel .item-note input::placeholder {
  color: rgba(164, 59, 32, 0.55);
}
.cart-panel .item-note input:focus {
  border-color: var(--orange);
  background: #fff;
}
.cart-row > div:first-child {
  min-width: 0;
}
.cart-row > div:first-child b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-row > strong {
  width: 88px;
  color: #8f3218;
  text-align: end;
  white-space: nowrap;
}
.qty {
  width: 150px;
  justify-content: space-between;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(242, 90, 32, 0.18);
  border-radius: 999px;
  background: #fff0e6;
  direction: ltr;
}
.qty b {
  min-width: 30px;
  color: #2b1a12;
  text-align: center;
}
.qty button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  border-radius: 50%;
  background: #f3d3c1;
  color: #74301d;
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.16s ease;
}
.qty button[data-act='plus'] {
  background: var(--orange);
  color: #fff;
}
.qty button:hover {
  transform: scale(1.09);
}
.cart-total {
  border-top-color: rgba(143, 50, 24, 0.12);
  color: #8f3218;
  font-size: 16px;
}
.order-form {
  gap: 13px;
}
.order-form label {
  display: grid;
  gap: 6px;
}
.order-form label > span,
.order-type-field legend {
  color: #725e53;
  font-size: 11px;
  font-weight: 800;
}
.order-form input {
  border-color: rgba(143, 50, 24, 0.14);
  border-radius: 13px;
  background: #fff;
  color: #2b1a12;
  outline: none;
}
.order-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 90, 32, 0.12);
}
.order-type-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.order-type-field legend {
  margin-bottom: 7px;
}
.order-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(143, 50, 24, 0.12);
  border-radius: 16px;
  background: #f4dfd2;
}
.order-option {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #806b60;
  text-align: start;
  cursor: pointer;
}
.order-option > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.order-option small {
  overflow: hidden;
  font-size: 8px;
  opacity: 0.72;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.option-icon {
  color: #d0aa96;
  font-size: 10px;
}
.order-option.active {
  border-color: rgba(242, 90, 32, 0.2);
  background: #fff;
  color: #a13b20;
  box-shadow: 0 6px 18px rgba(100, 43, 21, 0.08);
}
.order-option.active .option-icon {
  color: var(--orange);
  text-shadow: 0 0 0 4px rgba(242, 90, 32, 0.1);
}
.delivery-fields {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(242, 90, 32, 0.18);
  border-radius: 17px;
  background: #fff0e6;
  animation: delivery-open 0.3s ease both;
}
.delivery-fields[hidden] {
  display: none;
}
.map-location {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px dashed rgba(242, 90, 32, 0.38);
  border-radius: 13px;
  background: #fff;
  color: #2b1a12;
  text-align: start;
  cursor: pointer;
}
.map-location > span:last-child {
  display: grid;
  gap: 2px;
}
.map-location small {
  color: #806b60;
  font-size: 9px;
}
.map-pin {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f6d8c6;
  color: var(--orange);
  font-size: 21px;
}
.location-loading .map-pin {
  animation: add-success 0.7s ease-in-out infinite;
}
.location-ready {
  border-color: rgba(39, 160, 87, 0.45);
  background: #effcf3;
}
.location-error {
  border-color: rgba(196, 66, 48, 0.45);
  background: #fff3ef;
}
.whatsapp {
  min-height: 48px;
  box-shadow: 0 10px 25px rgba(242, 90, 32, 0.2);
  cursor: pointer;
}
.confirm-dialog {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(25, 12, 7, 0.76);
  backdrop-filter: blur(6px);
}
.confirm-dialog[hidden] {
  display: none;
}
.confirm-panel {
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid rgba(242, 90, 32, 0.2);
  border-radius: 24px;
  background: #fff8f2;
  color: #2b1a12;
  box-shadow: 0 28px 80px rgba(10, 5, 2, 0.5);
  text-align: center;
  animation: confirm-open 0.3s ease both;
}
.confirm-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #ffe1d4;
  color: #a43b20;
  font-size: 26px;
  font-weight: 900;
}
.confirm-panel h2 {
  margin: 0 0 8px;
  color: #8f3218;
}
.confirm-panel p {
  margin: 0;
  color: #806b60;
  font-size: 12px;
}
.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 9px;
  margin-top: 23px;
}
.confirm-actions button {
  min-height: 46px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}
.confirm-cancel {
  border: 1px solid rgba(143, 50, 24, 0.14);
  background: #fff;
  color: #2b1a12;
}
.confirm-delete {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
}
.cart-flyer {
  position: fixed;
  z-index: 70;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(242, 90, 32, 0.2);
  pointer-events: none;
  animation: fly-to-cart 0.7s cubic-bezier(0.35, 0, 0.2, 1) forwards;
}
@keyframes fly-to-cart {
  to {
    opacity: 0;
    transform: translate(var(--fly-x), var(--fly-y)) scale(0.3);
  }
}
@keyframes delivery-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}
@keyframes confirm-open {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
}
@media (max-width: 680px) {
  .cart-sheet {
    align-items: flex-end;
    padding: 0;
  }
  .cart-panel {
    max-height: 92vh;
    padding: 20px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
  }
  .cart-row {
    grid-template-columns: minmax(0, 1fr) 124px 68px;
    gap: 7px;
  }
  .cart-row > strong {
    width: 68px;
  }
  .qty {
    width: 124px;
  }
  .qty button {
    width: 31px;
    height: 31px;
  }
  .order-options {
    grid-template-columns: 1fr;
  }
}
.menu-item {
  display: block !important;
  height: 100%;
  padding: 0 0 14px !important;
  overflow: hidden !important;
}
.menu-grid {
  align-items: stretch;
}
.menu-grid:has(.show-variants[aria-expanded='true']) {
  align-items: start;
}
.menu-grid:has(.show-variants[aria-expanded='true']) .menu-item {
  height: auto;
}
.menu-item.variants-collapsed {
  padding-bottom: 68px !important;
}
.item-photo {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #2b1b13;
}
.item-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  min-height: 88px;
  padding: 14px 15px 38px;
}
.has-variants .item-info {
  position: static;
  display: block;
  min-height: 0;
  padding-bottom: 0;
}
.has-variants .variant-options {
  margin-bottom: 0;
}
.menu-item:before {
  z-index: 2;
}
.sold:after {
  z-index: 3;
  background: rgba(20, 12, 8, 0.88);
  padding: 5px 8px;
  border-radius: 7px;
}
@media (max-width: 560px) {
  .item-photo {
    height: 150px;
  }
}
.category-card {
  min-height: 205px;
  padding: 0 !important;
  justify-content: flex-end !important;
  background: #2b1b13 !important;
}
.category-card:after {
  display: none;
}
.category-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 8, 4, 0.02) 20%,
    rgba(15, 8, 4, 0.42) 56%,
    rgba(15, 8, 4, 0.96) 100%
  );
}
.category-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 55px 17px 17px;
  color: #fff;
}
.category-copy b {
  font-size: 16px;
  text-shadow: 0 2px 8px #000;
}
.category-copy small {
  margin-top: 4px;
  color: #ead8cc;
}
.category-card:hover .category-photo {
  transform: scale(1.06);
}
@media (max-width: 560px) {
  .category-card {
    min-height: 170px;
  }
  .category-copy {
    padding: 45px 13px 13px;
  }
  .category-copy b {
    font-size: 13px;
  }
}

/* Final responsive category layout */
.category-home {
  padding-top: 24px;
}
.category-home-head {
  margin-bottom: 16px;
}
.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.category-card {
  display: block !important;
  height: 180px;
  min-height: 0;
  padding: 0 !important;
  border-width: 1px;
  border-radius: 17px;
  border-color: rgba(255, 174, 128, 0.22);
  box-shadow: 0 8px 24px rgba(6, 3, 2, 0.18);
}
.category-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 7, 4, 0.94));
}
.category-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 18px 14px 12px;
  background: transparent;
  border: 0;
}
.category-copy b {
  position: static;
  min-width: 0;
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .category-home {
    padding-top: 16px;
  }
  .category-home-head {
    margin-bottom: 12px;
  }
  .category-home-head h2 {
    font-size: 21px;
  }
  .category-home-head small,
  .eyebrow {
    display: none;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .category-card {
    height: 132px;
    border-radius: 14px;
  }
  .category-copy {
    min-height: 48px;
    padding: 16px 10px 9px;
  }
  .category-copy b {
    font-size: 12px;
  }
}
