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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafaf8;
  color: #1a1a1a;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo:hover {
  color: #c9a96e;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.95rem;
  transition: color 200ms ease;
}

nav a:hover {
  color: #c9a96e;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.cta-button {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 220ms ease;
  cursor: pointer;
  display: inline-block;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: scale(1.035);
}

.cta-button-outline {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.cta-button-outline:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: scale(1.035);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f5f3f0 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bathroom-scene.jpg') center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: 1rem;
  color: #666666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.essence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.essence-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 220ms ease;
  text-align: center;
}

.essence-card:hover {
  transform: scale(1.035);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.essence-card h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.essence-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tile-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 220ms ease;
  cursor: pointer;
}

.tile-card:hover {
  transform: scale(1.035);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.tile-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.tile-content {
  padding: 1.5rem;
}

.tile-content h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.tile-content p {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.tile-subtitle {
  font-size: 0.85rem;
  color: #c9a96e;
  font-weight: 600;
}

.quick-notes {
  background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.quick-notes h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.note-item {
  padding: 1rem;
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 220ms ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.035);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1a1a1a;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

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

.product-description {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-availability {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.product-price::before {
  content: '';
}

.product-button {
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.product-button:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: scale(1.035);
}

.faq-section {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.faq-item p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
}

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-block h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-block a {
  display: block;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 200ms ease;
}

.footer-block a:hover {
  color: #c9a96e;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.6;
}

.footer-divider {
  border-top: 1px solid #333333;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #999999;
}

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

  .section h2 {
    font-size: 1.7rem;
  }

  nav {
    gap: 1rem;
  }

  .nav-menu {
    display: none;
  }

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

  .cta-button, .cta-button-outline {
    width: 100%;
    text-align: center;
  }

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

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

  .tile-content h3 {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.8rem 0;
  }

  .header-container {
    padding: 0 0.8rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 400px;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero .subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .section-intro {
    font-size: 0.9rem;
  }

  .essence-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tiles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .note-item {
    font-size: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 1.5rem 0.8rem;
  }
}

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-page-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.product-page-content h1 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.product-page-description {
  color: #666666;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.product-specs {
  background: #f9f7f4;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.product-specs h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #666666;
}

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

.spec-label {
  font-weight: 600;
  color: #1a1a1a;
}

.product-page-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.order-button {
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  padding: 1rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms ease;
}

.order-button:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: scale(1.035);
}

@media (max-width: 768px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-page-content h1 {
    font-size: 1.5rem;
  }

  .product-page-price {
    font-size: 1.4rem;
  }
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

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

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-group a {
  color: #c9a96e;
  text-decoration: none;
  transition: color 200ms ease;
}

.checkbox-group a:hover {
  color: #1a1a1a;
}

.form-submit {
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  padding: 1rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms ease;
}

.form-submit:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: scale(1.035);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-container h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.back-button {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 220ms ease;
}

.back-button:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: scale(1.035);
}

.legal-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  line-height: 1.8;
  color: #333333;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.legal-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.legal-content strong {
  color: #1a1a1a;
}

#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 10000;
  display: none;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

#consent-banner.active {
  display: block;
}

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

.consent-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-text a {
  color: #c9a96e;
  text-decoration: none;
}

.consent-text a:hover {
  text-decoration: underline;
}

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

.consent-accept {
  background-color: #ffffff;
  color: #1a1a1a;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.consent-accept:hover {
  transform: scale(1.05);
}

.consent-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.consent-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

  .consent-buttons {
    width: 100%;
  }

  .consent-accept,
  .consent-reject {
    flex: 1;
  }
}
