:root {
  --bg: #f6f0e7;
  --surface: rgba(255, 252, 247, 0.78);
  --text: #201714;
  --muted: #67534b;
  --line: rgba(49, 28, 19, 0.12);
  --primary: #874f37;
  --primary-dark: #5f301f;
  --accent: #c28c52;
  --shadow: 0 20px 45px rgba(64, 35, 24, 0.14);
  --radius: 24px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(194, 140, 82, 0.16), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(135, 79, 55, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

.home-page {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(194, 140, 82, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(135, 79, 55, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

.home-page::before {
  content: none;
}

.coffee-beans-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.coffee-bean {
  position: absolute;
  display: block;
  width: 72px;
  aspect-ratio: 160 / 220;
  background: url("assets/coffee-bean-real.webp") center/contain no-repeat;
  opacity: 0.18;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.04) brightness(0.96);
  transform-origin: center;
}

.bean-1 {
  top: 5.5rem;
  left: 3%;
  width: 92px;
  transform: rotate(-16deg);
}

.bean-2 {
  top: 8rem;
  left: 18%;
  width: 58px;
  transform: rotate(24deg);
}

.bean-3 {
  top: 12rem;
  right: 8%;
  width: 88px;
  transform: rotate(18deg);
}

.bean-4 {
  top: 28rem;
  left: 10%;
  width: 66px;
  transform: rotate(-42deg);
}

.bean-5 {
  top: 34rem;
  right: 22%;
  width: 78px;
  transform: rotate(34deg);
}

.bean-6 {
  top: 49rem;
  right: 5%;
  width: 72px;
  transform: rotate(-24deg);
}

.bean-7 {
  top: 58rem;
  left: 6%;
  width: 96px;
  transform: rotate(28deg);
}

.bean-8 {
  top: 72rem;
  left: 24%;
  width: 62px;
  transform: rotate(-30deg);
}

.bean-9 {
  top: 84rem;
  right: 14%;
  width: 84px;
  transform: rotate(12deg);
}

.bean-10 {
  top: 102rem;
  left: 12%;
  width: 74px;
  transform: rotate(36deg);
}

.home-page .site-shell {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar .container {
  width: min(1520px, calc(100% - 2rem));
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  font-size: 0.78rem;
}

.brand-copy small,
.lead,
.feature-card p,
.catalog-card p,
.step-card p,
.service-list p,
.benefits p,
.hero-stats span,
.hero-highlights span,
.site-footer p,
.site-footer a,
.contact-panel p {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(0.35rem, 0.55vw, 0.72rem);
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: clamp(0.78rem, 0.74rem + 0.12vw, 0.9rem);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav__promotions-link {
  color: #ff7a00 !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 122, 0, 0.22);
}

.main-nav__promotions-link:hover,
.main-nav__promotions-link.active {
  color: #ff8b1f !important;
}

.main-nav a.btn,
.main-nav a.btn:hover,
.main-nav a.btn.active {
  color: #fffdf8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff8f2;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(95, 48, 31, 0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(49, 28, 19, 0.18);
  box-shadow: none;
}

.btn-sm {
  padding: 0.75rem 1rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

@media (max-width: 1320px) {
  .topbar-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 1rem;
    min-height: 74px;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .main-nav {
    position: static;
    flex: 1 0 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    padding-left: 0;
  }
}

.hero,
.page-hero {
  padding: 4.8rem 0 3rem;
}

.hero--photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 22, 16, 0.3) 0%, rgba(33, 22, 16, 0.48) 100%),
    linear-gradient(90deg, rgba(255, 248, 240, 0.88) 0%, rgba(255, 248, 240, 0.66) 34%, rgba(255, 248, 240, 0.28) 60%, rgba(255, 248, 240, 0.12) 100%),
    url("restul%20de%20poze/poza%20home%20page.png") center center / cover no-repeat;
  transform: scale(1.01);
}

.hero--photo > .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.split,
.service-strip,
.form-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.hero-intro--centered {
  max-width: 760px;
  margin: 0 auto 1.4rem;
  text-align: center;
  padding: 1.2rem 1.2rem 0;
}

.hero-intro--centered .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.28rem, 1.9vw, 1.6rem);
  line-height: 1.85;
  font-weight: 600;
}

.hero-intro--centered h1 {
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  letter-spacing: 0.04em;
  color: #fffdf9;
  text-shadow: 0 16px 28px rgba(67, 38, 23, 0.26);
}

.hero--photo .hero-intro--centered .eyebrow,
.hero--photo .hero-intro--centered .lead {
  color: #fff7ef;
  text-shadow: 0 10px 24px rgba(67, 38, 23, 0.2);
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-panel h2,
.search-box h2,
.split h2,
.service-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.section-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.lead {
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-stats,
.hero-highlights,
.grid,
.service-list {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.hero-highlights {
  margin-top: 2rem;
}

.hero-stats article,
.hero-highlights article,
.feature-card,
.catalog-card,
.step-card,
.service-list article,
.contact-panel,
.contact-form,
.hero-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-stats article,
.hero-highlights article,
.feature-card,
.catalog-card,
.step-card,
.service-list article,
.contact-panel,
.contact-form,
.hero-card {
  padding: 1.5rem;
}

.hero-highlights article {
  display: grid;
  gap: 0.4rem;
  padding: 0.35rem 0 0.35rem 1rem;
  background: transparent;
  border: 0;
  border-left: 3px solid rgba(135, 79, 55, 0.28);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-highlights strong {
  font-size: 1rem;
}

.partnership-proof__details {
  display: grid;
  gap: 0.9rem;
}

.partnership-proof__summary {
  list-style: none;
  cursor: pointer;
}

.partnership-proof__summary::-webkit-details-marker {
  display: none;
}

.partnership-proof__summary strong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.partnership-proof__summary strong::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(135, 79, 55, 0.14);
  color: var(--primary-dark);
  font-size: 0.95rem;
  line-height: 1;
}

.partnership-proof__details[open] .partnership-proof__summary strong::after {
  content: "-";
}

.partnership-proof__summary:hover strong,
.partnership-proof__summary:focus-visible strong {
  color: var(--primary);
}

.partnership-proof__image-link {
  display: block;
  width: min(100%, 760px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(49, 28, 19, 0.08);
  box-shadow: 0 18px 28px rgba(64, 35, 24, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partnership-proof__image-link:hover,
.partnership-proof__image-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(64, 35, 24, 0.14);
}

.partnership-proof__image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 1.2rem;
}

.hero-card {
  position: relative;
  z-index: 1;
}

.hero-panel {
  display: grid;
  gap: 1.4rem;
  align-self: stretch;
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(246, 238, 227, 0.84)),
    radial-gradient(circle at top right, rgba(194, 140, 82, 0.16), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel--guide {
  background:
    radial-gradient(circle at top right, rgba(224, 147, 103, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(255, 248, 242, 0.96), rgba(247, 231, 218, 0.92));
  border: 1px solid rgba(181, 110, 72, 0.18);
  box-shadow: 0 26px 46px rgba(139, 83, 53, 0.14);
}

.hero-panel-head .eyebrow {
  margin-bottom: 0.65rem;
}

.hero-panel-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-panel-head p:last-child {
  margin: 0.95rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-shortcuts {
  display: grid;
  gap: 0.9rem;
}

.hero-shortcut {
  display: grid;
  gap: 0.32rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 28, 19, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-shortcut strong {
  color: var(--text);
}

.hero-shortcut span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-shortcut:hover,
.hero-shortcut:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(135, 79, 55, 0.24);
  box-shadow: 0 14px 24px rgba(64, 35, 24, 0.1);
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(49, 28, 19, 0.1);
  color: var(--muted);
  font-weight: 700;
}

.home-guide-chat {
  margin-top: 0;
  max-height: 320px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(181, 110, 72, 0.14);
}

.home-guide-chat .assistant-message {
  width: 100%;
}

.home-guide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.home-guide-chips .assistant-chip {
  min-height: 60px;
  padding: 1.08rem 1.55rem;
  font-size: clamp(1.14rem, 1.5vw, 1.28rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-width: 1.5px;
  box-shadow: 0 16px 30px rgba(139, 83, 53, 0.11);
}

.hero-contact-strip span {
  color: var(--primary-dark);
}

.hero-contact-strip a {
  color: var(--text);
}

.hero-contact-strip a:hover,
.hero-contact-strip a:focus-visible {
  color: var(--primary);
}

.hero-card-large {
  width: min(100%, 460px);
  margin-left: auto;
}

.hero-card-small {
  width: min(76%, 320px);
}

.hero-card h2 {
  margin: 0.85rem 0 0.7rem;
  font-size: 1.65rem;
  font-family: Georgia, "Times New Roman", serif;
}

.chip,
.catalog-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(194, 140, 82, 0.16);
  color: var(--primary-dark);
}

.coffee-ring {
  position: absolute;
  right: 4%;
  top: 4%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 26px solid rgba(194, 140, 82, 0.2);
  box-shadow: inset 0 0 0 12px rgba(135, 79, 55, 0.12), 0 0 0 40px rgba(255, 255, 255, 0.36);
}

.section {
  padding: 4.6rem 0;
}

.section-tight {
  padding-top: 1.2rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.catalog-jump {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid rgba(49, 28, 19, 0.1);
  box-shadow: 0 18px 34px rgba(64, 35, 24, 0.09);
}

.catalog-jump .lead {
  margin-top: 0.8rem;
}

.jump-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card h3,
.catalog-card h3,
.step-card h3,
.service-list h3,
.benefits h3,
.product-card h3,
.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.7rem;
}

.feature-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.feature-card--visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-content: end;
  isolation: isolate;
}

.feature-card--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.36;
  transform: scale(1.04);
  z-index: -2;
}

.feature-card--visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.18) 0%, rgba(255, 248, 240, 0.44) 34%, rgba(255, 248, 240, 0.92) 100%),
    linear-gradient(135deg, rgba(96, 58, 39, 0.12), rgba(255, 255, 255, 0));
  z-index: -1;
}

.feature-card--visual h3,
.feature-card--visual p,
.feature-card--visual a {
  position: relative;
}

.feature-card--automate::before {
  background-image: url("https://newebcdn-necta.evocagroup.com/sites/new-necta/files/styles/default/public/images/family/hero--barista600.png?itok=uAVt-un4");
  background-size: contain;
  background-position: right -12px top 18px;
  opacity: 0.26;
}

.feature-card--intretinere::before {
  background-image: url("restul de poze/Produse de Intretinere.png");
  background-size: contain;
  background-position: center;
  opacity: 0.26;
  transform: none;
}

.feature-card--plata::before {
  background-image: url("Pompe si Sisteme de plata/NV9.png");
  background-size: 180px auto;
  background-position: right -12px top 10px;
  opacity: 0.24;
}

.feature-card--piese::before {
  background-image: url("restul de poze/Piese.png");
  background-size: contain;
  background-position: center 28%;
  opacity: 0.26;
  transform: none;
}

.feature-card--consumabile::before {
  background-image: url("restul de poze/Consumabile.png");
  background-size: contain;
  background-position: center 10%;
  opacity: 0.26;
  transform: none;
}

.feature-card--accesorii::before {
  background-image: url("poze accesorii espressoare/Cana lapte Philips-Saeco.jpg");
  background-size: contain;
  background-position: center 18%;
  opacity: 0.26;
  transform: none;
}

.catalog-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.blog-toc-layout {
  align-items: start;
}

.blog-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: blogtoc;
  display: grid;
  gap: 0.9rem;
}

.blog-toc-item {
  counter-increment: blogtoc;
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 0 0.95rem 3.2rem;
  border-bottom: 1px solid rgba(49, 28, 19, 0.1);
  position: relative;
}

.blog-toc-item::before {
  content: counter(blogtoc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(135, 79, 55, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.blog-toc-item strong {
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text);
}

.blog-toc-item a {
  width: fit-content;
  color: var(--primary-dark);
  font-weight: 800;
}

.feature-card--catalog {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.automate-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}

.automate-category-card {
  padding: 1.55rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(248, 238, 228, 0.92));
  border: 1px solid rgba(113, 63, 36, 0.12);
  box-shadow: 0 18px 34px rgba(70, 37, 24, 0.08);
}

.automate-category-card > p {
  margin: 0;
}

.automate-category-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  line-height: 1.45;
  padding: 0.95rem 1.2rem;
  margin-top: 0.1rem;
}

.feature-product-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.feature-product {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(49, 28, 19, 0.08);
  position: relative;
  overflow: visible;
}

.feature-product img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.9);
  padding: 0.35rem;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
  cursor: zoom-in;
  touch-action: manipulation;
  position: relative;
  z-index: 1;
}

.feature-product h4 {
  margin: 0.55rem 0 0.45rem;
  font-size: 1rem;
}

.feature-product__content {
  position: relative;
}

.feature-product__title-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.feature-product__title-button:hover,
.feature-product__title-button:focus-visible {
  color: var(--primary);
}

.feature-product__spec-card {
  position: static;
  width: 100%;
  margin: 0.3rem 0 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.97);
  border: 1px solid rgba(168, 96, 58, 0.18);
  box-shadow: 0 18px 36px rgba(88, 48, 24, 0.16);
}

