/* ===========================================================
  BELLEZZA VICINA – INDUSTRIAL MODERN CSS by Senior CSS Dev
  Style: Industrial Modern — dark, metallic, urban, elegant
  Brand: Bellezza Vicina
  Fonts: Montserrat (Display), Open Sans (Body)
  Colors: #394352 (primary/dark), #D2A374 (secondary/metallic), #F6F3EF (accent/urban light)
  Layouts: STRICT FLEXBOX ONLY (no grid, no columns)
  =========================================================== */
/* ---------- CSS RESET & BASE TYPOGRAPHY ---------- */
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 { scroll-behavior: smooth; }
body {
  background: #272B34;
  color: #F6F3EF;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  min-height: 100vh;
}
img { max-width: 100%; vertical-align: middle; display: block; }
ul, ol { list-style: none; }
a { color: #D2A374; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F6F3EF; text-decoration: underline; }
strong { font-weight: 700; }
hr { border: none; border-top: 1px solid #444852; margin: 32px 0; }

/* =============== FONT LOADING =============== */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700,500,400&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
  font-display: swap;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6F3EF;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

/* =============== CONTAINER & LAYOUT =============== */
.container {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
/* Card & content grids */
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #313842;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(25,27,32,0.13);
  border: 1.5px solid #474C57;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(62,65,71,0.22);
  border-color: #D2A374;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}

/* ===== FLEX LAYOUTS (NO GRID) ===== */
.text-image-section, .feature-list {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-list {
  flex-direction: row;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F6F3EF;
  color: #23262B;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(57,67,82,0.07);
  padding: 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(91, 95, 110, 0.13);
}
.brand-highlights ul, .special-packages ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== HERO & CALLS TO ACTION ===== */
.cta-btn {
  background: linear-gradient(90deg, #D2A374 0%, #b98b56 100%);
  color: #272B34;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  padding: 14px 38px;
  border: none;
  border-radius: 24px;
  margin-top: 10px;
  box-shadow: 0 2px 16px rgba(210,163,116,0.08);
  cursor: pointer;
  transition: background 0.25s, color 0.18s, transform 0.17s, box-shadow 0.22s;
  text-transform: uppercase;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #394352;
  color: #D2A374;
  outline: none;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px rgba(62,65,71,0.18);
}

/* ============ NAVIGATION ============ */
header {
  background: #272B34;
  border-bottom: 1.5px solid #474C57;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0 10px 0;
  position: relative;
  z-index: 10;
}
.logo-link img { height: 48px; }
.main-menu {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-left: 18px;
}
.main-menu li a {
  color: #D2A374;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.17s;
  position: relative;
  padding-bottom: 2px;
}
.main-menu li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #D2A374;
  border-radius: 2px;
  margin-top: 2px;
  transition: width 0.19s;
}
.main-menu li a:hover::after {
  width: 90%;
}
.main-menu li a:hover, .main-menu li a:focus { color: #F6F3EF; }

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #D2A374;
  cursor: pointer;
  position:relative;
  margin-left: 18px;
  z-index: 25;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,43,52, 0.97);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  padding: 24px 28px 0 0;
  font-size: 2.1rem;
  color: #D2A374;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 250;
  transition: color 0.18s, transform 0.13s;
}
.mobile-menu-close:hover { color: #F6F3EF; transform: scale(1.18); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 32px 0 32px;
  gap: 32px;
}
.mobile-nav a {
  display: block;
  color: #D2A374;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 0;
  border-bottom: 1px solid #474C57;
  width: 100%;
  transition: color 0.21s, background 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6F3EF;
  background: #394352;
}

@media (max-width: 980px) {
  .main-menu { gap: 14px; }
  .main-menu li a { font-size: 0.98rem; }
}
@media (max-width: 850px) {
  .main-menu { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 850px) {
  .container { padding: 0 8px; }
  .footer-content, .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}


/* ============== FOOTER ============== */
footer {
  background: #23262B;
  color: #F6F3EF;
  padding-top: 32px;
  padding-bottom: 14px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img { max-height: 56px; margin-bottom:10px; }
.footer-links, .footer-contact, .footer-social {
  color: #D2A374;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.footer-links a {
  color: #D2A374;
  text-decoration: none;
  margin: 0 3px;
  padding: 0 6px;
}
.footer-links a:hover { color: #F6F3EF; text-decoration: underline; }
.footer-contact a { color: #D2A374; text-decoration: underline; }
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social img { filter: grayscale(80%) brightness(1.15); max-height: 26px; transition: filter 0.19s; }
.footer-social img:hover { filter: grayscale(0%) brightness(1.45); }

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ============ TABLES (Listino Prezzi) ============ */
table {
  width: 100%;
  border-collapse: collapse;
  background: #313842;
  border-radius: 10px;
  margin-bottom: 28px;
  overflow: hidden;
}
thead {
  background: #272B34;
  color: #D2A374;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 12px;
}
tbody td {
  padding: 15px 12px;
  color: #F6F3EF;
  font-size: 1rem;
  border-bottom: 1px solid #474C57;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover {
  background: #353B45;
  transition: background 0.14s;
}

/* ================ MISC CONTENT ELEMENTS ================ */
address {
  font-style: normal;
  background: #313842;
  border-left: 4px solid #D2A374;
  border-radius: 7px;
  padding: 22px 24px;
  margin-bottom: 20px;
  color: #F6F3EF;
  box-shadow: 0 2px 10px rgba(41,54,72,0.07);
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #272B34;
  border: 2px dashed #474C57;
  border-radius: 10px;
  min-height: 120px;
  color: #b3b8bb;
  margin-bottom: 16px;
}
.text-section { margin-bottom: 24px; }
.business-hours-info {
  background: #23262B;
  border: 1.5px solid #394352;
  border-radius: 6px;
  padding: 14px 18px;
  color: #D2A374;
  font-size: 1rem;
  margin-top: 14px;
}
.brand-highlights, .special-packages {
  margin-top: 24px;
  background: #313842;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(49,56,66,0.07);
  color: #D2A374;
}
.special-packages h3 { color: #D2A374; }
.special-packages ul li {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ============ RATINGS & REVIEWS ============= */
.ratings-summary {
  background: #F6F3EF;
  color: #23262B;
  border-radius: 10px;
  padding: 18px 26px;
  margin-top: 18px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(210,163,116,0.05);
  font-family: 'Montserrat', Arial, sans-serif;
}
.submit-review {
  background: #23262B;
  color: #D2A374;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.submit-review a { color: #D2A374; }
.submit-review a:hover { text-decoration: underline; }

/* =========== SECTION & CARD FLEX LAYOUTS =========== */
.section { /* For outermost sections: for future flex containers */
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ================ SPACING CLASSES/HELPERS ================ */
.mb-60 { margin-bottom: 60px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }
.py-20 { padding-top: 20px; padding-bottom: 20px; }
.gap-24 { gap: 24px; }
.gap-20 { gap: 20px; }

/* ============= COOKIE CONSENT BANNER & MODAL ============= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2222;
  width: 100vw;
  background: #313842;
  color: #F6F3EF;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 20px 28px 18px 20px;
  box-shadow: 0 -2px 24px rgba(39,43,52,0.10);
  border-top: 2px solid #394352;
  transition: transform 0.28s cubic-bezier(.87,0,.13,1), opacity 0.19s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(100%); }
.cookie-banner-content {
  display: flex; flex-direction: row; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-btn {
  background: #D2A374;
  color: #23262B;
  border: none;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  font-size: 1rem;
  margin-left: 8px;
  margin-bottom: 7px;
  cursor: pointer;
  transition: background 0.2s, color 0.16s, box-shadow 0.22s;
  box-shadow: 0 1px 6px rgba(210,163,116,0.12);
}
.cookie-btn.settings {
  background: none;
  color: #D2A374;
  border: 1.5px solid #D2A374;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #394352;
  color: #D2A374;
  outline: none;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2600;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100dvh;
  background: rgba(39,43,52,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #23262B;
  color: #F6F3EF;
  max-width: 420px;
  width: 96vw;
  border-radius: 18px;
  box-shadow: 0 4px 36px rgba(39,43,52,0.13);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2700;
  animation: cookie-pop-in 0.26s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-pop-in {
  0% { opacity: 0; transform: scale(0.86) translateY(24px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #D2A374;
  font-size: 1.2rem; margin-bottom: 8px; font-weight: 700;
}
.cookie-modal label {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 20px;
  background: #394352;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.17s;
  border: 1.5px solid #D2A374;
}
.cookie-toggle:checked {
  background: #D2A374;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 17px; height: 15px;
  border-radius: 8px;
  background: #F6F3EF;
  transition: transform 0.21s, background 0.14s;
  box-shadow: 0 1px 4px rgba(48,55,67,0.09);
}
.cookie-toggle:checked::before {
  transform: translateX(15px);
  background: #394352;
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 11px;
  margin: 8px 0 14px 0;
}
.cookie-modal-actions {
  display: flex; gap: 18px; margin-top: 14px; justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #D2A374;
  font-size: 1.5rem;
  position: absolute;
  top: 13px; right: 21px;
  cursor: pointer;
  transition: color 0.19s, transform 0.16s;
}
.cookie-modal-close:hover { color: #F6F3EF; transform: scale(1.14); }

/* =========== RESPONSIVE (MOBILE-FIRST) =========== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .container { padding: 0 5px; }
  .section, main > section, .content-wrapper, .footer-content {
    flex-direction: column;
    padding: 24px 8px;
    gap: 16px;
  }
  .footer-logo img { max-height: 38px; }
  .main-nav { flex-direction: row; gap: 10px; }
  .main-menu { display: none; }
  .mobile-menu-toggle { display: block; }
  .testimonial-card, .ratings-summary, .submit-review, .brand-highlights, .special-packages {
    padding: 14px;
    font-size: 1rem;
  }
  .map-placeholder { min-height: 60px; font-size: 0.98rem; }
  .address, address { padding: 14px 8px; }
  .card-content { padding: 12px; }
  .text-image-section, .feature-list, .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }
  table thead th, tbody td { font-size: 0.99rem; padding: 8px 4px; }
  .cookie-modal { max-width: 97vw; padding: 16px 6px 13px 14px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 6px; gap: 12px; }
}

@media (max-width: 400px) {
  h1 { font-size: 1.24rem; }
  .logo-link img { height: 37px; }
  .cta-btn { padding: 8px 15px; font-size: 0.96rem; }
}
/* ====== CUSTOM UTILITIES & MICRO-INTERACTIONS ====== */
::-webkit-scrollbar { width: 12px; background: #23262B; }
::-webkit-scrollbar-thumb { background: #394352; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #D2A374; }

/* Micro-interactions for links */
a, .cta-btn, .main-menu li a, .mobile-nav a {
  transition: color 0.18s, background 0.18s, box-shadow 0.14s, outline 0.17s;
}

/* Accent metallic details */
hr, .special-packages, .brand-highlights, .card, .card-content, address, .cookie-banner {
  border-color: #D2A374 !important;
}

/* FORBIDDEN: no grid, column or absolute for content */
/* Verified: --- NO display:grid, grid-* or column-* present --- */
