:root {
  --bg: #f8f5ff;
  --surface: #ffffff;
  --surface-2: #f0eeff;
  --text: #2d2a4a;
  --muted: #7a7390;
  --line: #ddd8f5;
  --brand: #ff8fab;
  --brand-2: #7ec8e3;
  --brand-3: #98d4bb;
  --shadow: 0 18px 46px rgba(139, 123, 255, 0.14);
  --shadow-sm: 0 8px 20px rgba(139, 123, 255, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #ffffff 8%, var(--bg) 58%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(248, 245, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 5px rgba(255, 143, 171, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #a89cc8;
  transition: color 220ms ease;
}

.nav-links a:hover {
  color: #2d2a4a;
}

.nav-links .nav-cta {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: all 180ms ease;
  user-select: none;
}

.lang-btn:hover:not(.is-active) {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.lang-btn.is-active {
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 143, 171, 0.35);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  cursor: pointer;
}

.hero {
  min-height: 93vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/img/firenze.jpg") center / cover no-repeat;
}

.hero-placeholder {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  border: 1px dashed rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  padding: 0.5rem 0.75rem;
  color: #fff;
  background: rgba(139, 123, 255, 0.45);
  font-size: 0.8rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 42, 74, 0.45), rgba(30, 25, 55, 0.7));
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  color: #ffffff;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #ffb8d0;
  font-weight: 600;
}

h1,
h2 {
  font-family: "DM Sans", sans-serif;
  line-height: 1.1;
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
}

