:root {
  --bg: #f7f3ed;
  --bg-soft: #fcfaf6;
  --surface: #ffffff;
  --surface-muted: #f3eee5;
  --text: #22211f;
  --text-soft: #59534c;
  --ink-inverse: #f4f1eb;
  --line: #ddd2bf;
  --line-strong: #d2c2a9;
  --brand: #111f2f;
  --brand-soft: #25364b;
  --accent: #c39a5f;
  --accent-soft: #ecdfc8;
  --ok: #2f6c49;
  --danger: #a64032;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 20px 50px rgba(22, 23, 25, 0.07);
  --shadow-soft: 0 8px 28px rgba(17, 20, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.75), transparent 46%),
    radial-gradient(circle at 95% 16%, rgba(216, 191, 152, 0.28), transparent 35%),
    var(--bg);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

section[id] {
  scroll-margin-top: 104px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

p {
  margin: 0;
}

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

.shell {
  width: min(1200px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -10rem;
  z-index: 999;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
}

.skip-link:focus {
  top: 0.75rem;
}

.page-top-anchor {
  position: absolute;
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(210, 194, 169, 0.45);
  background: rgba(247, 243, 237, 0.84);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-condensed {
  box-shadow: 0 10px 28px rgba(15, 21, 30, 0.09);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  width: 138px;
  height: auto;
}

.brand-sub {
  display: inline-flex;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #ece3d3;
  color: #74644c;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.desktop-nav a,
.mobile-nav a,
.footer-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.2rem;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: #7a7368;
  border-radius: 999px;
  min-width: 44px;
  height: 33px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch button.is-active {
  background: var(--brand);
  color: var(--ink-inverse);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.95rem 1.3rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #97744a;
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand);
  color: var(--ink-inverse);
  box-shadow: 0 14px 32px rgba(17, 31, 47, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #24364a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
  color: var(--brand);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
}

.btn[disabled] {
  opacity: 0.65;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.6rem 0.55rem;
  align-content: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 0.22rem 0;
}

.mobile-panel {
  border-top: 1px solid var(--line);
  background: rgba(252, 250, 246, 0.98);
  padding: 0.95rem 1.2rem 1.4rem;
}

.mobile-nav {
  display: grid;
  gap: 0.75rem;
}

.mobile-panel-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.section {
  padding: clamp(1.5rem, 2.5vw, 2.6rem) 0;
}

.eyebrow {
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.69rem;
  color: #7c6c56;
  font-weight: 800;
}

.eyebrow-light {
  color: #c8baa5;
}

.eyebrow-small {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.63rem;
  color: #c4b08d;
  font-weight: 800;
}

.section-text {
  margin-top: 1rem;
  color: var(--text-soft);
  max-width: 70ch;
  font-size: 1rem;
}

.max-text {
  max-width: 65ch;
}

#categoriesText,
#featuredText,
#whereText,
#whyText {
  max-width: none;
  width: 100%;
}

#aboutText {
  white-space: normal;
  max-width: none;
  width: 100%;
}

.about-text-paragraph {
  display: block;
  margin: 0 0 6pt;
  text-indent: 0;
  text-align: justify;
}

.about-text-paragraph:last-child {
  margin-bottom: 0;
}

.about-text-signature {
  text-align: right;
  white-space: nowrap;
}

.top-visual-zone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.top-visual-zone::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -96px;
  bottom: 0;
  background: url("bg-1.jpg") right top / 100% auto no-repeat;
  z-index: -2;
}

.top-visual-zone::after {
  content: none;
}

.hero-section {
  padding-top: clamp(0.55rem, 1.2vw, 1rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-grid {
  width: 100%;
}

.hero-banner {
  position: relative;
  min-height: clamp(340px, 45vw, 520px);
  overflow: hidden;
}

.hero-banner::before {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
}

.hero-copy {
  max-width: min(660px, 56vw);
  padding-top: clamp(4.08rem, 8vw, 5.69rem);
  padding-right: 1rem;
  padding-bottom: clamp(0.34rem, 1.36vw, 0.92rem);
}

.hero-copy .eyebrow {
  display: none;
}

.hero-copy h1 {
  color: #f8f2e7;
  font-size: clamp(2rem, 4.1vw, 3.18rem);
  font-weight: 700;
  line-height: 1.05;
}

.hero-copy .section-text {
  color: rgba(248, 242, 231, 0.9);
  margin-top: 0.95rem;
  max-width: 53ch;
  font-size: clamp(0.92rem, 1.25vw, 1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: calc(1.25rem + 2.5rem);
}

#heroPrimary,
#heroSecondary {
  width: auto;
  min-height: 48px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(17, 31, 47, 0.16);
}

#heroPrimary {
  background: #f3dec0;
  border-color: #f3dec0;
  color: #271d12;
}

#heroPrimary:hover,
#heroPrimary:focus-visible {
  background: #d7bb89;
  border-color: #d7bb89;
  color: #271d12;
}

#heroSecondary {
  background: #3b7dde;
  border-color: #3b7dde;
  color: #f4f8ff;
}

