:root {
  --cream: #fbf5ea;
  --warm-beige: #e8d5b8;
  --white: #fffaf2;
  --pure-white: #ffffff;
  --deep-brown: #24130f;
  --chocolate: #3a2119;
  --soft-gold: #c8a45e;
  --greek-blue: #6f9cb8;
  --greek-blue-soft: #dcebf1;
  --muted-text: rgba(36, 19, 15, 0.68);
  --border: rgba(202, 164, 94, 0.28);
  --shadow: 0 24px 70px rgba(47, 28, 18, 0.16);
  --shadow-soft: 0 16px 44px rgba(47, 28, 18, 0.09);
  --radius-lg: 18px;
  --radius-md: 14px;
  --heading-font: Georgia, "Times New Roman", serif;
  --body-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--deep-brown);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

button {
  font: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a,
.mobile-cart-bar {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, textarea):focus-visible {
  outline: 3px solid rgba(111, 156, 184, 0.45);
  outline-offset: 3px;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(251, 245, 234, 0.9));
  border-bottom: 1px solid rgba(202, 164, 94, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(47, 28, 18, 0.045);
}

.header-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--chocolate);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(202, 164, 94, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.58);
  font-size: 15px;
  color: rgba(36, 19, 15, 0.74);
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--chocolate);
  background: rgba(111, 156, 184, 0.11);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-button,
.primary-button,
.secondary-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease;
}

.order-button {
  padding: 0 22px;
  color: var(--cream);
  background: var(--chocolate);
  box-shadow: 0 14px 30px rgba(59, 33, 25, 0.16);
}

.primary-button {
  padding: 0 26px;
  color: var(--deep-brown);
  background: var(--soft-gold);
  border-color: rgba(36, 19, 15, 0.08);
  box-shadow: 0 16px 34px rgba(202, 164, 94, 0.25);
}

.secondary-button {
  padding: 0 22px;
  color: var(--chocolate);
  background: var(--white);
  border-color: var(--border);
}

.cart-button {
  position: relative;
  gap: 8px;
  padding: 0 16px;
  color: var(--chocolate);
  background:
    linear-gradient(135deg, rgba(111, 156, 184, 0.08), rgba(255, 255, 255, 0.95)),
    var(--pure-white);
  border-color: rgba(202, 164, 94, 0.28);
  box-shadow: 0 10px 28px rgba(47, 28, 18, 0.055);
}

.cart-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--chocolate);
  border-top: 0;
  border-radius: 3px 3px 6px 6px;
}

.cart-icon::before {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  margin: -6px auto 0;
  border: 2px solid var(--chocolate);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--pure-white);
  background: var(--chocolate);
  box-shadow: 0 0 0 2px var(--white);
  font-size: 12px;
  font-weight: 800;
}

.order-button:hover,
.primary-button:hover,
.secondary-button:hover,
.cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(59, 33, 25, 0.18);
}

.cart-button.cart-pulse {
  color: var(--cream);
  background: var(--chocolate);
  border-color: var(--soft-gold);
  animation: cartPulse 0.65s ease;
}

.cart-button.cart-pulse .cart-icon,
.cart-button.cart-pulse .cart-icon::before {
  border-color: var(--cream);
}

.cart-button.cart-pulse .cart-count {
  color: var(--deep-brown);
  background: var(--soft-gold);
}

.order-button:active,
.primary-button:active,
.secondary-button:active,
.cart-button:active,
.cart-quantity button:active,
.remove-button:active,
.close-button:active {
  transform: translateY(1px) scale(0.98);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  box-shadow: none;
}

button:disabled:hover {
  transform: none;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(59, 33, 25, 0.18);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 94px;
  background:
    url("fret.png") top center / 210px auto repeat-x,
    linear-gradient(135deg, transparent 0 46%, rgba(111, 156, 184, 0.02) 46% 54%, transparent 54% 100%),
    linear-gradient(90deg, rgba(111, 156, 184, 0.022) 1px, transparent 1px),
    linear-gradient(rgba(111, 156, 184, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(111, 156, 184, 0.09), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(202, 164, 94, 0.13), transparent 26%),
    linear-gradient(135deg, #fbf5ea 0%, #efe0c9 54%, #fbf7ee 100%);
  background-blend-mode: soft-light, normal, normal, normal, normal, normal;
  background-size: 210px auto, 96px 96px, 34px 34px, 34px 34px, auto, auto, auto;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22px;
  background:
    linear-gradient(90deg, rgba(111, 156, 184, 0.34), transparent 18%, transparent 82%, rgba(111, 156, 184, 0.34)),
    url("fret.png") top center / 190px auto repeat-x;
  opacity: 0.16;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(111, 156, 184, 0.36);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 42px;
  padding: 22px;
  border: 1px solid rgba(202, 164, 94, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(110deg, rgba(255, 250, 242, 0.82), rgba(255, 250, 242, 0.36) 48%, rgba(255, 250, 242, 0.12)),
    rgba(251, 245, 234, 0.2);
  box-shadow: 0 30px 90px rgba(47, 28, 18, 0.08);
}

.hero-text {
  position: relative;
  max-width: 690px;
  padding: 28px 18px 30px 0;
  border-left: 2px solid rgba(111, 156, 184, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.4), rgba(255, 250, 242, 0.12) 72%, transparent);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-text::before {
  content: "";
  position: absolute;
  inset: -18px -28px -18px -26px;
  z-index: -1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.5), transparent 44%),
    linear-gradient(90deg, rgba(255, 250, 242, 0.32), rgba(255, 250, 242, 0.08));
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--greek-blue);
}

