.language-switcher {
  display: flex;
  gap: 8px;
  background: #ffffff;
  padding: 7px;
  border-radius: 999px;
  border: 1px solid #eee;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.language-switcher button {
  border: 0;
  background: transparent;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: #555;
  transition: 0.25s;
}

.language-switcher button.active,
.language-switcher button:hover {
  background: #dd1f26;
  color: #fff;
}

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

.cart-icon-link {
  width: 48px;
  height: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dd1f26;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(221, 31, 38, 0.22);
  transition: 0.25s;
}

.cart-icon-link:hover {
  transform: translateY(-2px);
}

.cart-icon-link svg {
  width: 23px;
  height: 23px;
  display: block;
}

.cart-badge {
  min-width: 21px;
  height: 21px;
  position: absolute;
  top: -5px;
  right: -5px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  border: 2px solid #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.cart-badge.is-visible {
  display: inline-flex;
}

.site-footer {
  padding: 30px 7%;
  background: linear-gradient(135deg, #fff7f7 0%, #ffffff 48%, #f8f8f8 100%);
  color: #1d1d1f;
  border-top: 1px solid #f0eeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #333;
  text-decoration: none;
}

.nav-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-links a:hover {
  color: #dd1f26;
}

.footer-copy {
  color: #777;
  font-weight: 700;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .language-switcher {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}
