:root {
  color-scheme: light;
  --ink: #243024;
  --muted: #667162;
  --line: #dfe7d7;
  --paper: #fffdf8;
  --leaf: #246b45;
  --leaf-soft: #e8f4dd;
  --tomato: #dc3f34;
  --orange: #f59a23;
  --sun: #ffd15c;
  --berry: #9f2440;
  --shadow: 0 18px 48px rgba(40, 55, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-status {
  padding: 8px clamp(18px, 4vw, 54px);
  color: white;
  background: var(--leaf);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(36, 48, 36, 0.1);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 209, 92, 0.62);
  border-radius: 50%;
  color: white;
  background:
    linear-gradient(145deg, #44bd75, #1f6f43);
  box-shadow: 0 12px 26px rgba(31, 143, 81, 0.26);
  font-size: 0.86rem;
  font-weight: 900;
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 9px;
  width: 14px;
  height: 8px;
  border-radius: 14px 2px 14px 2px;
  background: #ffd15c;
  transform: rotate(-28deg);
}

.brand-mark span {
  position: relative;
  z-index: 1;
}

.brand small,
.eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 20px;
  color: #42513e;
  font-weight: 700;
}

.catalog-shortcut {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--leaf);
  background: var(--leaf-soft);
  font-weight: 900;
}

.cart-button,
.primary-action,
.secondary-action,
.filter-pills button,
.signup-form button,
.admin-form button,
.checkout-button,
.icon-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: white;
  background: var(--ink);
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 54px) 28px;
  background:
    linear-gradient(120deg, rgba(232, 244, 221, 0.88), rgba(255, 253, 248, 0.6) 52%, rgba(255, 209, 92, 0.18)),
    radial-gradient(circle at 78% 40%, rgba(220, 63, 52, 0.12), transparent 34%);
}

.hero-copy {
  max-width: 690px;
}

.brand-seal {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 12px;
  margin-bottom: 22px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 209, 92, 0.36);
  border-radius: 999px;
  color: #ecf5e6;
  background: rgba(255, 209, 92, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  width: fit-content;
}

.brand-seal span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #102216;
  background: #ffd15c;
  font-weight: 950;
}

.brand-seal strong {
  font-size: 0.92rem;
  line-height: 1;
}