.feature-product__spec-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.93rem;
}

.feature-product__spec-card p + p {
  margin-top: 0.38rem;
}

.feature-product p {
  margin: 0;
  line-height: 1.6;
}

.automate-category-card .feature-product-list {
  gap: 1.15rem;
  margin-top: 0.75rem;
}

.automate-category-card .feature-product {
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.automate-category-card .feature-product img {
  width: 100%;
  height: 220px;
  padding: 0.75rem;
  border-radius: 20px;
}

.automate-category-card .feature-product h4 {
  margin-top: 0.25rem;
  font-size: 1.18rem;
}

.automate-category-card .feature-product p {
  font-size: 0.98rem;
}

.automate-category-card .feature-product__spec-card {
  margin-top: 0.55rem;
}

.consumable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.consumable-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(49, 28, 19, 0.08);
  box-shadow: 0 12px 26px rgba(64, 35, 24, 0.08);
}

.consumable-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 0.85rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.95), rgba(241, 229, 217, 0.92));
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  touch-action: manipulation;
}

.consumable-card__media img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
}

.consumable-card--cup {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(246, 237, 228, 0.88));
}

.consumable-card__media--cup {
  position: relative;
  min-height: 220px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.98), rgba(255, 252, 248, 0.96) 28%, rgba(245, 233, 222, 0.82) 62%, rgba(231, 213, 197, 0.7) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -10px 18px rgba(135, 79, 55, 0.06);
}

