﻿:root {
  --raspberry: #c43a6b;
  --rose: #e36a95;
  --blush: #f3a9c2;
  --petal: #f9d5e2;
  --milk: #fff7fb;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--raspberry);
  background: radial-gradient(circle at top, var(--petal), var(--milk) 60%),
    linear-gradient(135deg, var(--white), var(--petal));
  min-height: 100vh;
  cursor: url("../images/cursor-pointer.svg") 2 2, auto;
}

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

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 24px;
  padding: 20px 22px;
  box-shadow: 0 20px 50px rgba(196, 58, 107, 0.12);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.header-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--petal);
  background: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--raspberry);
  border-radius: 999px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-mark {
  width: clamp(150px, 22vw, 220px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--petal);
  padding: 6px 10px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

.brand-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.brand-sub {
  display: block;
  font-size: 12px;
  color: #9e2f56;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--rose);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--raspberry);
  color: var(--white);
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 30px rgba(196, 58, 107, 0.25);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(196, 58, 107, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--raspberry);
  border: 2px solid var(--raspberry);
  box-shadow: none;
}

.btn-ghost {
  background: var(--white);
  color: var(--raspberry);
}

.btn-small {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-large {
  padding: 14px 26px;
  font-size: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  margin: 12px 0 16px;
}

.subtitle {
  font-size: 18px;
  color: #a33860;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--petal);
}

.hero-media {
  display: grid;
  justify-items: center;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(196, 58, 107, 0.18);
  display: grid;
  gap: 16px;
  max-width: 320px;
}

.hero-card-text p {
  margin: 0;
  font-weight: 600;
}

.section {
  padding: 72px 0;
}

.alt-section {
  background: var(--white);
  border-radius: 32px;
  padding: 72px 32px;
  box-shadow: 0 25px 60px rgba(196, 58, 107, 0.08);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

.grid {
  display: grid;
  gap: 24px;
}

.card,
.product-card,
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(196, 58, 107, 0.1);
}

.card-media,
.product-media {
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--petal), var(--rose));
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--white);
  overflow: hidden;
}

.card-media img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) {
  .card-media,
  .product-media {
    height: 200px;
  }
}

.featured-grid .card-media {
  background: var(--white);
  border: 1px solid var(--petal);
  padding: 12px;
  height: auto;
  aspect-ratio: 1 / 1;
}

.featured-grid .card-media img {
  object-fit: contain;
  object-position: center;
}

.card-body h3,
.product-body h3 {
  margin: 16px 0 10px;
}

.price {
  font-weight: 600;
  color: var(--raspberry);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badges span {
  font-size: 12px;
  background: var(--petal);
  color: #983055;
  padding: 6px 10px;
  border-radius: 999px;
}

.store-grid,
.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.about {
  display: grid;
  gap: 32px;
  align-items: center;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 38px);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.about-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--petal);
}

.about-card {
  background: var(--white);
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(196, 58, 107, 0.12);
}

.testimonial-card {
  text-align: center;
  padding: 28px 22px;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.carousel .testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .carousel .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

.stars {
  font-size: 20px;
  color: var(--rose);
  margin-bottom: 12px;
}

.contact {
  display: grid;
  place-items: center;
}

.contact-card {
  background: linear-gradient(135deg, var(--petal), var(--white));
  padding: 36px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(196, 58, 107, 0.18);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  padding: 24px 0 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .product-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 16px;
  }

  .site-header {
    position: static;
    padding: 18px;
  }

  .site-nav {
    gap: 10px;
    font-size: 13px;
  }

  .brand-mark {
    width: 140px;
  }

  .hero {
    gap: 24px;
  }

  .section {
    padding: 56px 0;
  }

  .alt-section {
    padding: 56px 20px;
  }

  .card-media,
  .product-media {
    height: 160px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }

  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}


:focus-visible {
  outline: 2px dashed var(--rose);
  outline-offset: 3px;
}

.cursor-star {
  position: fixed;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/cupcake-mini.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  animation: star-float 850ms ease-out forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes star-float {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -90%) scale(1.2);
  }
}

/* 2026 redesign: public storefront and admin panel */
:root {
  --ink: #2d2024;
  --muted: #725d64;
  --line: #ead6dc;
  --cream: #fffaf5;
  --paper: #ffffff;
  --rose-900: #8f2148;
  --rose-700: #bd3b66;
  --rose-500: #e47b9c;
  --sage: #526b5a;
  --honey: #d89937;
  --shadow-soft: 0 18px 45px rgba(86, 45, 57, 0.12);
}