.brand-seal small {
  color: rgba(236, 245, 230, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.03;
}

.hero-copy p:not(.eyebrow),
.checkout-band p {
  max-width: 630px;
  color: #4f5d4b;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 107, 69, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--leaf);
  font-weight: 900;
}

.contact-chip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-trust-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(85, 201, 132, 0.26);
  border-radius: 999px;
  color: rgba(236, 245, 230, 0.78);
  background: rgba(85, 201, 132, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.primary-action,
.secondary-action {
  display: inline-grid;
  place-items: center;
  min-width: 154px;
  padding: 0 18px;
}

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

.secondary-action {
  color: var(--leaf);
  background: white;
  border: 1px solid var(--line);
}

.fruit-display {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 92, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(90deg, rgba(116, 80, 42, 0.1) 0 16px, rgba(255, 255, 255, 0.18) 16px 32px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-photo {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.fruit-display.has-cover {
  background: #eef5e7;
}

.fruit-display.has-cover .hero-photo {
  display: block;
}

.fruit-display.hero-art-only .hero-photo {
  display: none;
}

.fruit-display:not(.has-cover) .hero-carousel-controls {
  display: none;
}

.fruit-display.has-cover .fruit-basket,
.fruit-display.has-cover::after {
  display: none;
}

.hero-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: white;
  background: rgba(20, 28, 18, 0.7);
}

.hero-photo-caption.visible {
  display: grid;
}

.hero-photo-caption span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  font-size: 1.35rem;
}

.hero-photo-caption small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.hero-carousel-controls {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-carousel-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #102216;
  background: var(--sun);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  font: inherit;
  font-size: 1.8rem;
  font-weight: 900;
  cursor: pointer;
}

.fruit-display.has-cover.hero-art-only .fruit-basket {
  display: grid;
}

.fruit-display.has-cover.hero-art-only::after {
  display: block;
}

.fruit-display::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 13%;
  height: 26px;
  border-radius: 50%;
  background: rgba(36, 48, 36, 0.13);
  filter: blur(8px);
}

.fruit-basket {
  position: absolute;
  display: grid;
  place-items: center;
  border: 10px solid #9b6639;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(90deg, #c99052, #a46b3f);
  box-shadow: 0 18px 28px rgba(64, 44, 24, 0.18);
}

.basket-one {
  right: 10%;
  bottom: 19%;
  width: min(390px, 78%);
  height: 170px;
}

.basket-two {
  left: 8%;
  bottom: 14%;
  width: min(300px, 62%);
  height: 142px;
}

.fruit {
  position: absolute;
  display: block;
  border-radius: 50%;
  box-shadow: inset -12px -16px 0 rgba(0, 0, 0, 0.08), 0 10px 16px rgba(36, 48, 36, 0.12);
}

.apple {
  width: 104px;
  height: 102px;
  left: 13%;
  top: -48px;
  background: var(--tomato);
}

.apple.green {
  left: 57%;
  top: -52px;
  background: #8ec64a;
}

.orange {
  width: 116px;
  height: 116px;
  left: 39%;
  top: -66px;
  background: var(--orange);
}

.banana {
  width: 142px;
  height: 58px;
  right: 4%;
  top: -34px;
  border-radius: 70% 10% 70% 10%;
  background: #ffd94a;
  transform: rotate(-12deg);
}

.grape {
  width: 86px;
  height: 86px;
  right: 24%;
  top: 32px;
  background: #633387;
}

.strawberry {
  width: 86px;
  height: 100px;
  left: 18%;
  top: -50px;
  border-radius: 48% 48% 60% 60%;
  background: var(--berry);
}

.pear {
  width: 92px;
  height: 120px;
  left: 36%;
  top: -70px;
  border-radius: 52% 52% 48% 48%;
  background: #b7c84b;
}

.store-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.store-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: white;
}

.store-strip strong {
  display: block;
  font-size: 1.35rem;
}

.store-strip span {
  color: var(--muted);
  font-weight: 700;
}

.featured-rotation {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 4vw, 54px);
  background: #fffdf8;
}

.featured-copy {
  max-width: 520px;
}

.featured-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.featured-stage {
  min-height: 330px;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 0.56fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.featured-media {
  display: grid;
  min-height: 330px;
  overflow: hidden;
  background: var(--leaf-soft);
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-fruit-art {
  display: grid;
  place-items: center;
  min-height: 330px;
}

.featured-info {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 38px);
}

.featured-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.featured-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.featured-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.featured-price span {
  color: var(--muted);
  font-weight: 900;
  text-decoration: line-through;
}

.featured-price strong {
  color: var(--leaf);
  font-size: 1.55rem;
}

.featured-price small,
.featured-next {
  color: var(--muted);
  font-weight: 900;
}

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

.featured-actions button,
.featured-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.featured-actions button {
  color: white;
  background: var(--leaf);
}

.featured-actions a {
  color: var(--leaf);
  background: var(--leaf-soft);
}

.featured-controls {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(20, 37, 20, 0.12);
}

.featured-controls button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  font: inherit;
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
}

.featured-controls span {
  min-width: 42px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.sales-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 18px clamp(18px, 4vw, 54px) 0;
  overflow: hidden;
  border: 1px solid rgba(36, 107, 69, 0.18);
  border-radius: 14px;
  background: rgba(36, 107, 69, 0.18);
}

.sales-ribbon div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: #f8fbf1;
}

.sales-ribbon strong {
  color: var(--leaf);
  font-size: 0.95rem;
}

.sales-ribbon span {
  color: #586653;
  font-size: 0.9rem;
  line-height: 1.35;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 70px clamp(18px, 4vw, 54px) 22px;
}

.section-head.compact {
  padding: 0 0 22px;
}

.catalog-tools {
  display: grid;
  gap: 12px;
  min-width: min(320px, 100%);
}

.catalog-tools input,
.catalog-tools select {
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.catalog-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pills button {
  padding: 0 14px;
  color: var(--leaf);
  background: var(--leaf-soft);
}

.filter-pills button.active {
  color: white;
  background: var(--leaf);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 10px 22px rgba(22, 36, 20, 0.12);
  font-size: 1.8rem;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 54px) 70px;
}

.empty-catalog {
  grid-column: 1 / -1;
  width: min(620px, calc(100vw - 36px));
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  font-weight: 800;
}

