:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --accent-color: #007aff;
  --border-color: #e5e5e5;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: var(--text-color);
  font-family: "Inter", sans-serif;
}

/* Header */
header {
  background: var(--bg-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-size: 1.3rem;
}

/* Nav */
nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  padding-bottom: 20px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);
}

/* Icon buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.icon-btn:hover {
  background: #f0f0f0;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  width: 16px;
  height: 2px;
  background: var(--text-color);
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--text-color);
  position: absolute;
  left: 0;
}

.hamburger span::before {
  top: -5px;
}

.hamburger span::after {
  top: 5px;
}

.tp {
    width: 100%;
    max-width: 1700px;
    display: flex;
    justify-content: flex-end;
    padding: 10px 1rem;
    font-weight: 500;
    justify-self: center;
    text-decoration: underline;
    color: #459bf7;
    cursor: pointer;
}
img.btts {
    WIDTH: 22px;
}
p.comtt {
    width: 100%;
    max-width: 1700px;
    padding: 10px 1rem;
    background: #e9ebff;
    text-align: center;
    font-weight: 300;
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 13px;
}
p.sku {
    font-size: 14px;
    color: rgb(42, 104, 211);
    font-weight: 500;
}
p.titleTxt {
    font-size: 26px;
    font-weight: 800;
    max-width: 800px;
}
.title {
    width: 100%;
    max-width: 1700px;
    padding: 1rem 6rem;
}
.model {
    width: 95%;
    padding: 1rem;
    justify-self: center;
    border: 1px solid #ffffff00;
    border-radius: 8px;
    margin-top: 20px;
      background: #f5f5f7;        /* grigio chiarissimo tipico degli sfondi Apple */
  border-radius: 12px;        /* angoli morbidi */
  padding: 24px;

  /* Ombra Apple‑style: morbida, leggera, quasi impercettibile */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
img.modelclasso {
    width: 4rem;
}
p.optMod {
    color: #312c2c;
}
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .title {
    padding: 1rem 1rem;
}
.tp{
  display:none;
}
}
.titleLeft {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
p.avail {
    font-weight: 600;
}
.mdleft {
    display: flex;
    gap: 20px;
}
p.modTit {
    font-weight: 600;
    font-size: 20PX;
}
p.modCheck {
    color: #0078fa;
    text-decoration: underline;
    cursor: pointer;
}
.lefimgModTT {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (min-width: 768px) {
.header-container {
  padding: 0.75rem 6rem;
}
}