.consumable-card__media--cup::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 14px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(95, 48, 31, 0.22), rgba(95, 48, 31, 0.02) 72%);
  filter: blur(8px);
}

.consumable-card--cup img {
  position: relative;
  z-index: 1;
  max-height: 188px;
  transform: translateY(8px) scale(1.08);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 22px rgba(72, 42, 28, 0.18)) saturate(1.02);
}

.consumable-card__img--evo {
  transform: translateY(8px) scale(0.96);
}

.consumable-card__img--coffee-break {
  transform: translateY(10px) scale(1.16);
}

.maintenance-hero-media {
  display: grid;
  gap: 1rem;
}

.maintenance-showcase {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid rgba(49, 28, 19, 0.1);
  box-shadow: 0 16px 30px rgba(64, 35, 24, 0.08);
}

.maintenance-showcase img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top left;
  border-radius: 20px;
  border: 1px solid rgba(49, 28, 19, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.maintenance-showcase h3,
.maintenance-product-card h4 {
  margin: 0.55rem 0;
}

.maintenance-showcase p,
.maintenance-product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.maintenance-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.maintenance-product-card {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(49, 28, 19, 0.08);
  box-shadow: 0 12px 26px rgba(64, 35, 24, 0.08);
}

.maintenance-product-card .catalog-tag {
  margin-bottom: 0.1rem;
}

.maintenance-product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 0.8rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.95), rgba(241, 229, 217, 0.92));
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  touch-action: manipulation;
}