.product-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 20px rgba(40, 55, 35, 0.06);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 145px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fbf1, #fff5dc);
}

.product-photo {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.product-art span {
  width: 92px;
  height: 92px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.product-meta h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.product-meta small {
  color: var(--muted);
  font-weight: 800;
}

.product-description {
  min-height: 42px;
  margin: 0;
  color: #586653;
  font-size: 0.9rem;
  line-height: 1.45;
}

.stock-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-card button {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, #1f8f51, #2fbf70);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(31, 143, 81, 0.2);
  font-weight: 900;
}

.product-card button:disabled {
  cursor: not-allowed;
  background: #9ba596;
}

.quantity-field {
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.quantity-field input {
  min-height: 40px;
}

.price {
  color: var(--leaf);
  font-size: 1.25rem;
  font-weight: 950;
  text-align: right;
}

.old-price {
  display: block;
  color: #9ba596;
  font-size: 0.78rem;
  text-decoration: line-through;
}

.tag {
  display: inline-block;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 6px;
  color: #693613;
  background: #fff0c7;
  font-size: 0.76rem;
  font-weight: 900;
}

.checkout-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
  padding: 64px clamp(18px, 4vw, 54px);
  background: #f4f8ee;
  border-block: 1px solid var(--line);
}

.raffle-copy {
  display: grid;
  gap: 14px;
}

.raffle-prize {
  display: grid;
  gap: 6px;
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid rgba(220, 63, 52, 0.24);
  border-radius: 8px;
  background: #fff7df;
  box-shadow: 0 10px 22px rgba(40, 55, 35, 0.08);
}

.raffle-photo {
  display: none;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.raffle-photo.visible {
  display: block;
}

.raffle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.raffle-prize span {
  color: #7b4c10;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.raffle-prize strong {
  color: var(--berry);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.raffle-prize small {
  color: #586653;
  font-weight: 800;
}

.raffle-winner:not(:empty) {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #102216;
  background: #ffd15c;
}

.community-section,
.trust-section {
  padding: 60px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

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

.community-results {
  margin-top: 22px;
}

.review-form,
.forum-form,
.community-card,
.trust-grid article {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 20px rgba(40, 55, 35, 0.05);
}

.review-form p,
.forum-form p {
  margin: 0;
  font-weight: 900;
}

.review-form button,
.forum-form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--leaf);
  cursor: pointer;
  font-weight: 900;
}

.community-card p,
.trust-grid p {
  margin: 0;
  color: #586653;
  line-height: 1.45;
}

.community-card small {
  color: var(--muted);
  font-weight: 700;
}

.stars {
  color: #d98b16;
  font-size: 1.1rem;
  font-weight: 900;
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 22px;
  align-items: center;
  padding: 52px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: white;
}

.contact-band p:not(.eyebrow) {
  max-width: 620px;
  color: #4f5d4b;
  line-height: 1.6;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf1;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-card strong {
  color: var(--leaf);
  font-size: 1.35rem;
}

.signup-form,
.admin-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #485642;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd9c7;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
}

textarea {
  min-height: 86px;
  padding-top: 10px;
  resize: vertical;
}

.signup-form button,
.admin-form button,
.checkout-button {
  color: white;
  background: var(--leaf);
}

.secondary-form-button {
  color: var(--leaf) !important;
  background: var(--leaf-soft) !important;
}

.signup-form p,
.checkout-message {
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.admin-panel {
  padding: 64px clamp(18px, 4vw, 54px) 90px;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf1;
}

.admin-login strong,
.admin-login small {
  display: block;
}

.admin-login small,
.admin-login p {
  color: var(--muted);
  font-weight: 700;
}

.admin-login p {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
}

.admin-login button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  background: var(--leaf);
  cursor: pointer;
  font-weight: 900;
}

.admin-login [data-admin-logout] {
  display: none;
}

.admin-login [data-admin-logout].visible {
  display: block;
}

[data-admin-private].locked {
  display: none;
}

.internal-panel-hidden {
  display: none;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-quick-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: white;
  background: var(--leaf);
  font-weight: 900;
}

.admin-quick-actions a:nth-child(2n) {
  color: var(--leaf);
  background: var(--leaf-soft);
}

.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-card,
.dashboard-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 20px rgba(40, 55, 35, 0.06);
}

.dashboard-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-card strong {
  color: var(--leaf);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.dashboard-card small,
.dashboard-list span {
  color: var(--muted);
  font-weight: 750;
}

.dashboard-card.warning strong {
  color: var(--tomato);
}

.dashboard-panel {
  grid-column: span 2;
}

.dashboard-panel h3 {
  margin: 0;
  font-size: 1.18rem;
}

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

.dashboard-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #f7fbf1;
}

.dashboard-list strong,
.dashboard-list span {
  min-width: 0;
}

.cover-form,
.business-form,
.raffle-admin,
.admin-form {
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 20px rgba(40, 55, 35, 0.06);
}

.raffle-admin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px) auto auto auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
}

