:root {
  --ink: #17120e;
  --paper: #fff8ec;
  --surface: #fffdf8;
  --muted: #725b43;
  --line: #e8d6bd;
  --red: #c91e15;
  --gold: #f6aa1c;
  --green: #128c3a;
  --charcoal: #201b17;
  --white: #fffdf8;
  --shadow: 0 18px 55px rgba(36, 20, 8, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 248, 236, 0.94);
  border-bottom: 1px solid rgba(232, 214, 189, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  width: 168px;
  height: 64px;
}

.brand img {
  width: 168px;
  height: 64px;
  object-fit: contain;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.4vw, 44px);
  color: #4e3b2b;
  font-size: 1.08rem;
  font-weight: 900;
}

.top-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

.top-nav a,
.header-order,
.secondary-action,
.primary-action,
.whatsapp-button,
.floating-order {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.header-order {
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  min-height: 620px;
  padding: clamp(46px, 7vw, 78px) clamp(16px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 16%, rgba(246, 170, 28, 0.2), transparent 34%),
    linear-gradient(135deg, #fffaf1 0%, #fff1dc 58%, #f3d3a2 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 950;
}

h1 {
  max-width: 560px;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.04;
}

h3 {
  font-size: 2rem;
}

.hero-text {
  max-width: 540px;
  margin: 18px 0 0;
  color: #473424;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  font-weight: 700;
}

.hero-logo {
  width: min(520px, 100%);
  max-height: 330px;
  object-fit: contain;
  object-position: left center;
  margin-top: 2px;
  filter: drop-shadow(0 14px 28px rgba(36, 20, 8, 0.13));
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-highlights span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(232, 214, 189, 0.95);
  border-radius: 999px;
  color: #4e3b2b;
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  padding: 0 22px;
}

.primary-action {
  background: var(--green);
  color: var(--white);
}

.secondary-action {
  border: 2px solid var(--ink);
}

.secondary-action.dark {
  margin-top: 22px;
  background: var(--charcoal);
  color: var(--white);
}

.hero-stack {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 690px;
  min-height: 430px;
  overflow: visible;
}

.stack-photo {
  position: absolute;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(232, 214, 189, 0.95);
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 24px 60px rgba(43, 24, 9, 0.18);
}

.photo-1 {
  z-index: 1;
  left: 0;
  top: 62px;
  width: 235px;
  height: 270px;
  transform: rotate(-8deg);
}

.photo-2 {
  z-index: 4;
  left: 146px;
  top: 20px;
  width: 300px;
  height: 370px;
  transform: rotate(-2deg);
}

.photo-3 {
  z-index: 5;
  right: 52px;
  top: 70px;
  width: 260px;
  height: 300px;
  transform: rotate(5deg);
}

.photo-4 {
  z-index: 3;
  right: 0;
  top: 0;
  width: 210px;
  height: 210px;
  transform: rotate(9deg);
}

.photo-5 {
  z-index: 2;
  left: 74px;
  bottom: 0;
  width: 245px;
  height: 160px;
  transform: rotate(4deg);
}

.photo-6 {
  z-index: 6;
  right: 8px;
  bottom: 14px;
  width: 245px;
  height: 150px;
  transform: rotate(-3deg);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px clamp(16px, 5vw, 72px);
  background: #fff8ec;
  border-block: 1px solid rgba(232, 214, 189, 0.75);
}

.quick-info div {
  position: relative;
  min-width: 0;
  min-height: 104px;
  padding: 22px 22px 20px 76px;
  background: var(--surface);
  border: 1px solid rgba(232, 214, 189, 0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(42, 23, 9, 0.05);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  font-size: 1.04rem;
}

.quick-info span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.quick-info .info-icon {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  background: #17120e;
  color: #f6aa1c;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.section {
  padding: clamp(42px, 8vw, 92px) clamp(16px, 5vw, 72px);
}

#menu {
  padding-bottom: clamp(24px, 4vw, 46px);
}

#packages {
  padding-top: clamp(22px, 3vw, 38px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading.stacked {
  display: grid;
  justify-content: start;
  gap: 8px;
  max-width: 780px;
}

.section-intro {
  max-width: 620px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 650;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card,
.order-panel,
.hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(36, 20, 8, 0.08);
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(36, 20, 8, 0.12);
}

.menu-card figure {
  height: 210px;
  margin: 0;
  background: #ead2a8;
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  padding: 18px;
}

.menu-card h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.menu-card p {
  min-height: 46px;
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.95rem;
}

.size-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  border-top: 1px solid #f0dfc4;
  font-weight: 760;
}

.size-row span {
  padding-top: 10px;
  color: #4e3b2b;
}

.size-row strong {
  padding-top: 10px;
  color: var(--red);
  font-size: 1.02rem;
}

.add-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 10px;
  margin-top: 14px;
}

.add-row select,
.qty-control button,
.address-label + textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  color: var(--ink);
  font: inherit;
}

