:root {
  --bg-nacre: #f8f5f0;
  --text-anthracite: #3a3a3a;
  --accent-lagune: #4a9fb5;
  --accent-rose: #e8c5d5;
  --highlight-argent: #d4d0c8;
  --dark-nuit: #2a2f3f;
  --light-nuit: #464d63;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-nacre);
  color: var(--text-anthracite);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--accent-lagune);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--accent-rose);
}

button {
  border: 1px solid var(--accent-lagune);
  background: transparent;
  color: var(--accent-lagune);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 180ms ease;
}

button:hover {
  background-color: var(--accent-lagune);
  color: #fff;
  transform: scale(1.035);
}

button.btn-filled {
  background-color: var(--accent-lagune);
  color: #fff;
  border-color: var(--accent-lagune);
}

button.btn-filled:hover {
  background-color: var(--accent-rose);
  border-color: var(--accent-rose);
}

header {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-anthracite);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-anthracite);
  padding: 0;
}

.hero {
  background: linear-gradient(135deg, rgba(248,245,240,0.9), rgba(212,208,200,0.8)), url('images/hero-bathroom-mirror.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  font-size: 2.2rem;
  color: var(--text-anthracite);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-anthracite);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-product {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(74,159,181,0.15);
  transition: all 220ms ease;
  cursor: pointer;
}

.hero-product:hover {
  transform: scale(1.035);
  box-shadow: 0 15px 40px rgba(232,197,213,0.2);
}

.hero-product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.hero-product h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-product .desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.hero-product .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-lagune);
}

.quick-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: -3rem auto 3rem;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .quick-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(232,197,213,0.1));
  border: 1px solid rgba(74,159,181,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 200ms ease;
  cursor: pointer;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74,159,181,0.15);
  border-color: var(--accent-lagune);
}

.tile h3 {
  color: var(--accent-lagune);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.tile p {
  font-size: 0.95rem;
  color: var(--text-anthracite);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.tile-subtitle {
  font-size: 0.85rem;
  color: var(--accent-rose);
  font-weight: 600;
}

.tile img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 1rem;
}

.notes-rapides {
  background: rgba(212,208,200,0.3);
  padding: 2rem 1rem;
  margin: 3rem 0;
}

.notes-rapides-content {
  max-width: 1200px;
  margin: 0 auto;
}

.notes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .notes-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .notes-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.note-item {
  font-size: 0.95rem;
  color: var(--text-anthracite);
  padding-left: 1.5rem;
  position: relative;
}

.note-item:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-lagune);
  font-weight: bold;
}

.products-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 200ms ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.035);
  box-shadow: 0 8px 20px rgba(74,159,181,0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212,208,200,0.2), transparent);
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-rose);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.product-body {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-anthracite);
  margin-bottom: 0.5rem;
}

.product-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.8rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-anthracite);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-availability {
  font-size: 0.85rem;
  color: var(--accent-lagune);
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-lagune);
  margin-bottom: 1rem;
}

.product-button {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--accent-lagune);
  background: transparent;
  color: var(--accent-lagune);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 180ms ease;
}

.product-button:hover {
  background-color: var(--accent-lagune);
  color: #fff;
  transform: scale(1.035);
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  color: var(--text-anthracite);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #666;
  font-size: 1rem;
}

.faq-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(74,159,181,0.15);
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem;
  background: rgba(74,159,181,0.05);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-anthracite);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 180ms ease;
}

.faq-question:hover {
  background: rgba(74,159,181,0.1);
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--accent-lagune);
  transition: transform 200ms ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  padding: 0 1.2rem;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1.2rem;
}

.faq-answer p {
  color: var(--text-anthracite);
  line-height: 1.6;
}

footer {
  background: var(--dark-nuit);
  color: #fff;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-block h3 {
  color: var(--highlight-argent);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-block ul {
  list-style: none;
}

.footer-block li {
  margin-bottom: 0.5rem;
}

.footer-block a {
  color: #ddd;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.footer-block a:hover {
  color: var(--accent-lagune);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--accent-lagune);
}

.breadcrumb a:hover {
  color: var(--accent-rose);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.product-detail-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(74,159,181,0.15);
}

.product-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-content h1 {
  color: var(--text-anthracite);
  margin-bottom: 1rem;
}

.product-specs {
  background: rgba(212,208,200,0.2);
  border-left: 4px solid var(--accent-lagune);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.product-specs h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--accent-lagune);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(74,159,181,0.1);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--text-anthracite);
}

.spec-value {
  color: #666;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-lagune), var(--accent-rose));
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-anthracite);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 180ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-lagune);
  box-shadow: 0 0 0 3px rgba(74,159,181,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  font-size: 0.95rem;
}

.checkbox-group a {
  color: var(--accent-lagune);
}

.thank-you {
  text-align: center;
  padding: 4rem 1rem;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you h1 {
  color: var(--accent-lagune);
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.1rem;
  color: var(--text-anthracite);
  margin-bottom: 2rem;
}

.content-page {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.content-page h1 {
  margin-bottom: 2rem;
  color: var(--text-anthracite);
}

.content-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-lagune);
}

.content-page h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-anthracite);
}

.content-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-anthracite);
}

.content-page ul,
.content-page ol {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-anthracite);
}

.content-page li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.content-page table th,
.content-page table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: left;
}

.content-page table th {
  background: rgba(74,159,181,0.1);
  font-weight: 600;
  color: var(--accent-lagune);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-nuit);
  color: #fff;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 300ms ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .cookie-content {
    grid-template-columns: 1fr;
  }
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-lagune);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 180ms ease;
}

.cookie-buttons button:hover {
  background: #fff;
  color: var(--dark-nuit);
}

.cookie-buttons button.accept {
  background: var(--accent-lagune);
  border-color: var(--accent-lagune);
}

.cookie-buttons button.accept:hover {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
}

.switch-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.switch-buttons button {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--accent-lagune);
  background: transparent;
  color: var(--accent-lagune);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 180ms ease;
}

.switch-buttons button.active {
  background: var(--accent-lagune);
  color: #fff;
}

.switch-buttons button:hover {
  transform: scale(1.035);
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

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

  .hero-text p {
    font-size: 1rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }
}