.eyebrow {
  margin-bottom: 18px;
  color: #4e7890;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.flag-accent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(111, 156, 184, 0.24);
  border-radius: 999px;
  color: var(--chocolate);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(47, 28, 18, 0.06);
  font-size: 11px;
  text-transform: none;
  white-space: nowrap;
}

.flag-accent img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.flag-accent .image-placeholder {
  position: static;
  inset: auto;
  display: none;
  padding: 0;
  background: transparent;
  font-size: 14px;
}

.flag-accent.image-missing .image-placeholder {
  display: inline-flex;
}

.hero-text h1,
.section-heading h2,
.info-section h2,
.contacts-section h2,
.product-modal h2,
.cart-header h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--deep-brown);
}

.hero-text h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 0.98;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.54);
}

.hero-text h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 570px;
  margin-top: 24px;
  font-size: 20px;
  color: rgba(36, 19, 15, 0.78);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-cta {
  min-width: 190px;
}

.work-hours {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(111, 156, 184, 0.32);
  border-radius: 999px;
  color: rgba(36, 19, 15, 0.7);
  background: rgba(255, 250, 242, 0.72);
  font-size: 15px;
}

.hero-logo-card {
  position: relative;
  isolation: isolate;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(202, 164, 94, 0.42);
  border-radius: 22px;
  background:
    url("laurel-wreath.png") center / 74% auto no-repeat,
    linear-gradient(90deg, rgba(111, 156, 184, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(111, 156, 184, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(58, 33, 25, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(251, 245, 234, 0.94)),
    var(--white);
  background-size: 74% auto, 32px 32px, 32px 32px, auto, auto, auto;
  background-blend-mode: soft-light, normal, normal, normal, normal, normal;
  box-shadow: 0 30px 80px rgba(47, 28, 18, 0.17);
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(111, 156, 184, 0.28);
  border-radius: 16px;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.34);
  z-index: 1;
  pointer-events: none;
}

.hero-logo-card::after {
  content: "";
  position: absolute;
  top: -18px;
  right: 34px;
  width: 190px;
  height: 100px;
  background:
    radial-gradient(circle at 18% 92%, rgba(58, 33, 25, 0.2) 0 16px, transparent 17px),
    radial-gradient(circle at 58% 100%, rgba(58, 33, 25, 0.16) 0 24px, transparent 25px),
    linear-gradient(180deg, rgba(58, 33, 25, 0.2), rgba(58, 33, 25, 0.08));
  border-radius: 0 0 42px 42px;
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 0;
}

.hero-logo-card .image-placeholder {
  z-index: 2;
  pointer-events: none;
}

.hero-logo-image {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(47, 28, 18, 0.12));
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(111, 156, 184, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(111, 156, 184, 0.12) 1px, transparent 1px),
    linear-gradient(145deg, #fffaf2, #ead8bc);
  background-size: 34px 34px, 34px 34px, auto;
}

.image-placeholder span {
  max-width: 260px;
  font-family: var(--heading-font);
  color: var(--chocolate);
  font-size: 32px;
  line-height: 1.15;
}

.image-frame.image-missing img,
.product-image-frame.image-missing img,
.modal-image-frame.image-missing img,
.cart-item-image.image-missing img {
  display: none;
}

.image-frame.image-missing .image-placeholder,
.product-image-frame.image-missing .image-placeholder,
.modal-image-frame.image-missing .image-placeholder,
.cart-item-image.image-missing .image-placeholder {
  display: flex;
}

.chocolate-section {
  padding: 92px 0 106px;
  background:
    url("fret.png") top center / 180px auto repeat-x,
    linear-gradient(90deg, rgba(111, 156, 184, 0.024) 1px, transparent 1px),
    linear-gradient(rgba(111, 156, 184, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(248, 239, 225, 0.72)),
    var(--white);
  background-size: 180px auto, 42px 42px, 42px 42px, auto, auto;
  background-blend-mode: soft-light, normal, normal, normal, normal;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2,
.gift-section h2,
.info-section h2,
.contacts-section h2 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.section-heading p:last-child,
.gift-heading p,
.info-section p,
.contacts-section p {
  margin-top: 14px;
  color: var(--muted-text);
  font-size: 18px;
}

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.catalog-group {
  position: relative;
}

.catalog-group + .catalog-group {
  padding-top: 14px;
}

.catalog-group-header {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(202, 164, 94, 0.24);
}

.catalog-group-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(240px, 48%);
  height: 3px;
  background:
    linear-gradient(90deg, var(--greek-blue) 0 42%, transparent 42% 48%, var(--soft-gold) 48% 100%);
  border-radius: 999px;
  opacity: 0.72;
}

.catalog-group-header h3 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.08;
  color: var(--chocolate);
}

.catalog-group-header p {
  max-width: 460px;
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.65;
}

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

.catalog-group-pizza .catalog-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-group-chommelier .catalog-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.98)),
    var(--pure-white);
  border: 1px solid rgba(202, 164, 94, 0.24);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(47, 28, 18, 0.075);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 156, 184, 0.42);
  box-shadow: 0 26px 66px rgba(47, 28, 18, 0.13);
}

