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

:root {
  --bg-pearlized: #f5f0eb;
  --text-ebony: #2b2b2b;
  --accent-blue: #a8d5e2;
  --accent-gray: #d4e8e8;
  --highlight-rose: #f5e6e8;
  --dark-night: #1a1515;
  --border-color: #e8dfd8;
  --footer-bg: #2b2b2b;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-ebony);
  background-color: var(--bg-pearlized);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-ebony);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text-ebony);
}

.grelisse-header {
  background-color: var(--bg-pearlized);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.grelisse-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-ebony);
  letter-spacing: 1px;
}

.grelisse-logo:hover {
  color: var(--accent-blue);
}

.nav-link {
  color: var(--text-ebony) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent-blue);
}

.btn-primary-filled {
  background-color: var(--accent-blue);
  color: var(--text-ebony);
  border: 2px solid var(--accent-blue);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.22s ease;
  border-radius: 4px;
}

.btn-primary-filled:hover {
  background-color: transparent;
  color: var(--accent-blue);
  transform: scale(1.04);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-ebony);
  border: 2px solid var(--text-ebony);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.22s ease;
  border-radius: 4px;
}

.btn-outline:hover {
  background-color: var(--text-ebony);
  color: var(--bg-pearlized);
  transform: scale(1.04);
}

.btn-primary-outline {
  background-color: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  border-radius: 3px;
}

.btn-primary-outline:hover {
  background-color: var(--accent-blue);
  color: var(--text-ebony);
  transform: scale(1.04);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: var(--text-ebony);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-ebony);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

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

.featured-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.22s ease;
}

.featured-card:hover {
  box-shadow: 0 8px 20px rgba(168, 213, 226, 0.15);
  transform: translateY(-4px);
}

.featured-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.featured-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

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

.featured-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.aura-glow {
  position: relative;
  overflow: hidden;
}

.aura-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(168, 213, 226, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.quick-tiles-section {
  padding: 4rem 0;
  background-color: var(--bg-pearlized);
}

.tile-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.22s ease;
  cursor: pointer;
  height: 100%;
}

.tile-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(168, 213, 226, 0.15);
}

.tile-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tile-content {
  padding: 1.5rem;
}

.tile-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.tile-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.tile-content small {
  display: block;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.85rem;
}

.pearl-droplet {
  position: relative;
}

.pearl-droplet::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 230, 232, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.notes-rapides-section {
  padding: 3rem 0;
  background-color: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.note-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--highlight-rose);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.note-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.note-desc {
  display: block;
  color: #666;
  font-size: 0.9rem;
}

.eclat-quotidien-section {
  padding: 4rem 0;
  background-color: var(--bg-pearlized);
}

.eclat-quotidien-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.eclat-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.eclat-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.eclat-item h4 {
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.eclat-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.top-products-section {
  padding: 4rem 0;
  background-color: white;
}

.top-products-section h2 {
  margin-bottom: 2.5rem;
}

.mini-guide-item {
  background-color: var(--highlight-rose);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--accent-blue);
}

.mini-guide-item strong {
  display: block;
  color: var(--text-ebony);
  margin-bottom: 0.5rem;
}

.mini-guide-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.mini-guide-item em {
  display: block;
  color: var(--accent-blue);
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5rem;
}

.products-grid-section {
  padding: 4rem 0;
  background-color: var(--bg-pearlized);
}

.products-grid-section h2 {
  margin-bottom: 2.5rem;
  text-align: center;
}

.product-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(168, 213, 226, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 230, 232, 0.15);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-blue);
  color: var(--text-ebony);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

.product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.product-avail {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-ebony);
}

.faq-section {
  padding: 4rem 0;
  background-color: white;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-card {
  background-color: var(--highlight-rose);
  border: none;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: none;
}

.faq-card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}

.faq-card .btn-link {
  color: var(--text-ebony);
  font-weight: 600;
  text-decoration: none;
  padding: 1rem;
  display: block;
  text-align: left;
  width: 100%;
}

.faq-card .btn-link:hover {
  color: var(--accent-blue);
}

.faq-card .card-body {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-section {
  padding: 4rem 0;
  background-color: var(--accent-blue);
  color: var(--text-ebony);
  text-align: center;
}

.cta-section h2 {
  color: var(--text-ebony);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.grelisse-footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.grelisse-footer h5 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.grelisse-footer p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-brand p:first-of-type {
  margin-top: 0.75rem;
}

.grelisse-footer a {
  color: #ccc;
  transition: color 0.2s ease;
}

.grelisse-footer a:hover {
  color: var(--accent-blue);
}

.grelisse-footer ul {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  color: #999;
  font-size: 0.9rem;
}

.footer-bottom hr {
  border-color: #444;
  margin-bottom: 1rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-night);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content h5 {
  color: white;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-options {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cookie-checkbox {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 0.9rem;
  cursor: pointer;
}

.cookie-checkbox input {
  margin-right: 0.5rem;
  cursor: pointer;
}

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

.catalog-section {
  padding: 3rem 0;
}

.catalog-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #666;
}

.catalog-switcher {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: white;
  color: var(--text-ebony);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--text-ebony);
}

.aura-selection-section {
  padding: 3rem 0;
  background-color: white;
  border-top: 1px solid var(--border-color);
}

.aura-selection-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.selection-item {
  background-color: var(--highlight-rose);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--accent-blue);
}

.selection-item h4 {
  color: var(--text-ebony);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.selection-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-section {
  padding: 3rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.about-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-content li {
  margin-bottom: 0.5rem;
}

.contact-section {
  padding: 3rem 0;
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #666;
}

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

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 0.2rem rgba(168, 213, 226, 0.25);
}

.contact-info {
  background-color: var(--highlight-rose);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h5 {
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 4rem 0;
  text-align: center;
}

.thank-you-message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.thank-you-detail {
  color: #999;
  margin-bottom: 2rem;
}

.legal-section {
  padding: 3rem 0;
}

.legal-section h1 {
  margin-bottom: 1rem;
}

.last-updated {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  display: block;
}

.legal-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: #666;
}

.product-detail-section {
  padding: 3rem 0;
}

.product-detail-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-detail-badge {
  display: inline-block;
  background-color: var(--highlight-rose);
  color: var(--text-ebony);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-detail-description {
  margin-bottom: 2rem;
}

.product-detail-description p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.product-detail-specs {
  background-color: var(--highlight-rose);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.product-detail-specs h3 {
  margin-bottom: 1rem;
}

.product-detail-specs ul {
  list-style: none;
}

.product-detail-specs li {
  padding: 0.5rem 0;
  color: #666;
  font-size: 0.95rem;
}

.product-detail-price {
  background-color: var(--bg-pearlized);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.product-detail-price .price-tag {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.product-detail-price .availability {
  color: #666;
  margin: 0;
}

.catalog-section {
  padding: 3rem 0;
}

.products-catalog {
  margin-top: 2rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .hero-featured {
    margin-top: 2rem;
  }

  .cookie-content {
    padding: 1rem;
  }

  .cookie-options {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .product-detail-image {
    height: 300px;
  }
}