.maintenance-product-card__media img {
  width: 100%;
  height: 164px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
}

.maintenance-product-card__media--screenshot img {
  object-fit: contain;
  object-position: center;
}

.maintenance-product-card__media--placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  .feature-product:hover img,
  .feature-product:focus-within img {
    transform: scale(1.28);
    filter: saturate(1.04);
  }

  .maintenance-product-card__media:hover img,
  .maintenance-product-card__media:focus-within img {
    transform: scale(1.28);
    filter: saturate(1.04);
  }
}

.feature-product.is-zoomed img {
  transform: scale(1.22);
  filter: saturate(1.04);
}

.maintenance-product-card__media.is-zoomed img {
  transform: scale(1.22);
  filter: saturate(1.04);
}

@media (hover: none), (pointer: coarse) {
  .feature-product img,
  .maintenance-product-card__media {
    cursor: default;
  }
}

.consumable-card__img--lighten {
  mix-blend-mode: lighten;
  filter: drop-shadow(0 16px 22px rgba(72, 42, 28, 0.16)) saturate(1.03);
}

.consumable-card__media--wide {
  min-height: 150px;
  padding: 0;
}

.consumable-card__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

@media (hover: hover) and (pointer: fine) {
  .consumable-card__media:hover img,
  .consumable-card__media:focus-within img {
    transform: scale(1.28);
    filter: saturate(1.04);
  }

  .consumable-card__media:hover .consumable-card__img--evo,
  .consumable-card__media:focus-within .consumable-card__img--evo {
    transform: translateY(8px) scale(1.22);
  }

  .consumable-card__media:hover .consumable-card__img--coffee-break,
  .consumable-card__media:focus-within .consumable-card__img--coffee-break {
    transform: translateY(10px) scale(1.38);
  }
}

.consumable-card__media.is-zoomed img {
  transform: scale(1.22);
  filter: saturate(1.04);
}

.consumable-card__media.is-zoomed .consumable-card__img--evo {
  transform: translateY(8px) scale(1.16);
}

.consumable-card__media.is-zoomed .consumable-card__img--coffee-break {
  transform: translateY(10px) scale(1.32);
}

@media (hover: none), (pointer: coarse) {
  .consumable-card__media {
    cursor: default;
  }
}

.consumable-card__shot--palete90 {
  object-position: 58% 27%;
}

.consumable-card__shot--palete105 {
  object-position: 58% 35%;
}

.consumable-card__shot--palete-manuale {
  object-position: 58% 70%;
}

.consumable-card h4 {
  margin: 0.9rem 0 0.35rem;
  font-size: 1rem;
}

.consumable-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.consumable-subgrid {
  margin-top: 1.4rem;
}

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top, rgba(194, 140, 82, 0.2), transparent 35%),
    linear-gradient(180deg, rgba(255, 251, 244, 0.94), rgba(242, 232, 220, 0.92));
}

.product-media img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(32, 23, 20, 0.14));
}

.product-body {
  padding: 1.4rem 1.4rem 1.5rem;
}

.product-body p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-specs {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.product-specs li {
  margin-bottom: 0.45rem;
}

.anchor-card .catalog-tag {
  margin-bottom: 0.8rem;
}

.brand-section {
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.82);
  border: 1px solid rgba(49, 28, 19, 0.1);
  box-shadow: 0 12px 28px rgba(64, 35, 24, 0.08);
}

.brand-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.brand-section h3 {
  margin: 0.65rem 0 0.55rem;
  font-size: 1.5rem;
}

.brand-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 72ch;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.tag-list span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(135, 79, 55, 0.08);
  border: 1px solid rgba(135, 79, 55, 0.14);
  color: var(--primary-dark);
  font-weight: 700;
}

.inventory-panel {
  background: rgba(255, 251, 245, 0.86);
  border: 1px solid rgba(49, 28, 19, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(64, 35, 24, 0.09);
  overflow: hidden;
}

.assistant-panel {
  padding: 1.7rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at top right, rgba(224, 147, 103, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(248, 233, 220, 0.96));
  border: 1px solid rgba(181, 110, 72, 0.18);
  box-shadow: 0 26px 50px rgba(139, 83, 53, 0.14);
}

.assistant-panel--catalog .assistant-panel__head > div:first-child {
  background: linear-gradient(145deg, rgba(194, 117, 76, 0.96), rgba(229, 164, 114, 0.9));
}

.assistant-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.6rem;
  align-items: start;
}

.assistant-panel__head > div:first-child {
  padding: 1.45rem;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(183, 106, 67, 0.96), rgba(223, 155, 107, 0.92));
  box-shadow: 0 18px 32px rgba(139, 83, 53, 0.18);
}

.assistant-panel__head > div:first-child .eyebrow {
  color: rgba(255, 243, 233, 0.84);
}

.assistant-panel__head > div:first-child h2,
.assistant-panel__head > div:first-child .lead {
  color: #fff8f0;
}

.assistant-panel__head > div:first-child .lead {
  opacity: 0.9;
}