.product-image-frame {
  position: relative;
  width: 100%;
  min-height: 268px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.86), transparent 48%),
    linear-gradient(145deg, #f8efe1, #ffffff);
  cursor: pointer;
}

.product-image-frame img {
  width: 100%;
  height: 268px;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.35s ease, opacity 0.22s ease;
}

.product-card:hover .product-image-frame img {
  transform: scale(1.04);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 20px 20px 22px;
}

.product-card h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1.16;
  color: var(--chocolate);
}

.ingredients {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.55;
}

.price-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: auto;
  color: var(--chocolate);
  font-size: 14px;
  font-weight: 800;
}

.price-note .price-current {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(202, 164, 94, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
}

.price-note small {
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(202, 164, 94, 0.5);
  border-radius: 999px;
  color: var(--cream);
  background: var(--chocolate);
  box-shadow: 0 12px 28px rgba(47, 28, 18, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.price-sale {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 700;
}

.price-sale del {
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(58, 33, 25, 0.46);
}

.sale-inline {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--chocolate);
  font-size: 11px;
  font-weight: 900;
}

.price-current {
  color: var(--chocolate);
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.card-actions-single {
  grid-template-columns: 1fr;
}

.card-actions .primary-button:only-child,
.card-actions .secondary-button:only-child {
  width: 100%;
}

.card-actions .secondary-button,
.card-actions .primary-button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 13px;
}

.craft-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  background:
    url("fret.png") top center / 240px auto repeat-x,
    url("fret.png") bottom center / 210px auto repeat-x,
    radial-gradient(circle at 13% 18%, rgba(111, 156, 184, 0.12), transparent 29%),
    radial-gradient(circle at 88% 82%, rgba(202, 164, 94, 0.14), transparent 28%),
    linear-gradient(145deg, #fbf5ea, #fffaf2 52%, #f2e2c9);
  background-blend-mode: soft-light, soft-light, normal, normal, normal;
}

.craft-section::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(111, 156, 184, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.craft-section::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 72px;
  width: 170px;
  height: 170px;
  background: url("pillar.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.craft-intro {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 44px;
}

.craft-intro h2 {
  margin-top: 10px;
  font-family: var(--heading-font);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.craft-intro p:last-child {
  margin-top: 16px;
  color: var(--muted-text);
  font-size: 17px;
  line-height: 1.65;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 26px 24px;
  border: 1px solid rgba(202, 164, 94, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.86)),
    var(--white);
  box-shadow: 0 18px 48px rgba(47, 28, 18, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--greek-blue), var(--soft-gold));
  opacity: 0.62;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(111, 156, 184, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 156, 184, 0.07), transparent 68%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 156, 184, 0.34);
  box-shadow: 0 22px 58px rgba(47, 28, 18, 0.12);
}

.feature-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--greek-blue);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(202, 164, 94, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.9), transparent 42%),
    rgba(111, 156, 184, 0.11);
  box-shadow: 0 10px 26px rgba(47, 28, 18, 0.08);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(202, 164, 94, 0.32);
  color: #4f7f9a;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.95), transparent 42%),
    rgba(111, 156, 184, 0.14);
  box-shadow: 0 8px 18px rgba(47, 28, 18, 0.07);
}

.mini-icon svg,
.feature-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-icon svg {
  width: 18px;
  height: 18px;
}

