/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {box-sizing: border-box; scroll-behavior: smooth;}
*, *:before, *:after {box-sizing: inherit;}
body {
  background: #fff;
  color: #232A34;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #232A34;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #BA9656;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  color: #232A34;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  margin-bottom: 18px;
  line-height: 1.15;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.25rem; margin-bottom: 14px;}
h4 {font-size: 1.1rem; margin-bottom: 10px;}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
  h3 {font-size: 1.1rem;}
}
p,
ul, ol, li {
  font-size: 1rem;
  color: #232A34;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
}
strong { font-weight: 700; }
.text-section { margin-bottom: 22px; }
.gdpr-note, .privacy-note { font-size: 0.93rem; color: #686970; }
.privacy-note span { color: #686970; font-size: 0.9rem; }

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(35,42,52,0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media(max-width: 768px){
  .section {padding: 28px 6px; margin-bottom: 36px;}
}

/* ---- Flex utility classes (MANDATORY PATTERNS) ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(35,42,52,0.10);
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 100%;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media(max-width: 768px){
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9F9FA;
  border-left: 4px solid #232A34;
  border-radius: 16px;
  color: #232A34;
  font-style: italic;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(35,42,52,0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 10px 12px 0;
  margin-bottom: 20px;
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 1px solid #E6E7EB;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 110;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  min-height: 74px;
}
header a img {
  height: 40px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #232A34;
  position: relative;
  padding: 8px 6px;
  border-radius: 3px;
  transition: color 0.22s, background 0.22s;
}
header nav a:hover, header nav a:focus {
  background: #232A34;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #232A34;
  cursor: pointer;
  padding: 5px 10px 3px 10px;
  transition: color 0.21s;
  z-index: 200;
  border-radius: 7px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #BA9656;
  background: #E6E7EB;
}
@media(max-width: 900px){
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(35, 42, 52, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.83,.01,.3,1.11);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E6E7EB;
  font-size: 2.2rem;
  padding: 16px 18px 10px 18px;
  align-self: flex-end;
  opacity: 0.87;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #BA9656;
  background: rgba(255,255,255,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0 0 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #E6E7EB;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: 4px;
  transition: color 0.19s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232A34;
  color: #BA9656;
}
@media(min-width: 901px){
  .mobile-menu {
    display: none !important;
  }
}

/* --- MAIN & SECTIONS --- */
main {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
}
@media (max-width: 768px){
  main { padding-bottom: 27px; }
  section { margin-bottom: 38px; }
}

/* --- HOME HERO --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
@media(min-width: 1000px){
  .content-wrapper.hero { min-height: 380px; padding-top: 22px; }
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232A34;
  color: #E6E7EB;
  border: none;
  border-radius: 88px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  padding: 14px 36px;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.19s;
  box-shadow: 0 3px 12px rgba(35,42,52,0.10);
  text-transform: uppercase;
}
.cta-button:hover, .cta-button:focus {
  background: #E6E7EB;
  color: #232A34;
  box-shadow: 0 6px 16px rgba(186,150,86,0.13);
}
.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
@media(max-width: 630px){
  .cta-button-group { flex-direction: column; }
}

/* --- FEATURE GRID (homepage icons) --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 28px 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F7F7F9;
  border-radius: 17px;
  box-shadow: 0 1px 8px rgba(35,42,52,0.07);
  padding: 22px 24px;
  min-width: 230px;
  flex: 1 1 200px;
  max-width: 280px;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 36px; height: 36px;
  margin-bottom: 13px;
  filter: grayscale(1);
  opacity: 0.85;
}
@media(max-width: 980px){
  .feature-grid { gap: 18px; justify-content: flex-start; }
  .feature-grid li { min-width: 175px; max-width: 220px; padding: 15px 10px; }
}

/* --- PRODUCT LISTING / COLLEZIONE --- */
.product-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(35,42,52,0.08);
  padding: 22px 19px 19px 19px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.product-card:hover, .product-card:focus-within {
  box-shadow: 0 7px 28px rgba(35,42,52,0.17);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}
.product-card img {
  width: 60px;
  height: 60px;
  filter: grayscale(1);
  margin-bottom: 8px;
}
.product-info h3 { margin-bottom: 8px; font-size: 1.1rem; }
.product-info ul li { margin-bottom: 4px; }
.wishlist-button {
  background: none;
  border: 1px solid #232A34;
  border-radius: 20px;
  color: #232A34;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.96rem;
  padding: 7px 19px;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.22s, border 0.22s, color 0.22s;
  outline: none;
  display: inline-block;
}
.wishlist-button:hover, .wishlist-button:focus {
  background: #232A34;
  color: #fff;
  border-color: #BA9656;
}
.size-guides {
  margin-top: 12px;
  background: #FAFAFC;
  border-radius: 10px;
  padding: 16px 16px 12px 16px;
  font-size: 0.98rem;
  box-shadow: 0 1px 5px rgba(35,42,52,.04);
}
.size-guides h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.filters {
  font-size: 0.96rem;
  color: #686970;
  margin: 10px 0 18px 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

/* --- SERVICES LIST --- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 28px;
}
.services-list li {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #F8F8FA;
  border-radius: 10px;
  padding: 17px 18px 13px 16px;
  box-shadow: 0 2px 6px rgba(35,42,52,0.04);
  margin-bottom: 10px;
}
.services-list h3 { font-size: 1.15rem; margin-bottom: 6px; }

/* --- BENEFITS LIST/OL --- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 16px 0 14px 14px;
  padding-left: 8px;
}
.session-pricing { font-weight: 700; color: #BA9656; font-size: 1.07rem; margin-top: 7px; }

ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
ul { padding-left: 24px; }
ul li, ol li { margin-bottom: 4px; }

/* --- FOUNDER MESSAGE --- */
.founder-message {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  margin: 23px 0;
}
.founder-photo img {
  width: 73px; height: 73px;
  border-radius: 50%;
  border: 3px solid #E6E7EB;
}
@media(max-width: 700px){
  .founder-message {
    flex-direction: column; gap: 12px;
    align-items: flex-start;
  }
  .founder-photo img { width: 60px; height: 60px; }
}

/* --- STORE INFO BLOCKS --- */
.store-info {
  margin: 20px 0 0 0;
  padding: 9px 0 0 0;
}
.store-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* --- MAP EMBED PLACEHOLDER --- */
.map-embed-placeholder {
  width: 100%;
  max-width: 340px;
  height: 180px;
  background: #E6E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-top: 16px;
  overflow: hidden;
}

/* --- FOOTER --- */
footer {
  background: #232A34;
  color: #E6E7EB;
  padding: 38px 0 34px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  width: 50px;
  height: auto;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #E6E7EB;
  font-size: 0.96rem;
  opacity: 0.85;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #BA9656;
  opacity: 1.0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #CED0D7;
  font-size: 0.97rem;
  text-align: right;
}
@media(max-width: 768px){
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .footer-contact { text-align: left; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(35,42,52,0.99);
  color: #E6E7EB;
  width: 100%;
  z-index: 1400;
  padding: 26px 10px 22px 10px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px -6px 22px rgba(35,42,52,0.11);
  transition: transform 0.37s cubic-bezier(.7,.16,.28,1.16), opacity 0.24s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner .cookie-text {
  color: #E6E7EB;
  margin-bottom: 14px;
  text-align: center;
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  padding: 10px 23px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  margin: 0 2px;
}
.cookie-btn.accept {
  background: #BA9656;
  color: #232A34;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus{
  background: #232A34;
  color: #BA9656;
}
.cookie-btn.reject {
  background: transparent;
  color: #E6E7EB;
  border: 1.6px solid #E6E7EB;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E6E7EB;
  color: #232A34;
}
.cookie-btn.settings {
  background: transparent;
  color: #BA9656;
  border: 1.6px solid #BA9656;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #BA9656;
  color: #232A34;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,42,52,0.72);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #232A34;
  border-radius: 21px;
  padding: 40px 32px 32px 32px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 10px 36px rgba(35,42,52,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #232A34;
}
.cookie-modal .cookie-pref-list {
  margin: 16px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-modal .cookie-row label {
  font-size: 1rem;
  cursor: pointer;
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cookie-switch input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
}
.cookie-slider {
  display: inline-block;
  width: 34px; height: 20px;
  border-radius: 20px;
  background: #E6E7EB;
  position: relative;
  transition: background 0.22s;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-slider {
  background: #232A34;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
  box-shadow: 0 1px 4px rgba(35, 42, 52, 0.13);
}
.cookie-switch input[type="checkbox"]:checked + .cookie-slider:before {
  left: 17px;
  background: #BA9656;
}
.cookie-modal .cookie-desc {
  color: #686970;
  font-size: 0.96rem;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 19px; right: 19px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #B0B3B9;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
  padding: 2px 7px 2px 7px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #ECECEC;
  color: #232A34;
}
@media(max-width:500px){
  .cookie-modal { padding: 25px 6px 18px 10px; min-width: 0; }
}

/* --- MISC CLASSES --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}
.privacy-note, .gdpr-note {
  display: block;
  margin-top: 9px;
  color: #86898C;
  font-size: 0.93rem;
}
.cta-button[disabled], .wishlist-button[disabled] {
  opacity: 0.55;
  pointer-events: none;
}
hr {
  border: none;
  border-top: 1px solid #E6E7EB;
  margin: 22px 0;
}
::-webkit-selection {background: #BA9656; color: #fff;}
::selection {background: #BA9656; color: #fff;}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-button, .wishlist-button, .cookie-btn {
  transition: color 0.21s, background 0.21s, box-shadow 0.21s, border 0.21s;
}
.card, .product-card, .testimonial-card, .feature-grid li {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .product-card:hover, .testimonial-card:hover, .feature-grid li:hover {
  filter: brightness(1.04);
  box-shadow: 0 7px 32px rgba(35,42,52,0.13), 0 1px 6px rgba(186,150,86,0.11);
}
@media (max-width: 690px) {
  .section { padding: 20px 0; }
}

/* --- RESPONSIVE LAYOUT FOR FLEX CONTAINERS --- */
@media (max-width: 880px){
  .card-container, .product-list-grid, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 500px) {
  body { font-size: 15px; }
  .cta-button { font-size: 0.93rem; padding: 10px 18px; }
}