.assistant-panel__head > div:last-child {
  padding: 1.15rem;
  border-radius: 26px;
  background: rgba(255, 247, 240, 0.84);
  border: 1px solid rgba(181, 110, 72, 0.12);
}

.assistant-panel__head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.assistant-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.assistant-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 241, 228, 0.14);
  border: 1px solid rgba(255, 241, 228, 0.24);
  color: #fff7f1;
  font-weight: 700;
  font-size: 0.92rem;
}

.assistant-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  align-content: start;
}

.assistant-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(181, 110, 72, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 237, 226, 0.96));
  color: #9a5734;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.assistant-chip:hover,
.assistant-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(181, 110, 72, 0.32);
  box-shadow: 0 10px 18px rgba(139, 83, 53, 0.08);
}

.assistant-chip.is-active {
  background: linear-gradient(145deg, rgba(183, 106, 67, 0.96), rgba(223, 155, 107, 0.92));
  color: #fffdf8;
  border-color: rgba(183, 106, 67, 0.3);
  box-shadow: 0 14px 24px rgba(139, 83, 53, 0.14);
}

.assistant-chip--promotions {
  background: linear-gradient(145deg, rgba(255, 143, 0, 0.96), rgba(255, 191, 71, 0.92));
  color: #1f120b;
  border-color: rgba(255, 143, 0, 0.35);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(255, 143, 0, 0.2);
}

.assistant-chip--promotions:hover,
.assistant-chip--promotions:focus-visible,
.assistant-chip--promotions.is-active {
  background: linear-gradient(145deg, rgba(255, 154, 18, 0.98), rgba(255, 203, 90, 0.94));
  color: #1f120b;
  border-color: rgba(255, 154, 18, 0.45);
  box-shadow: 0 16px 28px rgba(255, 143, 0, 0.24);
}

.promotions-page .page-hero {
  padding-bottom: 2rem;
}

.promotions-title {
  color: #ff7a00;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 122, 0, 0.18);
}

.promotions-lead {
  max-width: 74ch;
}

.promotions-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.promotions-jump-nav .btn {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.promotions-jump-nav .btn--secondary {
  background: rgba(255, 248, 242, 0.92);
}

.promotions-section-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(49, 28, 19, 0.1);
  box-shadow: 0 16px 32px rgba(64, 35, 24, 0.08);
}

.promotions-section-card + .promotions-section-card {
  margin-top: 1.35rem;
}

.promotions-section-card h2 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.promotions-note {
  margin: 0.95rem 0 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 247, 234, 0.95), rgba(255, 239, 214, 0.92));
  border: 1px solid rgba(255, 143, 0, 0.2);
  color: var(--primary-dark);
}

.promotions-note strong {
  color: #8d4600;
}

.promotions-note a {
  color: #8d4600;
  font-weight: 800;
  text-decoration: underline;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-top: 1.15rem;
}

.promo-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(49, 28, 19, 0.08);
  box-shadow: 0 12px 26px rgba(64, 35, 24, 0.08);
}

.promo-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(247, 239, 229, 0.9));
}