.lead {
  color: #f0ecff;
  max-width: 58ch;
  margin: 0 auto;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(110deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}

.btn-outline:hover {
  background: var(--surface-2);
}

.section {
  padding: 3.4rem 0;
}

.section-head {
  margin-bottom: 1.15rem;
}

.section-copy {
  max-width: 72ch;
  color: var(--muted);
}

.split-card {
  background: linear-gradient(145deg, #ffffff, #f0eeff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.split-copy {
  padding: 0.5rem;
}

.split-copy p {
  color: var(--muted);
}

.split-image {
  min-height: 280px;
  border-radius: 14px;
  background: linear-gradient(120deg, #ffd6e7, #c5eeff);
  background-repeat: no-repeat;
  background-position: center;

  border: 1px dashed rgba(111, 118, 194, 0.45);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.split-image-about {
  position: relative;
  overflow: hidden;
  border: none;
}

.split-image-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/about.jpeg") center / cover no-repeat;
  opacity: 0.8;
  border-radius: inherit;
}

.split-image-polimoda {
  min-height: 280px;
  border-radius: 14px;
  background: linear-gradient(120deg, #ffd6e7, #c5eeff);
  background-repeat: no-repeat;
  background-position: center;
  /* Responsive: the image will be 50% of the card width,
     but never smaller than 150px and never larger than 300px */
  background-size: clamp(150px, 50%, 300px), auto;

  /*border: 1px dashed rgba(111, 118, 194, 0.45);*/
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;

  @media (max-width: 480px) {
    .split-image {
      min-height: 200px;
      background-size: 70%, auto;
      /* Proportionally larger on mobile */
    }
  }

}

.split-image-polimoda:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 0.96;
}

.product-grid {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1rem;
}

.product-card {
  position: relative;
  isolation: isolate;
  flex: 1 1 0;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(139, 123, 255, 0.18);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.card-one {
  background: url("assets/img/dress_on_chair.jpg") center / cover no-repeat;
}

.card-two {
  background: url("assets/img/bags.jpeg") center / cover no-repeat;
}

.card-three {
  background: url("assets/img/boxes.jpeg") center / cover no-repeat;
}

.card-four {
  background: url("assets/img/labels.jpg") center / cover no-repeat;
}


.card-five {
  background: url("assets/img/prato.jpg") center / cover no-repeat;
}

.card-six {
  background: url("assets/img/smm.png") center / cover no-repeat;
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(80, 60, 110, 0.65), rgba(80, 60, 110, 0.15));
}

.product-content {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
}

.product-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.product-content p {
  margin: 0;
  color: #f0ecff;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow);
}

.reasons-list,
.page-list,
.page-ol {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.reasons-list li,
.page-list li,
.page-ol li {
  margin-bottom: 0.7rem;
}

.reasons-list li:last-child,
.page-list li:last-child,
.page-ol li:last-child {
  margin-bottom: 0;
}

#advantages .reasons-list {
  list-style-type: "✓ ";
  padding-left: 1.4rem;
}

#advantages .reasons-list li::marker {
  color: var(--brand);
  font-size: 1.1em;
  font-weight: bold;
}

.steps-list {
  list-style-type: decimal;
  margin: 1.2rem 0 1.8rem;
  padding-left: 1.5rem;
}

.steps-list li {
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.steps-list li:last-child {
  margin-bottom: 0;
}

.steps-list li::marker {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.15em;
}

.steps-list li p,
.steps-list p {
  font-weight: 400;
  font-size: 0.96rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
  line-height: 1.6;
}

.contact-wrap {
  background: linear-gradient(145deg, #ffffff, #f0eeff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: #6a5f8a;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 143, 171, 0.45);
  outline-offset: 1px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f0eeff;
}

.footer-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9a93b0;
  font-size: 0.88rem;
  gap: 1rem;
}

.page-inner {
  padding: 2.5rem 0 4rem;
}

.page-inner .breadcrumb {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-inner .breadcrumb a {
  color: var(--brand);
}

.page-inner .breadcrumb a:hover {
  text-decoration: underline;
}

.page-inner h1 {
  margin-top: 0;
}

.page-inner .lead-block {
  max-width: 65ch;
  color: var(--muted);
}

.page-subtitle {
  margin: -0.35rem 0 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 52ch;
}

.page-prose {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 1rem;
}

.page-prose:last-child {
  margin-bottom: 0;
}

.page-prose--narrow {
  max-width: 62ch;
}

.page-intro {
  margin-bottom: 0.15rem;
}

.page-intro .eyebrow+h1 {
  margin-top: 0.25rem;
}

.page-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.page-figure figcaption {
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface-2);
}

.page-visual {
  display: block;
  width: 100%;
  border-radius: inherit;
}

.page-figure .page-visual {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.page-figure--tall .page-visual {
  aspect-ratio: 4 / 5;
}

.page-figure--compact .page-visual {
  aspect-ratio: 21 / 8;
  max-height: 200px;
}

.page-hero-strip {
  margin: 0 0 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-hero-strip .page-visual {
  aspect-ratio: 21 / 9;
  min-height: 180px;
}

.page-footer-visual {
  margin-top: 2.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.page-footer-visual .page-visual {
  aspect-ratio: 18 / 7;
  min-height: 120px;
}

.page-card .page-visual {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.page-card .page-visual:last-child {
  margin-bottom: 0;
}

.page-zigzag__visual .page-visual {
  aspect-ratio: 5 / 4;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.page-visual--pink {
  background: linear-gradient(140deg, #ffd6e7, #ffb8d0);
}

.page-visual--aqua {
  background: linear-gradient(140deg, #c5eeff, #a8d8f0);
}

.page-visual--green {
  background: linear-gradient(140deg, #d4f9e8, #a8e6cf);
}

.page-visual--lilac {
  background: linear-gradient(140deg, #f9e2ff, #d4a8f0);
}

.page-visual--yellow {
  background: linear-gradient(140deg, #fff3b8, #ffeaa0);
}

.page-visual--peach {
  background: linear-gradient(140deg, #ffd6b2, #ffbfa0);
}

.page-visual--lavender {
  background: linear-gradient(135deg, #e8e0ff, #ffd6e7);
}

.page-visual--sky {
  background: linear-gradient(135deg, #c5eeff, #d4f9e8);
}

.page-visual--mint {
  background: linear-gradient(135deg, #d4f9e8, #c5eeff);
}

.page-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.page-section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--text);
}

.page-ol {
  list-style: decimal;
}

.page-kpis {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-kpi {
  flex: 1 1 200px;
  text-align: center;
  padding: 1.2rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #ffffff, var(--surface-2));
}

.page-kpi strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.page-kpi span {
  font-size: 0.88rem;
  color: var(--muted);
}

.page-spec {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 0.75rem 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.page-spec dt {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
}

.page-spec dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.page-stack {
  margin-top: 2rem;
}

.page-split {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.page-split__body h2,
.page-split__body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  color: var(--text);
}

.page-split--reverse {
  direction: rtl;
}

.page-split--reverse>* {
  direction: ltr;
}

.page-columns {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.page-column {
  flex: 1 1 280px;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff, var(--surface-2));
}

.page-column h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.page-column p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-asymmetric {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.35fr minmax(220px, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

.page-asymmetric__side .page-figure {
  position: sticky;
  top: 92px;
}

.page-asymmetric h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
}

.page-asymmetric h3:first-child {
  margin-top: 0;
}

.page-cards {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-card {
  flex: 1 1 calc(33.333% - 0.67rem);
  min-width: min(100%, 240px);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 1rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.page-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--text);
}

.page-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}


.page-zigzag {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-zigzag__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.page-zigzag__row:nth-child(even) {
  direction: rtl;
}

.page-zigzag__row:nth-child(even)>* {
  direction: ltr;
}

.page-zigzag__copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--text);
}

.page-zigzag__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-zigzag__copy .reasons-list,
.page-zigzag__copy ul {
  margin: 0;
  padding-left: 1.5rem;
  font-size: 1.22rem;
  line-height: 1.65;
}

.page-zigzag__copy .reasons-list li,
.page-zigzag__copy ul li {
  margin-bottom: 1.15rem;
  font-size: 1.22rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-zigzag__copy .reasons-list li:last-child,
.page-zigzag__copy ul li:last-child {
  margin-bottom: 0;
}

.page-steps {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.page-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #ffffff, var(--surface-2));
}

.page-step__num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  flex-shrink: 0;
}

.page-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--text);
}

.page-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border-left: 4px solid var(--brand-2);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  aspect-ratio: 3 / 4;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.info-card-image {
  width: 100px;
  height: 100px;
  min-height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  margin-bottom: 1.5rem;
  border: 2px solid var(--line);
  flex-shrink: 0;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 920px) {
  .split-card {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .page-split,
  .page-columns,
  .page-asymmetric,
  .page-cards,
  .page-zigzag__row {
    grid-template-columns: 1fr;
  }

  .page-split--reverse {
    direction: ltr;
  }

  .page-zigzag__row:nth-child(even) {
    direction: ltr;
  }

  .page-asymmetric__side .page-figure {
    position: static;
  }

  .page-spec {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    position: absolute;
    top: 74px;
    right: 1.2rem;
    background: #f8f5ff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem;
    width: min(240px, 80vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

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

  .product-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    text-align: center;
    padding: 0.8rem 0;
  }
}

@media (max-width: 480px) {
  .lang-btn {
    padding: 0.25rem 0.42rem;
    font-size: 0.68rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .brand {
    font-size: 0.92rem;
    gap: 0.45rem;
  }
}

font-size: 0.92rem;
gap: 0.45rem;
}
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: var(--brand);
  transform: translateY(-2px);
}