#heroSecondary:hover,
#heroSecondary:focus-visible {
  background: #5c96ea;
  border-color: #5c96ea;
  color: #ffffff;
}

#heroSecondary .amazon-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
  display: block;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
}

.split-headline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  align-items: end;
}

#trust .split-headline {
  align-items: start;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  border-radius: 18px;
  background: rgba(247, 243, 237, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(2px);
}

#trust.section {
  padding-bottom: clamp(0.7rem, 1.3vw, 1.05rem);
}

.trust-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card,
.category-card,
.featured-card,
.why-card,
.where-card,
.about-panel,
.faq-shell,
.direct-contacts > a {
  border: 1px solid rgba(214, 201, 178, 0.82);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  padding: 1rem;
}

.trust-card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: #f3e9dc;
}

.trust-card-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.trust-card h3 {
  margin-top: 0.7rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

.b2b-section {
  color: #efe8da;
}

.b2b-layout {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: minmax(290px, 1fr) minmax(320px, 1fr);
  padding: clamp(1.3rem, 2.8vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #273951;
  background:
    radial-gradient(circle at 0% 0%, rgba(65, 95, 125, 0.45), transparent 40%),
    linear-gradient(160deg, #101d2a 0%, #1f3348 100%);
  box-shadow: var(--shadow-card);
}

.b2b-layout h2 {
  color: #f7f3eb;
}

.b2b-layout .section-text {
  color: #d5c9b5;
}

#b2bCta {
  margin-top: 1.35rem;
}

#b2bCta:hover,
#b2bCta:focus-visible {
  background: #387dda;
  border-color: #387dda;
  color: #f4f8ff;
}

.b2b-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.b2b-card {
  border: 1px solid rgba(195, 173, 140, 0.32);
  background: linear-gradient(180deg, rgba(32, 52, 75, 0.95), rgba(30, 49, 71, 0.92));
  border-radius: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.b2b-card-media {
  position: relative;
  min-height: clamp(220px, 19vw, 285px);
  padding: 1.05rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.78rem;
  border-bottom: 1px solid rgba(199, 176, 142, 0.24);
  background-image:
    linear-gradient(180deg, rgba(12, 25, 40, 0.2) 0%, rgba(12, 25, 40, 0.62) 100%),
    url("bg-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.b2b-card-1 .b2b-card-media {
  background-image:
    linear-gradient(180deg, rgba(12, 25, 40, 0.2) 0%, rgba(12, 25, 40, 0.62) 100%),
    url("assets/b2b-dealeri.jpg");
  background-position: 62% 36%;
}

.b2b-card-2 .b2b-card-media {
background-image:
    linear-gradient(180deg, rgba(12, 25, 40, 0.2) 0%, rgba(12, 25, 40, 0.62) 100%),
    url("assets/b2b-distribuitori.jpg");
  background-position: 47% 44%;
}

.b2b-card-3 .b2b-card-media {
background-image:
    linear-gradient(180deg, rgba(12, 25, 40, 0.2) 0%, rgba(12, 25, 40, 0.62) 100%),
    url("assets/b2b-proiecte.jpg"),
    url("bg-1.jpg");
  background-position: 80% 42%;
}

.b2b-card-index {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.26em;
  color: #d9bf90;
  font-weight: 700;
  line-height: 1;
}

.b2b-card-title {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.02;
  color: #f3ebdd;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.b2b-card p {
  margin: 0;
  padding: 1.02rem 1rem 0.96rem;
  font-size: 1rem;
  line-height: 1.24;
  color: #f2ecde;
  max-width: none;
}

.b2b-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #cab89f;
}

.category-grid,
.featured-grid,
.why-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

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

.category-card,
.featured-card {
  position: relative;
  padding: 0 0 1.15rem;
  border: 1px solid #d8cdbd;
  border-radius: 20px;
  background: #f8f7f5;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(18, 25, 33, 0.06);
  display: flex;
  flex-direction: column;
}

.where-card,
.why-card {
  padding: 1rem;
}

.category-card:hover,
.featured-card:hover,
.where-card:hover {
  transform: translateY(-2px);
}

.category-visual,
.product-visual {
  border-radius: var(--radius-sm);
  min-height: 170px;
  border: 1px solid rgba(215, 201, 173, 0.7);
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #f6f1e7, #eee2cf);
}

.category-card .category-visual {
  border: 0;
  border-radius: 0;
  min-height: clamp(220px, 19vw, 280px);
  background-image: url("assets/categories-portprosop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.category-card .category-visual::before,
.category-card .category-visual::after {
  content: none;
}

.featured-card .product-visual {
  border: 0;
  border-radius: 0;
  min-height: clamp(220px, 19vw, 280px);
  background-size: cover;
  background-repeat: no-repeat;
}

.featured-card .product-visual::before,
.featured-card .product-visual::after {
  content: none;
}

.category-card .category-visual-1 {
  background-position: center 36%;
}

.category-card .category-visual-2 {
  background-position: center 46%;
  background-image: url("assets/categories-radiatoare.jpg");
}

.category-card .category-visual-3 {
  background-position: center 56%;
  background-image: url("assets/categories-pardoseala.jpg");
}

.featured-card .product-visual-1 {
  background-position: center 36%;
  background-image: url("assets/Retro-500-1000.jpg");
}

.featured-card .product-visual-4 {
  background-position: center 36%;
  background-image: url("assets/Silouette.jpg");
}

.featured-card .product-visual-2{
 background-position: center 46%;
  background-image: url("assets/Fouette.jpg");
}

.featured-card .product-visual-5 {
  background-position: center 46%;
  background-image: url("assets/classic-quadro.jpg");
}

.featured-card .product-visual-3 {
background-image: url("assets/Camellia.jpg");
 background-position: center 56%;
}
.featured-card .product-visual-6 {
  background-position: center 56%;
  background-image: url("assets/avangard.jpg");
}

.category-visual::before,
.product-visual::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.38);
}

.category-visual::after,
.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: 9px;
  height: 65%;
  transform: translateX(-50%);
  border-radius: 99px;
  background: linear-gradient(180deg, #d8ba85, #aa7b3f);
  box-shadow: -52px 0 0 #b58b51, 52px 0 0 #b58b51;
}

.category-visual-2::after,
.product-visual-2::after,
.product-visual-4::after,
.product-visual-6::after {
  background: linear-gradient(180deg, #6f7882, #222f3c);
  box-shadow: -52px 0 0 #6f7882, 52px 0 0 #6f7882;
}

.category-visual-3::after,
.product-visual-3::after,
.product-visual-5::after {
  background: linear-gradient(180deg, #ece5d9, #b8b0a2);
  box-shadow: -52px 0 0 #ece5d9, 52px 0 0 #ece5d9;
}

.card-tag {
  display: inline-flex;
  margin-top: 0.85rem;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.69rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #745e3d;
  background: #f2e6d2;
  border: 1px solid rgba(195, 154, 95, 0.45);
}

.category-card .card-tag,
.featured-card .card-tag {
  margin: 0;
  position: absolute;
  left: 1rem;
  top: calc(clamp(220px, 19vw, 280px) - 42px);
  z-index: 3;
  background: rgba(242, 230, 210, 0.88);
  border-color: rgba(195, 154, 95, 0.5);
}

.category-card h3,
.featured-card h3 {
  margin: 0.9rem 1rem 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.38;
  letter-spacing: 0;
  color: #1f2430;
}

.category-card p,
.featured-card p {
  margin: 0.72rem 1rem 0;
  color: #4b5663;
  font-size: 0.93rem;
  line-height: 1.5;
}

.category-card .card-link {
  margin: auto 1rem 0;
  align-self: flex-end;
  text-align: right;
  color: #387dda;
}

.category-card .card-link:hover,
.category-card .card-link:focus-visible {
  color: #24313f;
}

.featured-card .card-link {
  margin: 1.35rem 1rem 0;
  align-self: flex-start;
  text-align: left;
  justify-content: flex-start;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 40px;
  font-size: 0.83rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
}

.featured-card .card-link:hover,
.featured-card .card-link:focus-visible {
  background: #387dda;
  border-color: #387dda;
  color: #f4f8ff;
}

.where-card h3,
.where-route h3,
.why-card h3,
.about-point h3,
.faq-question {
  margin-top: 0.72rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.38;
}

.where-card p,
.where-route p,
.why-card p {
  margin-top: 0.5rem;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.45;
}

.where-route h3 {
  margin-top: 0;
}

.card-link {
  display: inline-flex;
  margin-top: 0.9rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand);
}

.card-link:hover,
.card-link:focus-visible {
  color: #405d80;
}

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

.featured-store-wrap {
  margin: 1.2rem 0 0;
  display: flex;
  justify-content: center;
}

.featured-store-btn {
  width: calc((100% - 2rem) / 3);
  max-width: 100%;
  background: #dcc09a;
  border-color: #dcc09a;
  color: #1c3146;
  box-shadow: 0 8px 20px rgba(18, 25, 33, 0.08);
  text-align: center;
}

.featured-store-btn:hover,
.featured-store-btn:focus-visible {
  background: #1c3146;
  border-color: #1c3146;
  color: #ffffff;
}

#featured.section {
  padding-bottom: clamp(0.7rem, 1.2vw, 1.1rem);
}

.where-section {
  background: transparent;
}

.where-shell {
  border: 1px solid rgba(214, 201, 178, 0.82);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f7f2e9 0%, #f1e9dd 100%);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 2.7vw, 1.8rem);
}

.where-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  align-items: stretch;
}

.where-intro {
  padding-right: clamp(1.1rem, 2.4vw, 2.2rem);
  border-right: 1px solid rgba(34, 33, 31, 0.48);
}

.where-panel {
  padding-inline: clamp(0.55rem, 1.1vw, 0.9rem);
}

.where-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.where-route {
  min-width: 0;
  padding: 0 clamp(0.55rem, 1.1vw, 0.9rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: start;
}

.where-route + .where-route {
  border-left: 1px solid rgba(34, 33, 31, 0.2);
}

.where-route-cta {
  margin-top: 1rem;
  align-self: flex-start;
}

.where-route-cta span {
  font-size: 1.1em;
  line-height: 1;
}

.where-support {
  margin-top: 1.6rem;
  padding-inline: clamp(0.55rem, 1.1vw, 0.9rem);
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.where-support a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.why-card {
  position: relative;
  min-height: auto;
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 243, 237, 0.84) 0%,
    rgba(247, 243, 237, 0.92) 58%,
    rgba(247, 243, 237, 0.96) 100%
  );
  z-index: 0;
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-card-1,
.why-card-2,
.why-card-3,
.why-card-4,
.why-card-5,
.why-card-6 {
  background-image: url("assets/design.jpg");
}

.why-card-2 {
  background-image: url("assets/materiale.jpg");
}

.why-card-3 {
  background-image: url("assets/confor.jpg");
}

.why-card-4 {
  background-image: url("assets/abordare.jpg");
}

.why-card-5 {
  background-image: url("assets/europe.jpg");
}

.why-card-6 {
  background-image: url("assets/solutii.jpg");
}

.icon-dot {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f3e9dc;
  color: #6d5430;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-dot img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.about-section {
  color: #efe8da;
}

.about-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr;
  align-items: start;
  padding: clamp(1.3rem, 2.8vw, 2rem);
  padding-bottom: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid #273951;
  background:
    linear-gradient(160deg, rgba(16, 29, 42, 0.9) 0%, rgba(31, 51, 72, 0.9) 100%),
    radial-gradient(circle at 0% 0%, rgba(65, 95, 125, 0.45), transparent 40%),
    url("assets/building.jpg");
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: var(--shadow-card);
}

.about-grid h2 {
  color: #f7f3eb;
}

.about-grid .section-text {
  color: #d5c9b5;
  max-width: none;
}

.about-values {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-value {
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(195, 173, 140, 0.32);
  background: rgba(19, 34, 50, 0.7);
}

.about-value-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: #f3e9dc;
}

.about-value-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.about-value h3 {
  margin: 0.7rem 0 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.34;
  color: #f3ebdd;
}

.about-value p {
  margin: 0.5rem 0 0;
  color: #d5c9b5;
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-values-note {
  position: relative;
  margin: 1.15rem auto 0;
  padding: 0.95rem 0 0;
  max-width: 980px;
  color: #f7f3eb;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.34;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
}

.about-values-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, #dcc09a 18%, #f3e9dc 50%, #dcc09a 82%, transparent 100%);
}

.about-grid .about-panel {
  padding: 1rem;
  border: 1px solid rgba(195, 173, 140, 0.32);
  background: linear-gradient(180deg, rgba(32, 52, 75, 0.8), rgba(30, 49, 71, 0.85));
  box-shadow: none;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.about-point {
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  border: 1px solid rgba(195, 173, 140, 0.32);
  background: rgba(19, 34, 50, 0.74);
}

.about-point h3 {
  margin-top: 0.45rem;
  font-size: 0.93rem;
  color: #f3ebdd;
}

.about-point span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d9bf90;
  font-weight: 700;
}

.about-story {
  margin-top: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid rgba(195, 173, 140, 0.32);
  background: rgba(19, 34, 50, 0.6);
  color: #d5c9b5;
  font-size: 0.95rem;
}

.faq-shell {
  padding: clamp(1.2rem, 2.7vw, 1.8rem);
}

.faq-list {
  margin-top: 1rem;
  border-top: 1px solid rgba(213, 199, 174, 0.8);
}

.faq-item {
  border-bottom: 1px solid rgba(213, 199, 174, 0.8);
}

.faq-question {
  appearance: none;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  color: #7e6c55;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "?";
}

.faq-answer {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer.open {
  max-height: 220px;
  padding-bottom: 1rem;
}

.faq-answer p {
  color: var(--text-soft);
}

.contact-section {
  color: #f4eee2;
}

.contact-grid {
  display: block;
  padding: clamp(1.2rem, 2.9vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #1e3147;
  background:
    radial-gradient(circle at 95% 2%, rgba(229, 202, 155, 0.2), transparent 37%),
    linear-gradient(170deg, #122032 0%, #1f354b 100%);
}

.contact-grid h2 {
  color: #fbf5eb;
}

.contact-grid .section-text,
.contact-note,
.contact-secondary-text {
  max-width: none;
  color: #d7c8b4;
}

.contact-note {
  margin-top: 0.8rem;
}

.contact-form-cta {
  width: min(390px, 100%);
  margin-top: 1.25rem;
  background: #dcc09a;
  border-color: #dcc09a;
  color: #1c3146;
  box-shadow: 0 8px 20px rgba(18, 25, 33, 0.08);
  text-align: center;
}

.contact-form-cta:hover,
.contact-form-cta:focus-visible {
  background: #3b7dde;
  border-color: #3b7dde;
  color: #ffffff;
}

.contact-secondary-text {
  margin-top: 1.2rem;
}

.direct-contacts {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.direct-contacts > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: #f8f3ea;
  text-decoration: none;
  padding: 0.65rem 0.85rem;
  font-size: 0.91rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.messenger-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.messenger-link {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3e9dc;
}

.messenger-link img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.messenger-link:hover,
.messenger-link:focus-visible {
  background: #dcc09a;
}

.site-footer {
  border-top: 1px solid rgba(214, 199, 174, 0.8);
  background: rgba(244, 238, 228, 0.9);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  align-items: start;
}

.footer-logo {
  width: 130px;
}

.footer-grid p {
  margin-top: 0.7rem;
  color: #5d5347;
  font-size: 0.9rem;
}

.footer-support {
  font-size: 0.8rem;
  color: #7e7160;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-meta {
  display: grid;
  gap: 0.55rem;
}

.footer-meta a {
  text-decoration: none;
  color: #5e564a;
  font-size: 0.9rem;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--text);
}

.footer-legal {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.4rem;
}

.mobile-sticky-cta {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(460px, calc(100% - 2rem));
  border-radius: var(--radius-md);
  border: 1px solid rgba(208, 190, 161, 0.95);
  background: rgba(254, 250, 244, 0.98);
  box-shadow: 0 24px 60px rgba(20, 18, 16, 0.18);
  padding: 1rem;
}

.cookie-banner p {
  color: #5d5346;
  font-size: 0.85rem;
}

.cookie-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.no-script {
  margin: 0;
  padding: 0.65rem 1rem;
  text-align: center;
  background: #fff0ef;
  color: #6d2d24;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.legal-body {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.66), transparent 52%),
    #f7f2e9;
}

.legal-shell {
  width: min(860px, calc(100% - 2.2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.legal-header {
  margin-bottom: 1rem;
}

.legal-header a {
  color: #5e5244;
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-card {
  border: 1px solid rgba(213, 197, 171, 0.85);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.legal-card h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.legal-card h2 {
  margin-top: 1.4rem;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.legal-card p,
.legal-card li {
  margin-top: 0.55rem;
  color: #554a3f;
}

.legal-card ul {
  padding-left: 1.1rem;
  margin: 0.2rem 0 0;
}

@keyframes float-soft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 0.8rem;
  }

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

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

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

  .featured-store-btn {
    width: calc((100% - 1rem) / 2);
  }

  .b2b-card {
    min-height: 0;
  }

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

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav,
  #headerCta,
  .header-controls > .lang-switch {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .split-headline,
  .b2b-layout,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .where-layout {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 360px;
  }

  .top-visual-zone::before {
    top: 0;
    background: url("bg-m.jpg") center top / 100% auto no-repeat;
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: 0.55rem;
  }

  .b2b-card {
    min-height: auto;
  }

  .b2b-card-media {
    min-height: 250px;
  }

  .trust-grid,
  .b2b-grid,
  .about-values,
  .about-points,
  .category-grid,
  .featured-grid,
  .why-grid,
  .where-routes {
    grid-template-columns: 1fr;
  }

  .where-intro {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(34, 33, 31, 0.24);
  }

  .where-panel {
    padding-inline: 0;
  }

  .where-route {
    padding: 0;
  }

  .where-route + .where-route {
    border-left: 0;
    border-top: 1px solid rgba(34, 33, 31, 0.16);
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .where-support {
    padding-inline: 0;
  }

  .featured-store-btn {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: inline-flex;
    position: fixed;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 45;
    justify-content: center;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    background: var(--brand);
    color: var(--ink-inverse);
    box-shadow: 0 16px 36px rgba(17, 31, 47, 0.28);
    font-weight: 800;
  }

  body {
    padding-bottom: 4.6rem;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(1200px, calc(100% - 1.25rem));
  }

  .hero-copy,
  .where-shell,
  .faq-shell,
  .about-panel,
  .b2b-layout,
  .contact-grid {
    border-radius: 20px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  #heroPrimary,
  #heroSecondary {
    width: 100%;
    min-height: 48px;
    padding-block: 0.9rem;
  }

  #heroSecondary .amazon-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    padding: 4px;
  }

  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    width: auto;
  }
}