.promo-card__media img {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.promo-card__placeholder {
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.promo-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.promo-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.promo-card__flash-bolt {
  display: inline-block;
  margin-right: 0.28rem;
  color: #ff7a00;
  font-size: 1.8rem;
  line-height: 0.9;
  vertical-align: -0.12em;
}

.promo-card__meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.promo-card__price-block {
  display: grid;
  gap: 0.28rem;
}

.promo-card__price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.promo-card__price-current {
  color: #ff7a00;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.2;
}

.promo-card__code {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.promo-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.1rem;
}

.promo-card__actions .btn {
  flex: 1 1 180px;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  background: rgba(255, 143, 0, 0.12);
  border: 1px solid rgba(255, 143, 0, 0.22);
  color: #8d4600;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-chip--dark {
  background: rgba(135, 79, 55, 0.08);
  border-color: rgba(135, 79, 55, 0.15);
  color: var(--primary-dark);
}

.assistant-trigger-title {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.assistant-trigger-title:hover,
.assistant-trigger-title:focus-visible {
  color: #9a5734;
}

.assistant-chip--link {
  text-decoration: none;
}

.assistant-chip[href*="wa.me/40726371804"],
.btn.assistant-sales-link,
.assistant-actions .btn[href*="wa.me/40726371804"],
.assistant-actions .btn-secondary[href*="wa.me/40726371804"],
.assistant-chip.assistant-sales-link,
.assistant-actions .btn.assistant-sales-link,
.assistant-actions .btn-secondary.assistant-sales-link {
  background: linear-gradient(145deg, rgba(195, 54, 69, 0.98), rgba(227, 86, 100, 0.94));
  color: #fffdfb;
  border-color: rgba(195, 54, 69, 0.32);
  box-shadow: 0 14px 24px rgba(195, 54, 69, 0.2);
}

.assistant-chip[href*="wa.me/40726371804"]:hover,
.assistant-chip[href*="wa.me/40726371804"]:focus-visible,
.btn.assistant-sales-link:hover,
.btn.assistant-sales-link:focus-visible,
.assistant-actions .btn[href*="wa.me/40726371804"]:hover,
.assistant-actions .btn[href*="wa.me/40726371804"]:focus-visible,
.assistant-actions .btn-secondary[href*="wa.me/40726371804"]:hover,
.assistant-actions .btn-secondary[href*="wa.me/40726371804"]:focus-visible,
.assistant-chip.assistant-sales-link:hover,
.assistant-chip.assistant-sales-link:focus-visible,
.assistant-actions .btn.assistant-sales-link:hover,
.assistant-actions .btn.assistant-sales-link:focus-visible,
.assistant-actions .btn-secondary.assistant-sales-link:hover,
.assistant-actions .btn-secondary.assistant-sales-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(195, 54, 69, 0.42);
  box-shadow: 0 16px 28px rgba(195, 54, 69, 0.26);
}

.assistant-chat {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1rem;
  max-height: 460px;
  overflow: auto;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(49, 28, 19, 0.08);
}

.assistant-message {
  display: grid;
  gap: 0.7rem;
  width: min(100%, 820px);
  padding: 1rem 1.1rem;
  border-radius: 24px;
}

.assistant-message p {
  margin: 0;
  line-height: 1.6;
}

.assistant-message--assistant {
  justify-self: start;
  background: rgba(255, 248, 242, 0.96);
  border: 1px solid rgba(181, 110, 72, 0.1);
}

.assistant-message--user {
  justify-self: end;
  background: linear-gradient(145deg, rgba(183, 106, 67, 0.96), rgba(223, 155, 107, 0.92));
  color: #fff8f0;
}

.assistant-message--user p {
  color: #fff8f0;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.assistant-actions .btn,
.assistant-actions .btn-secondary {
  min-height: 42px;
}

.assistant-actions [data-cart-role="add-product"].is-added {
  background: #bf7651;
  color: #fff;
  border-color: #bf7651;
  box-shadow: 0 12px 24px rgba(183, 106, 67, 0.22);
}

.assistant-result-list {
  display: grid;
  gap: 0.75rem;
}

.assistant-result-item > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.assistant-result-item {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 252, 249, 0.9);
  border: 1px solid rgba(181, 110, 72, 0.08);
}

.assistant-result-item .assistant-actions {
  margin-top: 0.25rem;
}

.assistant-result-item strong {
  font-size: 1rem;
  color: var(--text);
}

.assistant-result-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.assistant-result-price {
  color: #9a5734;
  font-size: 0.98rem;
  font-weight: 800;
}

.assistant-cart-shell {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  gap: 0.75rem;
}

.assistant-cart-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.05rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(183, 106, 67, 0.98), rgba(223, 155, 107, 0.94));
  color: #fff8f0;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(139, 83, 53, 0.22);
}

.assistant-cart-toggle strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.assistant-cart-panel {
  width: min(420px, calc(100vw - 2rem));
  max-height: min(70vh, 760px);
  overflow: auto;
  padding: 1rem;
  border-radius: 26px;
  background: rgba(255, 249, 244, 0.98);
  border: 1px solid rgba(181, 110, 72, 0.14);
  box-shadow: 0 24px 50px rgba(139, 83, 53, 0.18);
}

.assistant-cart-panel__head,
.assistant-cart-panel__foot,
.assistant-cart-item,
.assistant-cart-item__actions,
.assistant-cart-qty {
  display: grid;
}

.assistant-cart-panel__head {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  position: sticky;
  top: -1rem;
  z-index: 2;
  padding: 0 0 0.8rem;
  margin: -1rem -1rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
  background: rgba(255, 249, 244, 0.98);
  border-bottom: 1px solid rgba(181, 110, 72, 0.08);
}

.assistant-cart-panel__head h3 {
  margin: 0.1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.assistant-cart-total {
  margin: 0.45rem 0 0;
  color: #9a5734;
  font-size: 0.98rem;
  font-weight: 800;
}

.assistant-cart-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(183, 106, 67, 0.08);
  color: #9a5734;
  font-size: 1.25rem;
}

.assistant-cart-items {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.assistant-cart-item {
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(181, 110, 72, 0.08);
}

.assistant-cart-item__actions {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.assistant-cart-qty {
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 0.45rem;
}

.assistant-cart-qty button,
.assistant-cart-remove {
  border: 1px solid rgba(181, 110, 72, 0.16);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 999px;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  font-weight: 700;
}

.assistant-cart-empty {
  margin: 0;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.assistant-cart-panel__foot {
  gap: 0.9rem;
  margin-top: 1rem;
}

.assistant-cart-panel__foot > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  margin-top: 1rem;
}

.assistant-form textarea {
  width: 100%;
  min-height: 68px;
  resize: vertical;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(49, 28, 19, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
}

.assistant-form textarea:focus {
  outline: 2px solid rgba(135, 79, 55, 0.22);
  border-color: rgba(135, 79, 55, 0.28);
}

.inventory-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(49, 28, 19, 0.08);
}

.inventory-toolbar h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.inventory-toolbar p {
  margin: 0;
  color: var(--muted);
}

.inventory-search {
  width: min(100%, 380px);
}

.inventory-search input {
  width: 100%;
  border: 1px solid rgba(49, 28, 19, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 253, 248, 0.96);
  color: var(--text);
}

.inventory-table-wrap {
  max-height: 780px;
  overflow: auto;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
}

.inventory-table th,
.inventory-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(49, 28, 19, 0.08);
}

.inventory-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f5ece1;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
}

.inventory-table tbody tr:nth-child(even) {
  background: rgba(135, 79, 55, 0.03);
}

.inventory-table tbody tr.inventory-row-match {
  background: rgba(164, 53, 35, 0.12);
}