.raffle-admin > div {
  align-self: center;
}

.raffle-admin strong {
  display: block;
}

.cover-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px) minmax(220px, 320px) auto auto;
  align-items: end;
  margin-bottom: 18px;
}

.business-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.business-form > div,
.business-form label:nth-of-type(5),
.business-form label:nth-of-type(6),
.business-form button,
.business-form .admin-message {
  grid-column: 1 / -1;
}

.admin-form button {
  padding-inline: 16px;
}

.business-form button,
.raffle-admin button,
.cover-form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  background: var(--leaf);
  cursor: pointer;
  font-weight: 900;
}

.business-form small,
.raffle-admin small,
.cover-form small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.cover-upload {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px dashed #bdd0b2;
  border-radius: 8px;
  color: var(--leaf);
  background: #f5faee;
  cursor: pointer;
}

.cover-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wide-field,
.admin-fields button,
.admin-message {
  grid-column: 1 / -1;
}

.admin-message {
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.photo-uploader {
  display: grid;
  gap: 10px;
}

.photo-uploader small {
  color: var(--muted);
  font-weight: 700;
}

.photo-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  border: 2px dashed #bdd0b2;
  border-radius: 8px;
  color: var(--leaf);
  background: #f5faee;
  cursor: pointer;
}

.photo-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.photo-box img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-box.has-photo span {
  display: none;
}

.photo-box.has-photo img {
  display: block;
}

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

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

.manager-panel,
.orders-panel {
  padding: 22px clamp(18px, 4vw, 54px) 70px;
}

.manager-panel {
  padding-inline: 0;
  padding-bottom: 0;
}

.manager-list,
.client-list,
.orders-list {
  display: grid;
  gap: 12px;
}

.manager-item,
.client-card,
.order-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 20px rgba(40, 55, 35, 0.05);
}

.manager-item {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.client-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.manager-item small,
.client-card small,
.order-card small,
.contact-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.manager-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.manager-actions button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--leaf-soft);
  cursor: pointer;
  font-weight: 800;
}

.manager-actions button:last-child {
  color: white;
  background: var(--tomato);
}

.status-pill {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--leaf);
  background: var(--leaf-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

.status-pill.paused {
  color: #7b4c10;
  background: #fff0c7;
}

.order-head,
.order-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-badges span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--leaf);
  background: var(--leaf-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

.order-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #485642;
}

