:root {
  --blue-900: #14285f;
  --blue-800: #1f3777;
  --blue-700: #29468f;
  --blue-050: #f3f6fc;
  --gold-500: #c9a23e;
  --gold-200: #f0dd9c;
  --gold-080: #fff7dc;
  --line: #e4e8f0;
  --line-strong: #d3dae8;
  --text: #20242c;
  --muted: #6a7280;
  --white: #ffffff;
  --danger: #a01f1f;
  --success: #28724d;
  --shadow: 0 10px 28px rgba(21, 37, 82, .08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: 
    radial-gradient(at 10% 10%, #f0dd9c 0%, transparent 50%),
    radial-gradient(at 90% 15%, #c6d9f8 0%, transparent 50%),
    radial-gradient(at 15% 85%, #fff7dc 0%, transparent 50%),
    radial-gradient(at 85% 85%, #adc9ff 0%, transparent 50%),
    linear-gradient(135deg, #e6f0ff 0%, #fffdf5 50%, #d9e8ff 100%);
  background-attachment: fixed;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  background: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

.shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(201, 162, 62, .15);
  backdrop-filter: blur(20px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 88px;
  padding: .9rem 0;
}

.brand {
  display: contents;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand h1 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4.4vw, 3.75rem);
  font-weight: 700;
  line-height: .9;
  white-space: nowrap;
}

.brand h1 span + span {
  margin-left: .24em;
}

.brand img {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: clamp(58px, 8vw, 76px);
  height: clamp(58px, 8vw, 76px);
  object-fit: contain;
  flex: 0 0 auto;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 40px;
  padding: .5rem 1rem;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(20, 40, 95, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(20, 40, 95, 0.2);
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 .35rem;
  background: var(--gold-080);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: .7rem;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.desktop-tabs {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-right: 8.5rem;
}

.desktop-tabs a {
  border-radius: 999px;
  color: var(--blue-900);
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.desktop-tabs a:hover {
  background: rgba(20, 40, 95, 0.05);
}

.desktop-tabs a.active {
  background: var(--blue-900);
  color: #fff;
  box-shadow: 0 4px 10px rgba(20, 40, 95, 0.15);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 99px;
}

.home-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin: 1rem 0 1.35rem;
  min-width: 0;
}

.quick-search {
  position: relative;
  width: 100%;
  min-width: 0;
}

.menu-filter-button {
  width: 100%;
  min-height: 48px;
  margin-top: 0.5rem;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue-900);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
  padding: .85rem 1rem;
}

.menu-filter-button:hover {
  background: var(--line);
}

.quick-search span {
  position: absolute;
  left: .85rem;
  top: 50%;
  color: var(--blue-700);
  font-size: 1.1rem;
  transform: translateY(-50%);
  z-index: 1;
}

.quick-search input {
  min-height: 42px;
  padding-left: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(201, 162, 62, .2);
}

.filter-button {
  min-height: 42px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(201, 162, 62, .2);
  border-radius: 999px;
  color: var(--blue-900);
  padding: .58rem 1rem;
  font-size: .78rem;
  font-weight: 800;
}

.filter-content label {
  display: grid;
  gap: .4rem;
}

.filter-content span,
.cart-footer label {
  color: var(--blue-900);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  outline: none;
  padding: .68rem .75rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(41, 70, 143, .13);
}

.clear-button {
  min-height: 42px;
  background: var(--blue-050);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--blue-900);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.apply-button {
  min-height: 42px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog {
  padding-bottom: 4rem;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.catalog-head p {
  margin: 0 0 .15rem;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-head h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 7vw, 3rem);
  line-height: .96;
}

.catalog-head span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201, 162, 62, .24);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(21, 37, 82, .04);
}

.product-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .82;
  background: linear-gradient(145deg, #f6f9ff, #fff8df);
  border-bottom: 1px solid rgba(201, 162, 62, .24);
  overflow: hidden;
}

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

.product-card.unavailable .product-media img {
  filter: grayscale(1);
  opacity: .65;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: .95rem;
}

.product-category {
  margin: 0 0 .35rem;
  color: var(--blue-700);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-title {
  margin: 0;
  color: var(--blue-900);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.product-description {
  margin: .45rem 0 .75rem;
  color: var(--muted);
  font-size: .84rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: .7rem;
}

.tag {
  padding: .15rem .45rem;
  background: linear-gradient(135deg, var(--blue-050), var(--gold-080));
  border-radius: 999px;
  color: var(--blue-700);
  font-size: .62rem;
  font-weight: 700;
}

.status {
  width: fit-content;
  margin-bottom: .85rem;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status.available {
  color: var(--success);
}

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

.status.consult {
  color: var(--blue-700);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  margin-top: auto;
}

.price {
  color: var(--blue-900);
  font-size: 1.05rem;
  font-weight: 900;
}

.add-button {
  min-height: 40px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border: 0;
  border-radius: 10px;
  color: #fff;
  padding: .58rem .85rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.add-button:hover {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  transform: translateY(-1px);
}

.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 0;
  border-radius: 10px;
  color: #fff;
  padding: .58rem .85rem;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.checkout-button::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-5.5-2.8-23.4-8.6-44.6-27.6-16.5-14.7-27.6-32.8-30.8-38.4-3.2-5.6-.3-8.6 2.5-11.4 2.5-2.5 5.5-6.5 8.3-9.7 2.8-3.2 3.7-5.5 5.5-9.2 1.9-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 13.2 5.8 23.5 9.2 31.5 11.8 13.3 4.2 25.4 3.6 34.9 2.2 10.6-1.5 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.checkout-button:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.add-button:disabled {
  background: #9aa3b2;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.menu-backdrop,
.filter-backdrop,
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(18, 28, 52, .38);
}

.menu-drawer,
.filter-drawer,
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100vh;
  background: #fff;
  box-shadow: -20px 0 44px rgba(18, 28, 52, .16);
  transform: translateX(102%);
  transition: transform .22s ease;
}

.menu-drawer.open,
.filter-drawer.open,
.cart-drawer.open {
  transform: translateX(0);
}

.menu-header,
.filter-header,
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.menu-header strong {
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.filter-header p,
.cart-header p {
  margin: 0;
  color: var(--blue-700);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filter-header h2,
.cart-header h2 {
  margin: .1rem 0 0;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.filter-content {
  display: grid;
  gap: .9rem;
  flex: 1;
  overflow: auto;
  padding: 1rem;
}

.filter-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: 1rem;
  background: #f8fafd;
  border-top: 1px solid var(--line);
}

.mobile-links {
  display: grid;
  gap: .55rem;
  padding: 1rem;
}

.mobile-links a {
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue-900);
  padding: .85rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-links a.active {
  background: var(--blue-900);
  color: #fff;
}

.page-content {
  padding: 2rem 0 4rem;
}

.info-panel {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 253, 246, .92));
  border: 1px solid rgba(201, 162, 62, .24);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.page-kicker {
  margin: 0 0 .45rem;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.info-panel h2 {
  margin: 0 0 1rem;
  color: var(--blue-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: .96;
}

.info-panel p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1rem;
}

.info-panel p:last-child {
  margin-bottom: 0;
}

.icon-button {
  width: 40px;
  height: 40px;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-900);
  font-size: 1.2rem;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: .35rem 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item h3 {
  margin: 0;
  color: var(--blue-900);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .95rem;
}

.cart-item p {
  margin: .25rem 0;
  color: var(--muted);
  font-size: .82rem;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.qty-button {
  width: 32px;
  height: 32px;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-900);
  font-weight: 900;
}

.remove-button {
  background: transparent;
  border: 0;
  color: var(--danger);
  padding: .25rem 0;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-footer {
  padding: 1rem;
  background: #f8fafd;
  border-top: 1px solid var(--line);
}

.cart-footer textarea {
  min-height: 82px;
  margin-top: .35rem;
  resize: vertical;
}

.totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--blue-900);
  font-size: 1.1rem;
}

.totals strong {
  font-size: 1.25rem;
}

.whatsapp-support-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  padding: 10px;
}

.whatsapp-support-button:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-support-button svg {
  width: 100%;
  height: 100%;
}
.add-animation-container {
  position: fixed;
  top: 75px; /* Below the menu button */
  right: 15px;
  pointer-events: none;
  z-index: 100;
}

.add-popup {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-900);
  padding: 6px 12px 6px 6px;
  border-radius: 99px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(20, 40, 95, 0.3);
  animation: slideInDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
             fadeOut 0.3s ease 1s forwards;
}

.add-popup img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-200);
}

.add-popup span {
  font-weight: 900;
  font-size: 0.9rem;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 900px) {
  .desktop-tabs {
    display: none;
    margin-right: 0;
  }

  .menu-button {
    display: inline-flex;
  }

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

.app-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 162, 62, .15);
  color: var(--blue-900);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--blue-900);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.6;
}

@media (max-width: 620px) {
  .app-footer {
    padding: 2rem 0 6rem; /* Extra padding for floating buttons */
  }

  .shell {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    min-height: 72px;
    padding: 0.5rem 0;
  }

  .brand {
    display: contents;
  }

  .brand h1 {
    grid-column: 1;
    font-size: 1.15rem;
    line-height: 1.1;
    white-space: normal;
    text-align: left;
    margin: 0;
  }

  .brand h1 span {
    display: block;
  }

  .brand h1 span + span {
    margin-left: 0;
  }

  .brand img {
    position: static;
    grid-column: 2;
    transform: none;
    width: 44px;
    height: 44px;
    margin: 0 auto;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    position: static;
    transform: none;
  }

  .cart-button {
    display: none;
  }

  .menu-button {
    position: static;
    display: inline-flex !important;
    width: 40px;
    height: 40px;
    background: var(--blue-900);
    border: none;
    box-shadow: 0 4px 10px rgba(20, 40, 95, 0.2);
  }

  .menu-button span {
    background: #fff;
    width: 20px;
    height: 2px;
  }

  .mobile-floating-cart {
    position: fixed;
    top: 85px;
    right: 15px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--white);
    color: var(--blue-900);
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(20, 40, 95, 0.18);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: popIn 0.4s ease;
  }

  .mobile-floating-cart:active {
    transform: scale(0.9);
  }

  .mobile-floating-cart strong {
    position: absolute;
    top: -2px;
    right: -2px;
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    background: var(--gold-500);
    color: #fff;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 900;
  }

  @keyframes popIn {
    from { opacity: 0; transform: scale(0.5) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  .menu-button span {
    background: #fff;
    width: 24px;
    height: 3px;
  }

  .cart-button span {
    display: none;
  }

  .home-search {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: .75rem;
  }

  .quick-search {
    flex: 1 1 0;
    width: auto;
  }

  .filter-button {
    width: 100%;
    padding: .58rem .85rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .catalog-head {
    align-items: start;
    flex-direction: column;
    gap: .35rem;
  }

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

  .product-card {
    display: flex;
    min-height: 0;
  }

  .product-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-media img {
    padding: .55rem;
  }

  .product-body {
    padding: .8rem;
  }

  .product-description {
    font-size: .8rem;
  }

  .product-tags {
    display: flex;
  }

  .status {
    margin-bottom: .7rem;
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
    gap: .45rem;
  }

  .add-button {
    width: 100%;
    min-height: 36px;
    padding: .5rem .65rem;
  }
}