.feature-card h3 {
  margin-top: 20px;
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 1.15;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.gift-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 104px;
  background:
    url("fret.png") top center / 190px auto repeat-x,
    radial-gradient(circle at 82% 18%, rgba(111, 156, 184, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf2, #f6ead7);
  background-blend-mode: soft-light, normal, normal;
}

.gift-section::before {
  content: "";
  position: absolute;
  left: -42px;
  bottom: 34px;
  width: 170px;
  height: 170px;
  background: url("laurel-wreath.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.gift-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 42px;
}

.gift-heading h2 {
  margin-top: 10px;
  font-family: var(--heading-font);
  color: var(--deep-brown);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.gift-heading small {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 13px;
  border: 1px solid rgba(111, 156, 184, 0.22);
  border-radius: 999px;
  color: rgba(36, 19, 15, 0.72);
  background: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.gift-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gift-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid rgba(202, 164, 94, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.94)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.gift-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(111, 156, 184, 0.12);
  border-radius: 9px;
  pointer-events: none;
  z-index: 1;
}

.gift-image {
  position: relative;
  height: clamp(300px, 27vw, 380px);
  overflow: hidden;
  background: linear-gradient(145deg, #f8efe1, #ffffff);
}

.gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transition: transform 0.35s ease;
}

.gift-card:hover .gift-image img {
  transform: scale(1.035);
}

.gift-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  flex: 1;
  padding: 22px;
}

.gift-card-copy h3 {
  font-family: var(--heading-font);
  color: var(--chocolate);
  font-size: 24px;
  line-height: 1.12;
}

.gift-card-copy p {
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.55;
}

.info-section,
.contacts-section {
  padding: 96px 0;
  background:
    url("fret.png") top center / 180px auto repeat-x,
    linear-gradient(90deg, rgba(111, 156, 184, 0.04) 1px, transparent 1px),
    linear-gradient(#fbf5ea, #f7eddc);
  background-size: 180px auto, 44px 44px, auto;
  background-blend-mode: soft-light, normal, normal;
}

.contacts-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(111, 156, 184, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf2, #f8efdf);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.delivery-copy {
  max-width: 620px;
}

.info-panel {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(111, 156, 184, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(47, 28, 18, 0.1);
}

.delivery-order-button {
  margin-top: 24px;
}

.info-panel p + p {
  margin-top: 0;
}

.info-panel p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(202, 164, 94, 0.18);
  border-radius: 12px;
  background: rgba(255, 250, 242, 0.62);
}

.info-panel p span:last-child {
  display: grid;
  gap: 2px;
}

.info-panel small {
  color: var(--muted-text);
  font-size: 14px;
}

.delivery-map-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(202, 164, 94, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 26%, rgba(111, 156, 184, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(248, 239, 225, 0.9));
  box-shadow: var(--shadow-soft);
}

.delivery-map-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(111, 156, 184, 0.16);
  border-radius: 14px;
  pointer-events: none;
}

.delivery-map-card img {
  width: min(100%, 360px);
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(47, 28, 18, 0.12));
}

.map-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(111, 156, 184, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(47, 28, 18, 0.1);
}

.map-caption strong {
  line-height: 1.25;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--greek-blue);
  box-shadow: 0 8px 22px rgba(47, 28, 18, 0.22);
}

.pin-one {
  top: 32%;
  left: 48%;
}

.pin-two {
  top: 48%;
  left: 60%;
}

.pin-three {
  top: 54%;
  left: 38%;
}

.contacts-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(111, 156, 184, 0.3);
  border-radius: 999px;
  background: var(--pure-white);
  color: var(--chocolate);
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(47, 28, 18, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 164, 94, 0.42);
  box-shadow: 0 18px 44px rgba(47, 28, 18, 0.12);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  color: rgba(255, 250, 242, 0.78);
  background:
    url("fret.png") top center / 210px auto repeat-x,
    linear-gradient(135deg, #24130f, #341d17);
  background-blend-mode: soft-light, normal;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 24px;
  width: 76px;
  height: 76px;
  background: url("pillar.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.6fr) minmax(150px, 0.6fr);
  gap: 56px;
  align-items: start;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-contact a {
  color: var(--white);
}

.footer-legal-note {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  color: rgba(255, 250, 242, 0.52);
  font-size: 12px;
  line-height: 1.6;
}

.modal-overlay,
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  background: rgba(20, 10, 7, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal-overlay[hidden],
.cart-overlay[hidden] {
  display: none;
}

.modal-overlay.is-open,
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  position: relative;
  width: min(1080px, calc(100% - 32px));
  max-height: 90vh;
  display: grid;
  grid-template-columns: minmax(390px, 1.08fr) minmax(0, 0.92fr);
  gap: 34px;
  margin: auto;
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(202, 164, 94, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(111, 156, 184, 0.07), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.modal-overlay.is-open .product-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.close-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 33, 25, 0.14);
  border-radius: 50%;
  color: var(--chocolate);
  background: var(--pure-white);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.close-button:hover {
  background: var(--greek-blue-soft);
  box-shadow: 0 10px 24px rgba(47, 28, 18, 0.12);
}

.product-modal > .close-button {
  position: sticky;
  top: 0;
  grid-column: 1 / -1;
  justify-self: end;
  margin-bottom: -52px;
  z-index: 2;
}

.modal-gallery {
  display: grid;
  gap: 12px;
}

.modal-image-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(202, 164, 94, 0.22);
  border-radius: 12px;
  background: linear-gradient(145deg, #f8efe1, #ffffff);
  box-shadow: 0 18px 48px rgba(47, 28, 18, 0.08);
}

.modal-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  padding: 16px;
}

.modal-info {
  align-self: center;
  padding: 26px 8px 14px 0;
}

.product-modal h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.modal-ingredients {
  margin-top: 14px;
  color: var(--muted-text);
  font-size: 16px;
}

.weight-choice {
  margin-top: 22px;
}

.weight-choice > p,
.quantity-choice > p {
  margin-bottom: 12px;
  color: var(--chocolate);
  font-size: 15px;
  font-weight: 800;
}

.weight-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.weight-options button,
.format-options button,
.quick-presets button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  min-width: 82px;
  min-height: 54px;
  padding: 7px 18px;
  border: 1px solid rgba(111, 156, 184, 0.3);
  border-radius: 999px;
  color: var(--chocolate);
  background: var(--pure-white);
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.weight-options button:hover,
.weight-options button.is-selected,
.format-options button:hover,
.format-options button.is-selected,
.quick-presets button:hover,
.quick-presets button.is-selected {
  border-color: var(--chocolate);
  color: var(--cream);
  background: var(--chocolate);
  box-shadow: 0 12px 28px rgba(47, 28, 18, 0.2);
}

.weight-options button:hover small,
.weight-options button.is-selected small,
.format-options button:hover small,
.format-options button.is-selected small,
.quick-presets button:hover small,
.quick-presets button.is-selected small {
  color: rgba(255, 250, 242, 0.78);
}

.weight-options button:active,
.format-options button:active,
.quick-presets button:active {
  transform: translateY(1px) scale(0.98);
}

.weight-options span {
  font-weight: 800;
}

.weight-options small {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.format-selector,
.weight-builder {
  display: grid;
  gap: 12px;
}

.weight-builder {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(202, 164, 94, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(111, 156, 184, 0.07), transparent 55%),
    rgba(255, 250, 242, 0.72);
}

.selector-label {
  color: var(--chocolate);
  font-size: 14px;
  font-weight: 900;
}

.format-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.format-options button {
  min-width: 108px;
}

.weight-stepper {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(202, 164, 94, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.82)),
    var(--pure-white);
  box-shadow: 0 12px 28px rgba(47, 28, 18, 0.08);
}

.weight-stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--chocolate);
  background: var(--greek-blue-soft);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.weight-stepper button:hover:not(:disabled) {
  color: var(--cream);
  background: var(--chocolate);
  box-shadow: 0 10px 24px rgba(47, 28, 18, 0.16);
}

.weight-stepper button:active:not(:disabled) {
  transform: translateY(1px) scale(0.96);
}

.weight-stepper button:disabled {
  color: rgba(36, 19, 15, 0.32);
  background: rgba(36, 19, 15, 0.06);
  cursor: not-allowed;
}

.weight-stepper strong {
  min-width: 58px;
  color: var(--deep-brown);
  text-align: center;
  font-size: 18px;
}

.quick-presets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-presets span {
  flex-basis: 100%;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-presets button {
  min-width: auto;
  min-height: 38px;
  padding: 6px 13px;
  font-size: 13px;
}

.weight-help {
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.45;
}

.quantity-choice {
  margin-top: 22px;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(202, 164, 94, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.82)),
    var(--pure-white);
  box-shadow: 0 12px 28px rgba(47, 28, 18, 0.08);
}

.quantity-stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--chocolate);
  background: var(--greek-blue-soft);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.quantity-stepper button:hover:not(:disabled) {
  color: var(--cream);
  background: var(--chocolate);
  box-shadow: 0 10px 24px rgba(47, 28, 18, 0.16);
}

.quantity-stepper button:active:not(:disabled) {
  transform: translateY(1px) scale(0.96);
}

.quantity-stepper button:disabled {
  color: rgba(36, 19, 15, 0.32);
  background: rgba(36, 19, 15, 0.06);
  cursor: not-allowed;
}

.quantity-stepper strong {
  min-width: 34px;
  color: var(--deep-brown);
  text-align: center;
  font-size: 18px;
}

.modal-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 22px 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(202, 164, 94, 0.34);
  border-radius: 12px;
  color: var(--deep-brown);
  background:
    linear-gradient(135deg, rgba(202, 164, 94, 0.18), rgba(255, 255, 255, 0.86)),
    var(--pure-white);
  font-size: 20px;
  font-weight: 800;
}