.order-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.status-select {
  width: auto;
  min-height: 38px;
  border-color: #bdd0b2;
  color: var(--leaf);
  background: var(--leaf-soft);
  font-weight: 900;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-whatsapp {
  display: grid;
  place-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  color: white;
  background: #1f8f51;
  font-weight: 900;
}

.order-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: white;
  background: var(--tomato);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.order-whatsapp.disabled {
  pointer-events: none;
  opacity: 0.45;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  justify-content: end;
  background: rgba(20, 28, 18, 0.32);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(430px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-head,
.cart-line,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.icon-button {
  width: 42px;
  color: white;
  background: var(--ink);
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 120px;
  max-height: 220px;
  overflow: auto;
}

.cart-line {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.cart-line small {
  color: var(--muted);
  font-weight: 700;
}

.cart-line button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--tomato);
  cursor: pointer;
}

.customer-box,
.delivery-box,
.payment-box,
.card-payment,
.coupon-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.customer-box p,
.delivery-box p,
.payment-box p,
.coupon-box p {
  margin: 0;
  font-weight: 900;
}

.coupon-box div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.coupon-box button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: white;
  background: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.coupon-box small {
  color: var(--muted);
  font-weight: 800;
}

.delivery-box label,
.payment-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.delivery-box input,
.payment-box input {
  width: auto;
  min-height: auto;
}

.address-field {
  display: none;
}

.address-field.visible {
  display: grid;
}

.card-payment {
  display: none;
}

.card-payment.visible {
  display: grid;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
}

.card-payment small {
  color: var(--muted);
  font-weight: 700;
}

.whatsapp-button {
  display: none;
  min-height: 44px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: #1f8f51;
  font-weight: 900;
}

.whatsapp-button.visible {
  display: grid;
}

.cart-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

.discount-line {
  display: none;
  justify-content: space-between;
  gap: 12px;
  color: var(--leaf);
  font-weight: 900;
}

.discount-line.visible {
  display: flex;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  display: grid;
  place-items: center;
  min-width: 118px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  color: white;
  background: #1f8f51;
  box-shadow: 0 12px 28px rgba(31, 143, 81, 0.28);
  font-weight: 900;
}

.virtual-assistant {
  position: fixed;
  left: 18px;
  bottom: 92px;
  z-index: 30;
  display: grid;
  justify-items: start;
  gap: 10px;
}

.assistant-toggle {
  display: inline-flex;
  position: relative;
  z-index: 31;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px 0 16px;
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 48, 36, 0.22);
  cursor: pointer;
  font-weight: 900;
}

.assistant-toggle strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
}

.assistant-panel {
  display: none;
  position: relative;
  z-index: 32;
  width: min(340px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.assistant-panel.open {
  display: grid;
}

.assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: white;
  background: var(--leaf);
}

.assistant-head .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.assistant-head button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  color: var(--leaf);
  background: white;
  cursor: pointer;
  font-weight: 900;
}

.assistant-chat {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: #4f5d4b;
  line-height: 1.45;
}

.assistant-chat p {
  margin: 0;
}

.assistant-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 14px;
}