.add-row select {
  min-width: 0;
  height: 42px;
  padding: 0 10px;
  font-weight: 800;
}

.qty-control {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.qty-control span {
  display: grid;
  place-items: center;
  background: var(--white);
  font-weight: 900;
}

.single-price {
  margin-top: 4px;
}

.package-add-row {
  grid-template-columns: 1fr 112px;
}

.fixed-size {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
  background:
    radial-gradient(circle at 14% 20%, rgba(246, 170, 28, 0.22), transparent 28%),
    linear-gradient(135deg, #fff8ec 0%, #f4e0bf 100%);
}

.order-copy p:not(.eyebrow),
.location-section p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.order-assist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 520px;
  margin-top: 26px;
}

.assist-card,
.contact-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(232, 214, 189, 0.95);
  border-radius: 8px;
}

.assist-card span,
.contact-card span,
.panel-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.assist-card strong,
.contact-card strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.order-panel {
  padding: clamp(16px, 3vw, 24px);
  border-color: rgba(232, 214, 189, 0.9);
  box-shadow: 0 20px 58px rgba(43, 24, 9, 0.12);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-heading strong {
  display: block;
  margin-top: 5px;
}

.panel-heading a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
}

.order-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 10px 12px;
  background: #fffaf1;
  border: 1px solid #efddc3;
  border-radius: 8px;
}

.order-item strong,
.order-item span {
  display: block;
}

.order-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.address-label {
  display: block;
  margin: 18px 0 8px;
  font-weight: 900;
}

textarea {
  width: 100%;
  min-height: 92px;
  padding: 12px;
  resize: vertical;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0;
  font-weight: 900;
}

.order-total strong {
  color: var(--red);
  font-size: 1.7rem;
}

.whatsapp-button {
  width: 100%;
  background: var(--green);
  color: var(--white);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 0%, rgba(246, 170, 28, 0.11), transparent 32%),
    var(--charcoal);
  color: var(--white);
}

.location-section .eyebrow,
.location-section p {
  color: #f0c170;
}

.location-copy h2 {
  max-width: 620px;
}

.contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.16);
}

.contact-card span {
  color: #f0c170;
}

.contact-card strong {
  color: var(--white);
}

.phone-links {
  display: grid;
  gap: 5px;
}

