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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #3a3a4d 0%, #2a2a3a 50%, #1a1a28 100%);
  color: #e8e4f3;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #f5f0ff;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: #b8a3ff;
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: #e8d4ff;
}

button, .btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #7c5cff;
  background: transparent;
  color: #e8e4f3;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 200ms ease;
  font-weight: 500;
}

button:hover, .btn:hover {
  background: rgba(124, 92, 255, 0.15);
  transform: scale(1.04);
}

button.btn-primary, .btn-primary {
  background: #7c5cff;
  color: #f5f0ff;
  border-color: #7c5cff;
}

button.btn-primary:hover, .btn-primary:hover {
  background: #6a4ce8;
  border-color: #6a4ce8;
}

.navbar {
  background: rgba(42, 42, 58, 0.95);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(124, 92, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e8d4ff;
  text-decoration: none;
}

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

.navbar-nav a {
  color: #e8e4f3;
  transition: color 180ms ease;
}

.navbar-nav a:hover {
  color: #b8a3ff;
}

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(60, 40, 100, 0.7) 0%, rgba(30, 20, 60, 0.8) 100%), url('images/hero-bathroom.jpg') center/cover;
  background-attachment: fixed;
  color: #f5f0ff;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  padding: 2rem;
  z-index: 10;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

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

.section {
  padding: 4rem 0;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-light {
  background: rgba(232, 228, 243, 0.05);
}

.section-dark {
  background: linear-gradient(135deg, rgba(26, 26, 40, 0.8) 0%, rgba(42, 42, 58, 0.9) 100%);
}

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

.point-card {
  background: rgba(124, 92, 255, 0.08);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(124, 92, 255, 0.2);
  transition: all 200ms ease;
}

.point-card:hover {
  background: rgba(124, 92, 255, 0.15);
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.4);
}

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

.tile {
  background: rgba(58, 58, 77, 0.6);
  border: 1px solid rgba(124, 92, 255, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  transition: all 220ms ease;
}

.tile:hover {
  background: rgba(74, 54, 120, 0.7);
  border-color: rgba(124, 92, 255, 0.6);
  transform: scale(1.04);
}

.tile-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: block;
  filter: brightness(0.95) saturate(1.1);
}

.tile h3 {
  margin-bottom: 0.5rem;
  color: #e8d4ff;
}

.tile-desc {
  font-size: 0.95rem;
  color: #d0c8e0;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.tile-subtitle {
  font-size: 0.9rem;
  color: #b8a3ff;
  font-weight: 500;
}

.quick-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: rgba(124, 92, 255, 0.08);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(124, 92, 255, 0.2);
}

.note {
  padding: 1.2rem;
  background: rgba(42, 42, 58, 0.5);
  border-left: 3px solid #7c5cff;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.product-card {
  background: rgba(58, 58, 77, 0.5);
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
  transition: all 220ms ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  background: rgba(74, 54, 120, 0.6);
  border-color: rgba(124, 92, 255, 0.6);
  transform: scale(1.04);
}

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) saturate(1.1);
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(124, 92, 255, 0.15);
  transition: opacity 200ms ease;
}

.product-card:hover .product-image::after {
  opacity: 0;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(124, 92, 255, 0.9);
  color: #f5f0ff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.product-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e8d4ff;
  margin-bottom: 0.5rem;
}

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

.product-desc {
  font-size: 0.95rem;
  color: #d0c8e0;
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.5;
}

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

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

.product-btn {
  padding: 0.8rem 1.2rem;
  background: #7c5cff;
  color: #f5f0ff;
  border: 2px solid #7c5cff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 200ms ease;
  font-weight: 500;
  align-self: flex-start;
}

.product-btn:hover {
  background: #6a4ce8;
  border-color: #6a4ce8;
  transform: scale(1.04);
}

.switcher {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.switcher-btn {
  padding: 0.6rem 1.2rem;
  background: rgba(124, 92, 255, 0.2);
  color: #e8e4f3;
  border: 2px solid rgba(124, 92, 255, 0.4);
  border-radius: 20px;
  cursor: pointer;
  transition: all 180ms ease;
  font-weight: 500;
}

.switcher-btn.active {
  background: #7c5cff;
  border-color: #7c5cff;
  color: #f5f0ff;
}

.switcher-btn:hover {
  border-color: #7c5cff;
  background: rgba(124, 92, 255, 0.3);
}

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

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(124, 92, 255, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(124, 92, 255, 0.2);
}

.faq-question {
  font-weight: 600;
  color: #e8d4ff;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: #d0c8e0;
  line-height: 1.6;
}

.footer {
  background: rgba(26, 26, 40, 0.9);
  border-top: 1px solid rgba(124, 92, 255, 0.2);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-block h4 {
  color: #e8d4ff;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

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

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

.footer-block a {
  color: #b8a3ff;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(124, 92, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: #8a7f99;
  font-size: 0.9rem;
}

.product-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  align-items: start;
}

.product-single-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.95) saturate(1.1);
}

.product-single-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.product-single-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #d0c8e0;
  margin-bottom: 2rem;
}

.product-specs {
  background: rgba(124, 92, 255, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(124, 92, 255, 0.2);
  margin-bottom: 2rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(124, 92, 255, 0.1);
  font-size: 0.95rem;
}

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

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

.spec-value {
  color: #b8a3ff;
}

.product-single-price {
  font-size: 2rem;
  font-weight: 700;
  color: #e8d4ff;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e8d4ff;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: #e8e4f3;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 180ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(124, 92, 255, 0.15);
  border-color: rgba(124, 92, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 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"] {
  margin-top: 0.2rem;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  margin: 0;
  color: #d0c8e0;
  font-weight: 400;
  font-size: 0.95rem;
}

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

.thank-you-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-section p {
  font-size: 1.1rem;
  color: #d0c8e0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    min-height: 350px;
  }

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

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

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

  .hero-cta button {
    width: 100%;
  }

  .navbar-nav {
    gap: 1rem;
  }

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

  .product-single {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  button, .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

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

  .product-price {
    font-size: 1.3rem;
  }
}