.inventory-table tbody tr.inventory-row-match td {
  border-top: 1px solid rgba(164, 53, 35, 0.22);
  border-bottom: 1px solid rgba(164, 53, 35, 0.22);
}

.inventory-table td:first-child {
  width: 72px;
  color: var(--muted);
}

.inventory-table td:last-child {
  width: 180px;
  font-weight: 800;
  color: var(--primary-dark);
}

.inventory-code-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.inventory-code-link--assistant {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.inventory-code-link:hover,
.inventory-code-link:focus-visible {
  color: var(--primary);
}

.doc-card,
.doc-detail {
  background: rgba(255, 251, 245, 0.86);
  border: 1px solid rgba(49, 28, 19, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(64, 35, 24, 0.09);
}

.doc-card {
  padding: 1.35rem;
}

.doc-card h3,
.doc-detail h2 {
  margin: 0.8rem 0 0.65rem;
}

.doc-card p,
.doc-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.doc-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.single-doc {
  max-width: 860px;
}

.single-doc-wide {
  max-width: 980px;
}

.doc-detail {
  padding: 1.6rem;
}

.doc-viewer {
  margin-top: 1.4rem;
  scroll-margin-top: 6rem;
}

.doc-viewer[hidden] {
  display: none;
}

.doc-viewer__note {
  margin: 0 0 1rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.doc-viewer__code {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(135, 79, 55, 0.12), rgba(194, 140, 82, 0.22));
  border: 1px solid rgba(135, 79, 55, 0.18);
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.doc-viewer__code[hidden] {
  display: none;
}

.doc-viewer__position {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(135, 79, 55, 0.18);
  color: var(--text);
  font-weight: 800;
}

.doc-viewer__position[hidden] {
  display: none;
}

.doc-viewer iframe {
  width: 100%;
  min-height: 900px;
  border: 1px solid rgba(49, 28, 19, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.doc-viewer__secondary {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(49, 28, 19, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.doc-viewer__secondary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.doc-viewer__secondary-head strong {
  display: block;
  color: var(--primary-dark);
}

.doc-viewer__secondary-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.doc-viewer__secondary iframe {
  min-height: 780px;
}

.exploded-highlight-preview {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(49, 28, 19, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  scroll-margin-top: 6rem;
}

.exploded-highlight-preview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.exploded-highlight-preview__head strong {
  display: block;
  color: var(--primary-dark);
}

.exploded-highlight-preview__head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.exploded-highlight-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(49, 28, 19, 0.12);
  background: #fff;
}

.exploded-highlight-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.exploded-highlight-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.exploded-highlight-marker {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid rgba(214, 31, 38, 0.95);
  border-radius: 999px;
  background: rgba(214, 31, 38, 0.12);
  box-shadow: 0 0 0 10px rgba(214, 31, 38, 0.08);
  transform: translate(-18%, -18%);
}

.exploded-highlight-marker strong {
  position: absolute;
  top: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: #d61f26;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 800;
}

.exploded-render {
  display: grid;
  gap: 1.5rem;
}

.exploded-pair {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid rgba(49, 28, 19, 0.1);
  box-shadow: 0 18px 34px rgba(64, 35, 24, 0.09);
}

.exploded-pair__head h3 {
  margin: 0.8rem 0 0.5rem;
}

.exploded-pair__head p {
  margin: 0;
  color: var(--muted);
}

.exploded-pair__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.exploded-pair__grid--rich {
  align-items: start;
}

.exploded-image {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 28, 19, 0.08);
  box-shadow: 0 10px 22px rgba(64, 35, 24, 0.08);
}

.exploded-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.exploded-image span {
  color: var(--primary-dark);
  font-weight: 800;
}

.exploded-image--codes {
  position: relative;
}

.exploded-image--codes::after {
  content: "Click pe lista pentru schema";
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(95, 48, 31, 0.88);
  color: #fff8f2;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(64, 35, 24, 0.2);
}

.exploded-image--codes-scan::after {
  content: "Deschide lista scanata";
}

.exploded-image--codes:hover {
  transform: translateY(-2px);
}

.exploded-image--scheme.is-linked-highlight {
  outline: 3px solid rgba(135, 79, 55, 0.5);
  box-shadow: 0 0 0 10px rgba(194, 140, 82, 0.18), 0 18px 34px rgba(64, 35, 24, 0.16);
}

.exploded-side {
  display: grid;
  gap: 1rem;
}

.exploded-code-panel {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(49, 28, 19, 0.08);
  box-shadow: 0 10px 22px rgba(64, 35, 24, 0.08);
}

.exploded-code-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.exploded-code-panel__head strong,
.exploded-code-panel__head span {
  color: var(--primary-dark);
}

.exploded-code-panel__head span {
  font-size: 0.92rem;
  font-weight: 700;
}

.exploded-code-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.exploded-code-link {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(135, 79, 55, 0.12);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(247, 237, 227, 0.98));
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.exploded-code-link:hover,
.exploded-code-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(135, 79, 55, 0.28);
  box-shadow: 0 12px 20px rgba(64, 35, 24, 0.12);
  outline: none;
}

.exploded-code-link strong {
  font-size: 1rem;
  color: var(--primary-dark);
}

.exploded-code-link__meta {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.accents {
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.9), rgba(246, 240, 231, 0.65));
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefits article {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.search-box,
.cta-panel {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, rgba(95, 48, 31, 0.92), rgba(135, 79, 55, 0.94));
  color: #fff8f0;
  box-shadow: var(--shadow);
}

.search-box p,
.cta-panel p {
  color: rgba(255, 247, 240, 0.84);
}

.search-box .eyebrow,
.cta-panel .eyebrow {
  color: rgba(255, 226, 202, 0.78);
}

.cta-panel--inline {
  margin: 0.5rem 0 1.75rem;
}

.piece-search {
  display: flex;
  gap: 0.9rem;
  margin-top: 1rem;
}

.piece-search input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(49, 28, 19, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 253, 248, 0.96);
  color: var(--text);
}

.search-tags,
.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.search-tags a,
.brand-cloud span {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.search-tags a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff8f0;
}

.brand-cloud span {
  background: rgba(255, 251, 244, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(64, 35, 24, 0.08);
}

.site-footer {
  padding: 2.4rem 0 3rem;
  border-top: 1px solid var(--line);
}

.page-main {
  min-height: calc(100vh - 180px);
}

.compact {
  display: grid;
  gap: 0.8rem;
}

.inline-note,
.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.form-note {
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-grid--home-legal {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-links a {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-links a:last-child {
  margin-bottom: 0;
}

.footer-grid > div a {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-grid > div a:last-child {
  margin-bottom: 0;
}

.footer-promotions-link {
  color: #ff7a00 !important;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 122, 0, 0.22);
}

.footer-promotions-link:hover,
.footer-promotions-link:focus-visible {
  color: #ff8b1f !important;
}

.footer-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 0.7rem;
}

.btn--secondary {
  background: rgba(255, 248, 242, 0.92);
  color: var(--primary-dark);
  border: 1px solid rgba(135, 79, 55, 0.22);
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: grid;
  justify-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-banner__content {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border-radius: 26px;
  background: rgba(40, 24, 16, 0.94);
  color: #fff8f2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 42px rgba(24, 13, 8, 0.22);
  backdrop-filter: blur(14px);
}

.cookie-banner__copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-banner__copy strong {
  font-size: 1rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: rgba(255, 247, 240, 0.84);
  line-height: 1.6;
}

.cookie-banner__copy a {
  color: #fff3e8;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.max-copy {
  max-width: 62ch;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .service-strip,
  .form-layout,
  .cards-5,
  .cards-4,
  .cards-3,
  .automate-category-grid,
  .cards-2,
  .footer-grid,
  .hero-stats,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .catalog-jump {
    grid-template-columns: 1fr;
  }

  .jump-actions {
    justify-content: flex-start;
  }

  .assistant-panel__head,
  .assistant-form {
    grid-template-columns: 1fr;
  }

  .assistant-cart-shell {
    left: 1rem;
    right: 1rem;
  }

  .assistant-cart-toggle {
    justify-self: stretch;
    justify-content: space-between;
  }

  .maintenance-showcase {
    grid-template-columns: 1fr;
  }

  .maintenance-showcase img {
    height: 220px;
  }

  .exploded-pair__grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .coffee-ring {
    width: 300px;
    height: 300px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .topbar-inner {
    flex-wrap: nowrap;
    gap: 0.65rem;
    min-height: 78px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-section__head {
    flex-direction: column;
  }

  .inventory-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.65rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 249, 241, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a.btn {
    width: 100%;
  }

  .piece-search {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .cta-panel h2,
  .search-box h2,
  .split h2,
  .service-copy h2 {
    font-size: 2.2rem;
  }

  .hero-panel {
    padding: 1.35rem;
  }

  .coffee-bean {
    opacity: 0.12;
  }

  .bean-1,
  .bean-7 {
    width: 78px;
  }

  .bean-3,
  .bean-9 {
    width: 72px;
  }

  .hero-shortcut {
    padding: 0.95rem 1rem;
  }

  .hero-contact-strip {
    display: grid;
    justify-items: start;
  }

  .coffee-beans-layer {
    display: none;
  }

  .feature-product {
    grid-template-columns: 1fr;
  }

  .feature-product img {
    width: 100%;
    max-width: 120px;
    height: auto;
  }

  .feature-product__spec-card {
    position: static;
    width: 100%;
    margin: 0.4rem 0 0.65rem;
  }

  .automate-category-card {
    padding: 1.2rem;
  }

  .automate-category-card .feature-product {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .automate-category-card .feature-product img {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}


.promo-list--parts {
  display: grid;
  gap: 1rem;
}

.promo-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(198, 95, 41, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(117, 77, 51, 0.08);
}

.promo-list-item__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.promo-list-item h4 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.promo-list-item__meta {
  margin: 0;
  color: rgba(77, 45, 26, 0.8);
  line-height: 1.6;
}

.promo-list-item__side {
  display: grid;
  gap: 0.8rem;
  justify-items: end;
  text-align: right;
}

.promo-list-item__price {
  color: #ff9f0a;
  font-size: 1.35rem;
  line-height: 1.2;
}

.promotions-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  margin-top: 1rem;
}

.promotions-inline-links a {
  color: #c65f29;
  font-weight: 800;
}

@media (max-width: 900px) {
  .promo-list-item {
    grid-template-columns: 1fr;
  }

  .promo-list-item__side {
    justify-items: start;
    text-align: left;
  }
}