.phone-links a {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.map-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.map-card iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.map-action {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.floating-order {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 30;
  padding: 0 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(18, 140, 58, 0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-order.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(16px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(246, 170, 28, 0.08), transparent 45%),
    #15110f;
  color: #f8e7c8;
}

.footer-brand {
  width: 118px;
  height: 56px;
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 118px;
  height: 56px;
  object-fit: contain;
}

.footer-info {
  display: grid;
  gap: 5px;
  min-width: 0;
  flex: 1;
}

.footer-info strong {
  color: var(--white);
  font-size: 1.02rem;
}

.footer-info span {
  color: #d8ba8a;
  line-height: 1.45;
}

.footer-actions {
  display: flex;
  gap: 10px;
}

.footer-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}

.footer-actions a:last-child {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(246, 170, 28, 0.18), transparent 30%),
    linear-gradient(135deg, #fff8ec 0%, #f4dfbd 100%);
}

.admin-shell {
  min-height: 100vh;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(440px, 100%);
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-card img {
  width: 180px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 18px;
}

.login-card h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}

.login-card p {
  margin: 12px 0 24px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.login-card form,
.product-form {
  display: grid;
  gap: 14px;
}

.login-card label,
.product-form label {
  display: grid;
  gap: 7px;
  color: #4e3b2b;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.login-card input,
.product-form input,
.product-form select,
.product-form textarea {
  min-height: 46px;
  width: 100%;
  padding: 0 12px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  text-transform: none;
}

.product-form input[type="file"] {
  min-height: auto;
  padding: 12px;
  cursor: pointer;
}

.product-form textarea {
  padding-block: 12px;
}

.login-card button,
.editor-actions button,
.admin-actions button,
.admin-actions a,
.admin-section-head button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.login-card button,
.editor-actions button:first-child,
.admin-section-head button {
  background: var(--green);
  color: var(--white);
}

.form-message {
  min-height: 20px;
  color: var(--red);
  font-weight: 800;
}

.upload-field span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: none;
}

.admin-panel {
  padding: clamp(14px, 3vw, 28px);
}

.admin-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(36, 20, 8, 0.08);
}

.admin-brand img {
  width: 150px;
  height: 64px;
  object-fit: contain;
}

.admin-topbar span,
.admin-section-head span,
.save-state {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-topbar strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.admin-actions a {
  background: var(--ink);
  color: var(--white);
}

.admin-actions button {
  background: #fffaf1;
  border-color: var(--line);
  color: var(--ink);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-list-panel,
.editor-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(36, 20, 8, 0.08);
}

.product-list-panel {
  padding: 16px;
}

.editor-panel {
  padding: 20px;
}

.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.product-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.product-tabs button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.admin-product-list {
  display: grid;
  gap: 8px;
}

.product-list-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 8px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.product-list-item.is-active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px rgba(246, 170, 28, 0.28);
}

.product-list-item img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
}

.product-list-item strong,
.product-list-item small {
  display: block;
}

.product-list-item strong {
  line-height: 1.2;
}

.product-list-item small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.empty-list {
  padding: 16px;
  color: var(--muted);
  background: #fffaf1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.form-grid,
.size-input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sizes-editor {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.size-editor-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.size-editor-row strong {
  font-size: 1.08rem;
}

.size-editor-row span {
  color: var(--muted);
  font-weight: 750;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.editor-actions button:last-child {
  background: #fffaf1;
  border-color: var(--line);
  color: var(--red);
}

.editor-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

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

  .admin-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    width: 124px;
    height: 48px;
  }

  .brand img {
    width: 124px;
    height: 48px;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .order-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    background: linear-gradient(135deg, #fff8ec 0%, #fff0d7 100%);
  }

  .hero-logo {
    width: min(360px, 100%);
    max-height: 230px;
  }

  .hero-stack {
    max-width: 480px;
    min-height: 360px;
    justify-self: center;
    order: -1;
  }

  .photo-1 {
    left: 0;
    top: 58px;
    width: 168px;
    height: 210px;
  }

  .photo-2 {
    left: 96px;
    top: 28px;
    width: 225px;
    height: 280px;
  }

  .photo-3 {
    right: 24px;
    top: 78px;
    width: 170px;
    height: 210px;
  }

  .photo-4 {
    right: 0;
    top: 14px;
    width: 132px;
    height: 132px;
  }

  .photo-5 {
    left: 52px;
    bottom: 14px;
    width: 168px;
    height: 112px;
  }

  .photo-6 {
    right: 18px;
    bottom: 20px;
    width: 165px;
    height: 105px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions a,
  .admin-actions button {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .section-heading {
    display: block;
  }

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

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .menu-card figure {
    height: 170px;
  }

  .site-footer {
    display: grid;
  }

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

  .form-grid,
  .size-input-grid {
    grid-template-columns: 1fr;
  }

  .login-card,
  .editor-panel,
  .product-list-panel {
    padding: 16px;
  }
}
