/* Reset leggero */
*,
*::before,
*::after {
  box-sizing: border-box;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22'><circle cx='14' cy='14' r='5.4' fill='%231ED8E6'/></svg>") 14 14, auto !important;
}

:root {
    --site-bg: #E4E4E4;
    --site-text-color-h: #1A1A1A;
    --site-text-color-b: #242727;
    --site-text-color-light: #999;
    --site-text-color-ultralight: #dedede;
    --link-color: #048ea0;
    --link-color-hover: #105862;
    --site-icon-button: #fefefe;
    --wp--style--global--content-size: 1050px;
}

html, body {
  margin: 0;
  padding: 0;
    overflow-x: hidden; 
    overflow-y: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, -system-ui, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #111111;
    overflow-x: hidden; 
    overflow-y: hidden;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.logo-dot {
  color: #0097a7; /* teal */
}

/* NAV */

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: #111111;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: #111111;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* CART */

.cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

.cart-icon {
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -0.45rem;
  right: -0.25rem;
  font-size: 0.65rem;
}

/* HERO */

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
}

.hero-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 40px;
}

/* BUTTONS */

.hero-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: #048ea0;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 151, 167, 0.25);
}

.btn-primary:hover {
  background-color: #007c8a;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 151, 167, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #111111;
  border-color: #111111;
}

.btn-outline:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-1px);
}

.social {
    width: 35px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 16px;
  }

  .main-nav {
    display: none; /* per ora nav semplice: nascosta su mobile */
  }

  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