.assistant-actions button,
.assistant-whatsapp {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.assistant-actions button {
  color: var(--leaf);
  background: var(--leaf-soft);
}

.assistant-whatsapp {
  display: grid;
  place-items: center;
  margin: 0 14px 14px;
  color: white;
  background: #1f8f51;
}

.empty-cart {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .checkout-band,
  .contact-band,
  .community-grid,
  .community-results,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .fruit-display {
    min-height: 360px;
  }

  .store-strip,
  .sales-ribbon,
  .product-grid,
  .admin-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-panel {
    grid-column: 1 / -1;
  }

  .admin-form,
  .business-form,
  .raffle-admin,
  .cover-form,
  .admin-login,
  .admin-fields {
    grid-template-columns: 1fr 1fr;
  }

  .photo-uploader {
    grid-column: 1 / -1;
  }

  .manager-item,
  .client-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand small,
  .cart-button span {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-seal {
    margin-bottom: 16px;
  }

  .brand-seal span {
    width: 42px;
    height: 42px;
  }

  .catalog-shortcut {
    min-width: 92px;
    padding-inline: 10px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-tools {
    width: 100%;
  }

  .catalog-actions {
    justify-items: stretch;
  }

  .carousel-controls {
    justify-content: flex-end;
  }

  .fruit-display {
    min-height: 300px;
  }

  .store-strip,
  .sales-ribbon,
  .product-grid,
  .admin-dashboard,
  .admin-form,
  .cover-form,
  .raffle-admin,
  .admin-login,
  .admin-fields,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-list article {
    align-items: start;
    flex-direction: column;
  }

  .store-strip div {
    padding-block: 18px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 82px;
    min-width: 104px;
  }

  .virtual-assistant {
    left: 14px;
    bottom: 146px;
  }

  .assistant-toggle span {
    display: none;
  }
}

/* Tema oficial actual: portada oscura con fruta destacada */
:root {
  color-scheme: dark;
  --ink: #ecf5e6;
  --muted: #aebca8;
  --line: rgba(223, 231, 215, 0.14);
  --paper: #071b0d;
  --leaf: #55c984;
  --leaf-soft: rgba(85, 201, 132, 0.14);
  --tomato: #e75a4f;
  --orange: #f59a23;
  --sun: #ffd15c;
  --berry: #ff6f91;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--ink);
  background: #071b0d;
}

.site-status {
  display: none;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 27, 12, 0.94);
}

.brand-mark {
  color: #ecf5e6;
  background: linear-gradient(145deg, #44bd75, #1f6f43);
}

.brand small,
.eyebrow,
nav {
  color: rgba(236, 245, 230, 0.64);
}

nav a {
  color: rgba(236, 245, 230, 0.68);
}

.catalog-shortcut {
  color: #55c984;
  background: rgba(85, 201, 132, 0.16);
}

.cart-button {
  color: #ecf5e6;
  background: rgba(236, 245, 230, 0.12);
}

.cart-button strong {
  color: #102216;
  background: var(--sun);
}

.hero {
  min-height: calc(100vh - 74px);
  padding-top: clamp(46px, 7vw, 88px);
  background:
    radial-gradient(circle at 22% 30%, rgba(85, 201, 132, 0.14), transparent 32%),
    linear-gradient(90deg, #071b0d 0%, #0a2111 48%, #071b0d 100%);
}

h1,
h2 {
  color: #ecf5e6;
}

.hero-copy p:not(.eyebrow),
.checkout-band p,
.contact-band p:not(.eyebrow) {
  color: rgba(236, 245, 230, 0.76);
}

.primary-action {
  color: #ecf5e6;
  background: #55c984;
}

.contact-chip {
  border-color: rgba(85, 201, 132, 0.36);
  color: #55c984;
  background: rgba(7, 27, 13, 0.72);
}

.contact-chip span {
  color: rgba(236, 245, 230, 0.6);
}

.fruit-display {
  min-height: 560px;
  border-color: rgba(255, 209, 92, 0.16);
  border-radius: 18px;
  background: #0b2612;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-photo {
  min-height: 560px;
}

.fruit-display.has-cover {
  background: #0b2612;
}

.hero-photo-caption {
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(7, 18, 8, 0.68);
}

.store-strip {
  background: rgba(255, 255, 255, 0.08);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.store-strip div {
  background: rgba(12, 38, 18, 0.86);
}

.featured-rotation {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 209, 92, 0.1), transparent 28%),
    linear-gradient(180deg, #071b0d, #0a2111);
}

.featured-copy p:not(.eyebrow),
.featured-info p,
.featured-price small,
.featured-next {
  color: rgba(236, 245, 230, 0.68);
}

.featured-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 39, 19, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.featured-media {
  background: rgba(255, 255, 255, 0.06);
}

.featured-info h3 {
  color: #ecf5e6;
}

.featured-actions a {
  color: #55c984;
  background: rgba(85, 201, 132, 0.14);
}

.featured-controls {
  background: rgba(7, 18, 8, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.featured-controls span {
  color: #ecf5e6;
}

.store-strip span,
.sales-ribbon span,
.product-meta small,
.stock-line,
.quantity-field,
.empty-cart,
.empty-catalog {
  color: rgba(236, 245, 230, 0.62);
}

.sales-ribbon {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.sales-ribbon div,
.product-card,
.review-form,
.forum-form,
.community-card,
.trust-grid article,
.contact-card,
.signup-form,
.admin-login,
.dashboard-card,
.dashboard-panel,
.cover-form,
.business-form,
.raffle-admin,
.admin-form,
.manager-item,
.client-card,
.order-card,
.cart-panel,
.customer-box,
.delivery-box,
.payment-box,
.coupon-box,
.card-payment,
.empty-catalog {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 39, 19, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.section-head,
.community-section,
.trust-section,
.contact-band,
.admin-panel,
.orders-panel {
  background: #071b0d;
}

.checkout-band {
  border-color: rgba(255, 255, 255, 0.1);
  color: #ecf5e6;
  background: #071b0d;
}

.checkout-band .eyebrow {
  color: #55c984;
}

.checkout-band h2,
.checkout-band label {
  color: #ecf5e6;
}

.checkout-band .raffle-copy > p:not(.eyebrow) {
  color: rgba(236, 245, 230, 0.78);
}

.checkout-band .raffle-prize {
  border-color: rgba(255, 209, 92, 0.28);
  background: rgba(255, 209, 92, 0.1);
}

.checkout-band .raffle-prize span,
.checkout-band .raffle-prize strong {
  color: #ffd15c;
}

.checkout-band .raffle-prize small {
  color: rgba(236, 245, 230, 0.74);
}

.product-art {
  background: rgba(255, 255, 255, 0.06);
}

.product-description,
.community-card p,
.trust-grid p,
.raffle-prize small,
.card-payment small,
.signup-form p,
.checkout-message {
  color: rgba(236, 245, 230, 0.72);
}

.product-card button,
.coupon-box button,
.checkout-button,
.signup-form button,
.admin-form button,
.cover-form button,
.raffle-admin button,
.admin-login button,
.review-form button,
.forum-form button {
  color: #ecf5e6;
  background: linear-gradient(135deg, #1f8f51, #2fbf70);
}

input,
textarea,
select {
  border-color: rgba(255, 255, 255, 0.14);
  color: #ecf5e6;
  background: rgba(255, 255, 255, 0.08);
}

input::placeholder,
textarea::placeholder {
  color: rgba(236, 245, 230, 0.48);
}

.secondary-form-button,
.admin-quick-actions a:nth-child(2n),
.filter-pills button {
  color: #55c984 !important;
  background: rgba(85, 201, 132, 0.14) !important;
}

.filter-pills button.active,
.admin-quick-actions a {
  color: #ecf5e6 !important;
  background: #246b45 !important;
}

.carousel-controls button {
  color: #102216;
  background: #ffd15c;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.cart-drawer {
  background: rgba(3, 14, 7, 0.72);
}

.cart-panel {
  color: #f5fff0;
  background: #062413;
  box-shadow: -18px 0 44px rgba(0, 0, 0, 0.42);
}

.cart-head h2,
.cart-head .eyebrow,
.cart-panel label,
.cart-panel p,
.cart-total,
.cart-total strong {
  color: #f5fff0;
}

.cart-head .icon-button {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  background: #ef5b52;
  box-shadow: 0 12px 26px rgba(239, 91, 82, 0.38);
  font-size: 1.2rem;
}

.cart-line {
  border: 2px solid rgba(85, 201, 132, 0.38);
  color: #102216;
  background: #f8fff3;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.cart-line strong,
.cart-line span,
.cart-line small {
  color: #102216;
}

.cart-line button {
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: #ef5b52;
  box-shadow: 0 8px 18px rgba(239, 91, 82, 0.34);
  font-size: 1rem;
  font-weight: 900;
}

.checkout-message {
  color: #ffd15c;
  font-weight: 900;
}

.payment-return-notice {
  position: fixed;
  top: 96px;
  right: 24px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  width: min(420px, calc(100vw - 32px));
  padding: 18px 18px;
  border: 2px solid rgba(255, 209, 92, 0.7);
  border-radius: 8px;
  color: #102216;
  background: #fff8dc;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.payment-return-notice strong {
  color: #102216;
  font-size: 1.08rem;
}

.payment-return-notice span {
  grid-column: 1 / -1;
  color: #314235;
  font-weight: 800;
  line-height: 1.35;
}

.payment-return-notice button {
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: #1f6f43;
  font-weight: 900;
}

.payment-return-notice.success {
  border-color: rgba(72, 198, 124, 0.95);
  background: #f0fff4;
}

.payment-return-notice.warning {
  border-color: rgba(255, 209, 92, 0.95);
  background: #fff8dc;
}

.assistant-toggle {
  min-height: 58px;
  padding-inline: 18px 14px;
  border: 2px solid rgba(255, 209, 92, 0.82);
  color: #102216;
  background: #fff8dc;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
}

.assistant-toggle strong {
  color: #102216;
  background: #ffd15c;
}

.raffle-prize {
  border-color: rgba(255, 209, 92, 0.24);
  background: rgba(255, 209, 92, 0.1);
}

.raffle-prize strong {
  color: #ffd15c;
}

@media (max-width: 980px) {
  .payment-return-notice {
    top: 82px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .hero {
    min-height: auto;
  }

  .fruit-display,
  .hero-photo {
    min-height: 380px;
  }

  .featured-rotation,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-stage,
  .featured-card,
  .featured-media,
  .featured-fruit-art {
    min-height: 0;
  }

  .featured-media,
  .featured-fruit-art {
    min-height: 230px;
  }

  .featured-controls {
    left: 14px;
    right: auto;
  }
}