.modal-price .price-sale {
  width: 100%;
  font-size: 13px;
}

.modal-price .price-label {
  color: var(--muted-text);
  font-size: 15px;
  font-weight: 800;
}

.modal-price small {
  width: 100%;
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 800;
}

#modalAddButton {
  width: min(100%, 280px);
}

.cart-quantity button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: var(--chocolate);
  background: var(--greek-blue-soft);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.cart-quantity button:hover {
  color: var(--white);
  background: var(--greek-blue);
  box-shadow: 0 8px 20px rgba(111, 156, 184, 0.24);
}

.cart-quantity button:disabled {
  color: rgba(36, 19, 15, 0.32);
  background: rgba(36, 19, 15, 0.06);
  cursor: not-allowed;
  box-shadow: none;
}

.cart-overlay {
  justify-content: flex-end;
}

.cart-drawer {
  width: min(500px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(202, 164, 94, 0.22);
  background:
    linear-gradient(180deg, #fffaf2 0%, #fbf5ea 58%, #fffaf2 100%);
  box-shadow: -24px 0 70px rgba(20, 10, 7, 0.24);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.cart-overlay.is-open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(202, 164, 94, 0.24);
  background:
    linear-gradient(135deg, rgba(111, 156, 184, 0.07), transparent 48%),
    #fffaf2;
  backdrop-filter: blur(14px);
}

.cart-header h2 {
  font-size: 32px;
  line-height: 1;
}

.cart-scroll {
  flex: 1;
  overflow: auto;
  min-height: 0;
  padding: 18px 22px 20px;
  -webkit-overflow-scrolling: touch;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-empty {
  padding: 36px 0;
  color: var(--muted-text);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(202, 164, 94, 0.2);
  border-radius: 14px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(47, 28, 18, 0.06);
}

.cart-item-image {
  position: relative;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid rgba(111, 156, 184, 0.12);
  border-radius: 10px;
  background: var(--pure-white);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-item-image .image-placeholder {
  padding: 8px;
}

.cart-item-image .image-placeholder span {
  max-width: 64px;
  font-size: 11px;
}

.cart-item h3 {
  margin-bottom: 4px;
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.16;
}

.cart-item p {
  color: var(--muted-text);
  font-size: 13px;
}

.cart-item-content {
  min-width: 0;
}

.cart-item-meta {
  margin-top: 4px;
}

.cart-item-price {
  display: grid;
  gap: 3px;
  margin-top: 4px;
  color: var(--chocolate) !important;
  font-weight: 800;
}

.cart-item-price .price-sale {
  font-size: 11px;
}

.line-total {
  margin-top: 8px;
  color: var(--chocolate);
  font-weight: 800;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

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

.remove-button {
  border: 0;
  color: var(--greek-blue);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.remove-button:hover {
  color: var(--chocolate);
  opacity: 0.82;
}

.cart-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 16px 22px 20px;
  border-top: 1px solid rgba(202, 164, 94, 0.25);
  background:
    linear-gradient(180deg, #fffaf2, #f9efdf),
    #fffaf2;
  backdrop-filter: blur(14px);
  box-shadow: 0 -16px 40px rgba(47, 28, 18, 0.08);
}

.cart-footer p {
  margin-bottom: 0;
  color: var(--muted-text);
}

.cart-total {
  margin-bottom: 0;
  padding: 14px 16px;
  border: 1px solid rgba(202, 164, 94, 0.34);
  border-radius: 14px;
  color: var(--deep-brown) !important;
  background:
    linear-gradient(135deg, rgba(202, 164, 94, 0.16), rgba(255, 255, 255, 0.86)),
    var(--pure-white);
  font-size: 20px;
  font-weight: 800;
}

.order-textarea {
  width: 100%;
  border: 1px solid rgba(111, 156, 184, 0.26);
  border-radius: 8px;
  color: var(--deep-brown);
  background: var(--pure-white);
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.45;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.order-textarea:focus {
  border-color: var(--greek-blue);
  box-shadow: 0 0 0 3px rgba(111, 156, 184, 0.18);
  outline: none;
}

.order-text-label {
  display: block;
  margin-bottom: 8px;
}

.order-preview {
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(111, 156, 184, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(111, 156, 184, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.68);
}

.order-preview h3 {
  color: var(--chocolate);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-preview p {
  margin-top: 7px;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.45;
}

.order-textarea {
  min-height: 112px;
  resize: vertical;
  padding: 10px 11px;
  font-size: 13px;
  line-height: 1.5;
}

.order-textarea.order-textarea-hidden {
  position: fixed;
  left: -9999px;
  bottom: 0;
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  resize: none;
  pointer-events: none;
}

.copy-order-button {
  width: 100%;
  margin-top: 0;
}

.cart-order-button {
  margin-top: 0;
  width: 100%;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  max-width: min(380px, calc(100% - 44px));
  padding: 14px 18px;
  border: 1px solid rgba(111, 156, 184, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: var(--chocolate);
  box-shadow: 0 18px 44px rgba(20, 10, 7, 0.24);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cart-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 6px;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 4px 5px 4px 10px;
  border: 1px solid rgba(202, 164, 94, 0.38);
  border-radius: 12px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(111, 156, 184, 0.18), transparent 42%),
    var(--chocolate);
  box-shadow: 0 18px 48px rgba(36, 19, 15, 0.28);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.mobile-cart-bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.mobile-cart-bar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 27px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--deep-brown);
  background: var(--soft-gold);
  font-size: 11px;
}

.mobile-cart-bar:active {
  transform: translateY(1px) scale(0.99);
}

.mobile-cart-bar.cart-pulse {
  animation: cartPulse 0.65s ease;
}

.mobile-cart-bar[hidden] {
  display: none !important;
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.045);
    box-shadow: 0 22px 56px rgba(36, 19, 15, 0.26);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .catalog-products,
  .catalog-group-chommelier .catalog-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-group-pizza .catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-content {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    font-size: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(47, 28, 18, 0.16);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 6px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(111, 156, 184, 0.12);
  }

  .header-actions {
    margin-left: auto;
  }

  .order-button {
    min-height: 42px;
    padding: 0 16px;
  }

  .cart-button {
    min-height: 42px;
  }

  .cart-label {
    display: none;
  }

  .hero-section {
    padding: 48px 0 64px;
  }

  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-text {
    max-width: none;
    padding-right: 0;
  }

  .eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    line-height: 1.35;
  }

  .flag-accent {
    margin-left: 0;
    white-space: normal;
  }

  .delivery-copy {
    max-width: none;
  }

  .delivery-map-card {
    min-height: 320px;
  }

  .hero-text h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.4vw, 42px);
    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-logo-card {
    min-height: 300px;
    padding: 24px;
  }

  .hero-logo-image {
    width: min(100%, 330px);
    max-height: 285px;
  }

  .catalog-products,
  .catalog-group-pizza .catalog-products,
  .catalog-group-chommelier .catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-group-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .catalog-group-header p {
    max-width: none;
    font-size: 14px;
  }

  .product-modal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal-info {
    padding: 0 0 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gift-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .brand-logo {
    max-width: 104px;
    font-size: 16px;
    line-height: 1.1;
    white-space: normal;
  }

  .header-actions {
    position: absolute;
    top: 50%;
    right: 58px;
    transform: translateY(-50%);
    gap: 6px;
    margin-left: 0;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    order: initial;
  }

  .main-nav {
    grid-column: 1 / -1;
  }

  .order-button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .header-actions .order-button {
    display: none;
  }

  .cart-button {
    min-height: 44px;
    padding: 0 8px;
    gap: 6px;
  }

  .cart-count {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
  }

  .mobile-cart-bar:not([hidden]) {
    display: flex;
  }

  body.has-mobile-cart main {
    padding-bottom: 76px;
  }

  .chocolate-section,
  .craft-section,
  .gift-section,
  .info-section,
  .contacts-section {
    background-image:
      linear-gradient(90deg, rgba(111, 156, 184, 0.012) 1px, transparent 1px),
      linear-gradient(rgba(111, 156, 184, 0.01) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(248, 239, 225, 0.8));
    background-size: 44px 44px, 44px 44px, auto;
    background-blend-mode: normal, normal, normal;
  }

  .hero-section {
    background:
      linear-gradient(135deg, transparent 0 46%, rgba(111, 156, 184, 0.014) 46% 54%, transparent 54% 100%),
      linear-gradient(90deg, rgba(111, 156, 184, 0.016) 1px, transparent 1px),
      linear-gradient(rgba(111, 156, 184, 0.014) 1px, transparent 1px),
      radial-gradient(circle at 12% 18%, rgba(111, 156, 184, 0.07), transparent 30%),
      radial-gradient(circle at 82% 28%, rgba(202, 164, 94, 0.1), transparent 26%),
      linear-gradient(135deg, #fbf5ea 0%, #efe0c9 54%, #fbf7ee 100%);
    background-size: 96px 96px, 34px 34px, 34px 34px, auto, auto, auto;
  }

  .hero-section::before {
    height: 14px;
    opacity: 0.08;
  }

  .hero-logo-card {
    min-height: 255px;
    padding: 16px;
    border-radius: 12px;
  }

  .hero-logo-card::before {
    inset: 10px;
  }

  .hero-logo-card::after {
    width: 120px;
    height: 60px;
    right: 18px;
  }

  .hero-logo-image {
    width: min(100%, 300px);
    max-height: 235px;
  }

  .chocolate-section,
  .craft-section,
  .gift-section,
  .info-section,
  .contacts-section {
    padding: 78px 0 72px;
  }

  .section-heading,
  .craft-intro,
  .gift-heading,
  .delivery-copy,
  .contacts-content {
    position: relative;
    z-index: 1;
  }

  .section-heading,
  .gift-heading,
  .craft-intro {
    padding-top: 8px;
  }

  .section-kicker,
  .eyebrow {
    line-height: 1.35;
  }

  .gift-section {
    padding-bottom: 132px;
  }

  body.has-mobile-cart .gift-section {
    padding-bottom: 144px;
  }

  body.has-mobile-cart .gift-image {
    height: min(250px, 64vw);
    aspect-ratio: auto;
  }

  .craft-section::before {
    inset: 12px;
  }

  .craft-intro {
    margin-bottom: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    min-height: 0;
    padding: 22px;
  }

  .feature-card h3 {
    margin-top: 16px;
    font-size: 22px;
  }

  .catalog-group-main .catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .catalog-group-pizza .catalog-products,
  .catalog-group-chommelier .catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .catalog-group-main .product-card {
    border-radius: 14px;
  }

  .catalog-group-main .product-image-frame,
  .catalog-group-main .product-image-frame img {
    min-height: 150px;
    height: 150px;
  }

  .catalog-group-main .product-image-frame img {
    padding: 8px;
  }

  .catalog-group-main .product-card-body {
    gap: 8px;
    padding: 12px;
  }

  .catalog-group-main .product-card h3 {
    font-size: 17px;
    line-height: 1.14;
  }

  .catalog-group-main .ingredients {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalog-group-main .price-note {
    font-size: 12px;
  }

  .catalog-group-main .price-note .price-current {
    min-height: 24px;
    padding: 0 8px;
  }

  .catalog-group-main .price-note small {
    font-size: 11px;
  }

  .catalog-group-pizza .product-image-frame,
  .catalog-group-pizza .product-image-frame img,
  .catalog-group-chommelier .product-image-frame,
  .catalog-group-chommelier .product-image-frame img {
    min-height: 150px;
    height: 150px;
  }

  .catalog-group-pizza .product-image-frame img,
  .catalog-group-chommelier .product-image-frame img {
    padding: 8px;
  }

  .product-card-body {
    gap: 9px;
    padding: 12px;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .ingredients {
    font-size: 12px;
  }

  .price-note {
    font-size: 12px;
  }

  .card-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .card-actions .secondary-button,
  .card-actions .primary-button {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }

  .product-modal {
    width: calc(100% - 20px);
    max-height: 94vh;
    gap: 7px;
    padding: 9px 9px 128px;
    border-radius: 16px;
  }

  .hero-text {
    padding: 14px 10px 14px 0;
    border-radius: 14px;
  }

  .hero-text::before {
    inset: -12px -8px -12px -14px;
  }

  .hero-text h1 {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.05;
  }

  .eyebrow .flag-accent {
    flex-basis: 100%;
    width: fit-content;
    max-width: 100%;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    max-width: min(100%, 330px);
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .section-heading p {
    max-width: min(100%, 330px);
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .work-hours {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .gift-heading {
    margin-bottom: 26px;
  }

  .gift-heading small {
    align-items: flex-start;
    border-radius: 12px;
    line-height: 1.4;
  }

  .gift-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gift-image {
    height: auto;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.9), transparent 42%),
      linear-gradient(145deg, rgba(248, 239, 225, 0.98), rgba(255, 255, 255, 0.94)),
      var(--cream);
  }

  .gift-image img {
    display: block;
    object-fit: contain;
    object-position: center;
    padding: 0;
  }

  .gift-card-copy {
    padding: 18px;
  }

  .gift-card-copy h3 {
    font-size: 22px;
  }

  .modal-info {
    padding: 0;
  }

  .product-modal .section-kicker {
    font-size: 11px;
  }

  .product-modal h2 {
    margin-top: 3px;
    font-size: 24px;
    line-height: 1.05;
  }

  .modal-ingredients {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .weight-choice {
    margin-top: 10px;
  }

  .weight-choice > p {
    display: none;
  }

  .quantity-choice > p {
    margin-bottom: 8px;
  }

  .weight-options {
    grid-template-columns: 1fr 1fr;
  }

  .format-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .format-options button {
    min-width: 0;
  }

  .format-selector:has(.format-options button:only-child) {
    display: none;
  }

  .weight-builder {
    gap: 7px;
    margin-top: 0;
    padding: 9px;
  }

  .weight-stepper {
    width: 100%;
    justify-content: space-between;
    padding: 5px;
  }

  .weight-stepper button,
  .quantity-stepper button {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .weight-stepper strong,
  .quantity-stepper strong {
    font-size: 18px;
  }

  .product-modal button,
  .product-modal select,
  .product-modal input {
    font-size: 16px;
  }

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

  .quick-presets span {
    grid-column: 1 / -1;
  }

  .quick-presets button {
    width: 100%;
    min-height: 44px;
    padding: 8px 4px;
    font-size: 16px;
  }

  .weight-help {
    display: none;
  }

  .modal-image-frame,
  .modal-image-frame img {
    min-height: 190px;
    height: 190px;
  }

  .modal-image-frame {
    border-radius: 14px;
  }

  .modal-image-frame img {
    padding: 7px;
  }

  .modal-price {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 66px;
    z-index: 70;
    min-height: 48px;
    margin: 0;
    padding: 9px 13px;
    font-size: 17px;
    box-shadow: 0 14px 34px rgba(47, 28, 18, 0.16);
  }

  #modalAddButton {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 14px;
    z-index: 70;
    width: auto;
    min-height: 48px;
    font-size: 16px;
    box-shadow: 0 16px 34px rgba(202, 164, 94, 0.28);
  }

  .cart-items {
    padding: 0;
  }

  .cart-scroll {
    flex: 0 1 auto;
    max-height: calc(100dvh - 245px);
    padding: 12px 14px 10px;
  }

  .cart-footer {
    position: static;
    margin-top: 0;
    padding: 10px 14px 14px;
    box-shadow: 0 -8px 22px rgba(47, 28, 18, 0.05);
  }

  .cart-item {
    grid-template-columns: 58px 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .cart-item-image {
    width: 58px;
    height: 58px;
    border-radius: 7px;
  }

  .cart-item h3 {
    font-size: 16px;
  }

  .cart-item p {
    font-size: 12px;
  }

  .cart-line-actions {
    gap: 8px;
    margin-top: 8px;
  }

  .cart-quantity button {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .cart-drawer button {
    font-size: 16px;
  }

  .remove-button {
    font-size: 16px;
  }

  .cart-total {
    font-size: 18px;
    padding: 10px 13px;
  }

  .order-preview {
    margin-top: 12px;
    padding: 10px;
  }

  .order-preview p {
    font-size: 12px;
  }

  .order-textarea:not(.order-textarea-hidden) {
    min-height: 96px;
    max-height: 140px;
  }

  .contact-links {
    flex-direction: column;
  }

  .cart-drawer {
    width: 100%;
    border-left: 0;
    height: 100dvh;
  }

  .delivery-map-card {
    min-height: 270px;
    padding: 22px;
  }

  .delivery-map-card img {
    max-height: 210px;
  }

  .map-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .info-panel {
    gap: 10px;
    padding: 14px;
  }

  .info-panel p {
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .info-panel .mini-icon {
    width: 38px;
    height: 38px;
  }

  .toast {
    top: 76px;
    right: 12px;
    bottom: auto;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 14px;
    text-align: center;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(20, 10, 7, 0.18);
  }

  .cart-overlay.is-open ~ .toast {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (max-width: 340px) {
  .catalog-products,
  .catalog-group-main .catalog-products,
  .catalog-group-pizza .catalog-products,
  .catalog-group-chommelier .catalog-products {
    grid-template-columns: 1fr;
  }

  .gift-gallery {
    grid-template-columns: 1fr;
  }

  .gift-image {
    height: auto;
    aspect-ratio: 3 / 4;
  }

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

  .product-image-frame,
  .product-image-frame img {
    min-height: 170px;
    height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