body {
  font-family: "Inter", "Poppins", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(255, 246, 250, 0.92)),
    url("../images/logo/logo_2.png") center 120px / min(560px, 82vw) auto no-repeat fixed;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 26px);
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(234, 214, 220, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  flex: 0 0 auto;
  width: clamp(138px, 15vw, 176px);
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  border-radius: 20px;
  clip-path: inset(0 round 20px);
}

.header-actions {
  flex: 1;
  min-width: 0;
  width: auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 18px);
}

.site-nav {
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.site-nav a {
  border: 0;
  border-radius: 999px;
  padding: 9px 10px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #fff0f5;
  color: var(--rose-900);
}

.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-900);
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  white-space: nowrap;
}

.social-link:hover,
.social-link:focus {
  border-color: #f0b9cc;
  background: #fff0f5;
}

.btn {
  min-height: 42px;
  border-radius: 999px;
  background: var(--rose-900);
  color: #fff;
  box-shadow: 0 12px 24px rgba(143, 33, 72, 0.2);
  cursor: pointer;
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--rose-900);
}

.btn-ghost {
  background: #fff;
  color: var(--rose-900);
}

.btn-small {
  min-height: 36px;
  padding: 8px 14px;
}

.btn-large {
  min-height: 52px;
}

.hero {
  min-height: clamp(560px, 82vh, 780px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 92px) 0 54px;
  margin-top: 0;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--rose-700);
  letter-spacing: 0.12em;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.9;
  margin: 12px 0 22px;
  color: var(--rose-900);
}

.subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-showcase {
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-showcase img {
  width: min(100%, 620px);
  filter: drop-shadow(0 30px 45px rgba(143, 33, 72, 0.16));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-strip div {
  display: grid;
  gap: 5px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip strong {
  color: var(--rose-900);
  font-size: 20px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 0 34px;
}

.section-heading h2,
.about h2,
.contact h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 8px 0 14px;
  color: var(--ink);
}

.section-heading p,
.about-copy,
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.shop-section {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background: #fff;
  border-block: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.product-media {
  height: auto;
  aspect-ratio: 1.08 / 1;
  border-radius: 0;
  background: #fff7fa;
}

.product-media img {
  object-fit: cover;
}

.featured-grid .product-media img {
  object-fit: contain;
  padding: 12px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-body h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.product-body p {
  color: var(--muted);
  line-height: 1.55;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}

.price {
  color: var(--sage);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-grid div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.process-grid div + div {
  border-left: 1px solid var(--line);
}

.process-grid span {
  color: var(--honey);
  font-weight: 800;
}

.about {
  grid-template-columns: 0.85fr 1.15fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 30px 0;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 8px;
  background: var(--rose-900);
  color: #fff;
}

.contact h2,
.contact .eyebrow,
.contact p {
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.btn-instagram {
  background: #fff;
  color: var(--rose-900);
  box-shadow: none;
}

.btn-instagram:hover,
.btn-instagram:focus {
  background: #fff0f5;
  color: var(--rose-900);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand span {
  color: var(--rose-900);
  font-weight: 800;
}

.footer-brand small {
  color: var(--muted);
  line-height: 1.45;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-credit {
  margin: 0;
  text-align: right;
  color: var(--muted);
}

.footer-credit a {
  color: var(--rose-900);
  font-weight: 800;
}

.admin-body {
  min-height: 100vh;
  background: #fbf7f4;
  color: var(--ink);
  cursor: auto;
}

.login-card {
  width: min(440px, calc(100% - 32px));
  margin: 8vh auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.login-card img {
  width: 170px;
  margin-bottom: 18px;
}

.login-card h1,
.admin-topbar h1 {
  margin: 0;
  color: var(--ink);
}

.login-card p {
  color: var(--muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.admin-sidebar img {
  width: 168px;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar nav a,
.admin-logout {
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: #fff0f5;
  color: var(--rose-900);
}

.admin-logout {
  margin-top: auto;
}

.admin-main {
  padding: clamp(20px, 4vw, 46px);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.stat-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(86, 45, 57, 0.08);
}

.stat-card {
  padding: 20px;
}

.stat-card span {
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--rose-900);
  font-size: 34px;
}

.admin-card {
  margin-bottom: 22px;
  padding: 22px;
}

.admin-card h2 {
  margin: 0 0 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.check {
  display: flex;
  align-items: center;
  gap: 9px;
}

.check input {
  width: 18px;
  min-height: 18px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td small {
  display: block;
  max-width: 520px;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.row-actions form {
  margin: 0;
}

.link-danger {
  border: 0;
  background: transparent;
  color: #a82f42;
  cursor: pointer;
  font-weight: 800;
}

.notice {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #e7c36a;
  border-radius: 8px;
  background: #fff8df;
  color: #6d4c05;
}

.notice.error {
  border-color: #f1b6c3;
  background: #fff0f4;
  color: #9f2449;
}

.recipe-lines {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffafc;
}

.recipe-lines-head,
.recipe-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recipe-lines-head {
  justify-content: space-between;
}

.recipe-lines-head h3 {
  margin: 0;
}

.recipe-line select {
  flex: 1.4;
}

.recipe-line input {
  flex: 0.7;
}

.line-remove {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.admin-body {
  --admin-bg: #f6f7fb;
  --admin-panel: #ffffff;
  --admin-ink: #1f2933;
  --admin-muted: #667085;
  --admin-line: #dde3ea;
  --admin-accent: #b8325b;
  --admin-accent-2: #0f766e;
  --admin-warn: #b7791f;
  background:
    linear-gradient(180deg, #ffffff 0, var(--admin-bg) 240px),
    var(--admin-bg);
  color: var(--admin-ink);
  font-family: "Inter", sans-serif;
}

.admin-body .login-card,
.admin-body .admin-card,
.admin-body .stat-card,
.admin-body .admin-sidebar {
  border-color: var(--admin-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(31, 41, 51, 0.08);
}

.admin-body .login-card {
  border-radius: 14px;
}

.admin-body .login-card img {
  width: 150px;
}

.admin-body .admin-layout {
  grid-template-columns: 248px minmax(0, 1fr);
}

.admin-body .admin-sidebar {
  gap: 22px;
  padding: 22px 18px;
}

.admin-body .admin-sidebar img {
  width: 150px;
}

.admin-body .admin-sidebar nav a,
.admin-body .admin-logout {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
}

.admin-body .admin-sidebar nav a.active,
.admin-body .admin-sidebar nav a:hover {
  border-color: #f0c4d2;
  background: #fff5f8;
  color: var(--admin-accent);
}

.admin-body .admin-main {
  padding: clamp(18px, 3vw, 38px);
}

.admin-body .admin-topbar {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--admin-line);
}

.admin-body .admin-topbar h1 {
  font-size: clamp(24px, 3vw, 36px);
}

.admin-body .eyebrow {
  color: var(--admin-accent-2);
  letter-spacing: 0.12em;
}

.admin-body .stats-grid {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
}

.admin-body .stat-card,
.admin-body .admin-card {
  border-radius: 12px;
}

.admin-body .stat-card {
  position: relative;
  overflow: hidden;
}

.admin-body .stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--admin-accent-2);
}

.admin-body .stat-card strong {
  color: var(--admin-ink);
}

.admin-body .admin-card h2 {
  color: var(--admin-ink);
  font-size: 20px;
}

.admin-body label {
  color: var(--admin-muted);
}

.admin-body input,
.admin-body select,
.admin-body textarea {
  border-color: var(--admin-line);
  background: #fbfcfe;
}

.admin-body input:focus,
.admin-body select:focus,
.admin-body textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.14);
  border-color: var(--admin-accent-2);
  background: #fff;
}

.admin-body .btn {
  border-radius: 10px;
  background: var(--admin-accent);
  box-shadow: 0 10px 24px rgba(184, 50, 91, 0.22);
}

.admin-body .btn-outline {
  background: #fff;
  color: var(--admin-accent);
  border: 1px solid #edbfd0;
  box-shadow: none;
}

.admin-body .btn-primary {
  background: var(--admin-accent-2);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.2);
}

.admin-body .table-wrap {
  border: 1px solid var(--admin-line);
  border-radius: 12px;
  background: #fff;
}

.admin-body table {
  min-width: 720px;
}

.admin-body th {
  background: #f8fafc;
  color: #52606d;
}

.admin-body th,
.admin-body td {
  border-bottom-color: var(--admin-line);
}

.admin-body tr:last-child td {
  border-bottom: 0;
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mfa-panel,
.mfa-setup {
  display: grid;
  gap: 18px;
  align-items: center;
}

.mfa-panel {
  grid-template-columns: 280px minmax(0, 1fr);
}

.mfa-qr {
  width: 260px;
  max-width: 100%;
  border: 1px solid var(--admin-line);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.admin-body code {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: #eef6f5;
  color: #0f5f59;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cost-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
}

.cost-preview div {
  padding: 14px;
  border: 1px solid var(--admin-line);
  border-radius: 10px;
  background: #f8fafc;
}

.cost-preview span {
  display: block;
  color: var(--admin-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-preview strong {
  display: block;
  margin-top: 6px;
  color: var(--admin-ink);
  font-size: 20px;
}

.users-table {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .process-grid,
  .faq-grid,
  .stats-grid,
  .cost-preview,
  .four-cols {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    flex-wrap: wrap;
  }

  .brand {
    width: 148px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions,
  .contact,
  .product-footer,
  .recipe-lines-head,
  .recipe-line,
  .row-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .trust-strip,
  .process-grid,
  .faq-grid,
  .stats-grid,
  .two-cols,
  .three-cols,
  .cost-preview,
  .mfa-panel,
  .four-cols {
    grid-template-columns: 1fr;
  }

  .process-grid div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .admin-main,
  .admin-sidebar,
  .login-card {
    padding: 18px;
  }
}

/* Storefront polish */
body:not(.admin-body) {
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 247, 250, 0.94) 52%, rgba(255, 255, 255, 1) 100%);
}

/* Admin polish */
.admin-body {
  --admin-bg: #f4f6f8;
  --admin-surface: #ffffff;
  --admin-surface-soft: #f9fafb;
  --admin-ink: #1f2937;
  --admin-muted: #64748b;
  --admin-line: #e2e8f0;
  --admin-accent: #aa3156;
  --admin-accent-dark: #842643;
  --admin-success: #0f766e;
  --admin-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, #fff 0, #f8fafc 240px),
    var(--admin-bg);
  color: var(--admin-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-body .login-card {
  width: min(430px, calc(100% - 32px));
  margin: 8vh auto;
  padding: 34px;
  border: 1px solid var(--admin-line);
  border-radius: 12px;
  background: var(--admin-surface);
  box-shadow: var(--admin-shadow);
}

.admin-login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(32, 24, 28, 0.72) 0%, rgba(68, 39, 50, 0.48) 42%, rgba(255, 250, 247, 0.78) 100%),
    url("../images/Muffins.png") center / cover no-repeat fixed;
}

.admin-login-body .login-card {
  width: min(440px, 100%);
  margin: 0;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(14px);
}

.admin-login-body .login-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--admin-accent);
}

.admin-login-body .login-card img {
  width: 154px;
}

.admin-body .login-card img {
  width: 142px;
  margin: 0 0 26px;
}

.admin-body .login-card h1 {
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: 0;
}

.admin-body .login-card p,
.admin-body .login-card small {
  color: var(--admin-muted);
  line-height: 1.55;
}

.admin-body .admin-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  background: var(--admin-bg);
}

.admin-body .admin-sidebar {
  border-right: 1px solid var(--admin-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 8px 0 30px rgba(15, 23, 42, 0.03);
}

.admin-body .admin-sidebar img {
  width: 146px;
  margin-bottom: 8px;
}

.admin-body .admin-sidebar nav {
  gap: 8px;
}

.admin-body .admin-sidebar nav a,
.admin-body .admin-logout {
  min-height: 44px;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--admin-muted);
  font-size: 14px;
}

.admin-body .admin-sidebar nav a.active,
.admin-body .admin-sidebar nav a:hover {
  border-color: #f1c7d6;
  background: #fff5f8;
  color: var(--admin-accent-dark);
}

.admin-body .admin-main {
  padding: clamp(22px, 3vw, 42px);
}

.admin-body .admin-topbar {
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--admin-line);
}

.admin-body .admin-topbar h1 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.admin-body .eyebrow {
  color: var(--admin-success);
  letter-spacing: 0.1em;
}

.admin-body .stat-card,
.admin-body .admin-card {
  border: 1px solid var(--admin-line);
  border-radius: 10px;
  background: var(--admin-surface);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.admin-body .stat-card {
  padding: 22px;
}

.admin-body .stat-card::before {
  background: var(--admin-success);
}

.admin-body .stat-card span {
  color: var(--admin-muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-body .stat-card strong {
  color: var(--admin-ink);
  font-size: 36px;
}

.admin-body .admin-card {
  padding: 24px;
}

.admin-body .admin-card h2 {
  margin-bottom: 18px;
  font-size: 21px;
}

.admin-body label {
  gap: 8px;
  color: var(--admin-muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-body input,
.admin-body select,
.admin-body textarea {
  min-height: 44px;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background: var(--admin-surface-soft);
  color: var(--admin-ink);
}

.admin-body input:focus,
.admin-body select:focus,
.admin-body textarea:focus {
  border-color: var(--admin-success);
  outline: 3px solid rgba(15, 118, 110, 0.14);
  background: #fff;
}

.admin-body .btn {
  min-height: 42px;
  border-radius: 8px;
  background: var(--admin-accent);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(170, 49, 86, 0.2);
}

.admin-body .btn:hover,
.admin-body .btn:focus {
  background: var(--admin-accent-dark);
  transform: translateY(-1px);
}

.admin-body .btn-outline {
  background: #fff;
  color: var(--admin-accent-dark);
  border: 1px solid #e8b9c9;
  box-shadow: none;
}

.admin-body .btn-outline:hover,
.admin-body .btn-outline:focus {
  background: #fff5f8;
  color: var(--admin-accent-dark);
}

.admin-body .btn-primary {
  background: var(--admin-success);
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
}

.admin-body .table-wrap {
  border: 1px solid var(--admin-line);
  border-radius: 10px;
  background: #fff;
}

.admin-body th {
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
}

.admin-body td {
  color: var(--admin-ink);
}

.admin-body td small {
  color: var(--admin-muted);
}

.admin-body .notice {
  border-radius: 8px;
}

.admin-body .mfa-qr {
  border-radius: 10px;
}

@media (max-width: 980px) {
  .admin-body .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-body .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 760px) {
  .admin-body .admin-topbar {
    flex-direction: column;
  }

  .admin-body .admin-card,
  .admin-body .login-card,
  .admin-body .admin-main,
  .admin-body .admin-sidebar {
    padding: 18px;
  }

  .admin-login-body {
    align-items: end;
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(32, 24, 28, 0.3) 0%, rgba(32, 24, 28, 0.76) 100%),
      url("../images/Muffins.png") center / cover no-repeat;
  }

  .admin-login-body .login-card {
    justify-self: stretch;
    padding: 24px;
  }
}

.site-header {
  border-radius: 10px;
}

.site-header .btn {
  min-width: 118px;
}

.hero {
  min-height: clamp(620px, 86vh, 820px);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 9vw, 124px);
  letter-spacing: 0;
}

.subtitle {
  max-width: 560px;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}

.hero-product-stack {
  position: relative;
  width: min(100%, 610px);
  min-height: 560px;
}

.hero-product {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(80, 34, 48, 0.2);
}

.hero-product.main {
  right: 3%;
  top: 52px;
  width: 72%;
  aspect-ratio: 0.92 / 1;
}

.hero-product.side {
  width: 42%;
  aspect-ratio: 1 / 1;
}

.hero-product.side.top {
  left: 0;
  top: 0;
}

.hero-product.side.bottom {
  left: 8%;
  bottom: 36px;
}

.hero-signature {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(260px, 48%);
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(80, 34, 48, 0.14);
}

.hero-signature img {
  width: 100%;
}

.trust-strip {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(86, 45, 57, 0.16);
}

.product-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.featured-grid .product-card:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.featured-grid .product-card:first-child .product-media {
  aspect-ratio: auto;
  min-height: 360px;
}

.featured-grid .product-card:first-child .product-body {
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.featured-grid .product-card:first-child h3 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
}

.process-grid h3 {
  margin: 10px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  border-top: 1px solid var(--line);
}

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

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(86, 45, 57, 0.08);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: var(--ink);
  font-size: 24px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  background:
    linear-gradient(120deg, rgba(143, 33, 72, 0.94), rgba(82, 107, 90, 0.9)),
    url("../images/queque.png") center / cover;
}

@media (max-width: 980px) {
  .hero-showcase,
  .hero-product-stack {
    min-height: 500px;
  }

  .featured-grid .product-card:first-child {
    grid-column: auto;
    display: flex;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 36px;
  }

  .hero-showcase,
  .hero-product-stack {
    min-height: 390px;
  }

  .hero-product {
    border-width: 7px;
  }

  .hero-product.main {
    width: 72%;
    top: 44px;
  }

  .hero-product.side {
    width: 44%;
  }

  .hero-signature {
    width: 56%;
  }

  .trust-strip {
    margin-top: 0;
  }
}


