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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #f5f1ed;
  background: linear-gradient(135deg, #2a1f3d 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
}

body {
  overflow-x: hidden;
}

a {
  color: #e8b4d4;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #f5c7e3;
}

h1, h2, h3, h4, h5, h6 {
  color: #f5f1ed;
  margin-bottom: 1rem;
}

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

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

header {
  background: rgba(15, 12, 25, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 180, 212, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8b4d4;
  text-decoration: none;
  letter-spacing: 1px;
}

.brand-logo:hover {
  color: #f5c7e3;
}

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

.nav-item a {
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-item a:hover {
  color: #e8b4d4;
}

.nav-btn {
  background: #e8b4d4;
  color: #1a1a2e;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.nav-btn:hover {
  background: #f5c7e3;
  transform: scale(1.04);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(42, 31, 61, 0.8), rgba(26, 26, 46, 0.8)), url('images/hero-banner.jpg') center/cover;
  background-attachment: fixed;
  padding: 6rem 1.5rem;
  text-align: center;
  color: #f5f1ed;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: #e8d7d2;
}

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

.btn {
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.btn-filled {
  background: #e8b4d4;
  color: #1a1a2e;
  border: 2px solid #e8b4d4;
}

.btn-filled:hover {
  background: #f5c7e3;
  border-color: #f5c7e3;
  transform: scale(1.04);
}

.btn-outline {
  background: transparent;
  color: #e8b4d4;
  border: 2px solid #e8b4d4;
}

.btn-outline:hover {
  background: #e8b4d4;
  color: #1a1a2e;
  transform: scale(1.04);
}

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

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

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.05rem;
  color: #e8d7d2;
  line-height: 1.6;
}

.twilight-comfort {
  background: linear-gradient(135deg, rgba(42, 31, 61, 0.5), rgba(26, 26, 46, 0.5));
  padding: 3rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.comfort-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

@media (min-width: 1024px) {
  .comfort-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.comfort-item {
  background: rgba(232, 180, 212, 0.08);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(232, 180, 212, 0.2);
  text-align: center;
}

.comfort-item h4 {
  color: #f5f1ed;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.comfort-item p {
  font-size: 0.85rem;
  color: #e8d7d2;
  line-height: 1.5;
}

.quick-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

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

.tile {
  background: linear-gradient(135deg, rgba(232, 180, 212, 0.1), rgba(26, 26, 46, 0.3));
  border: 1px solid rgba(232, 180, 212, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tile:hover {
  transform: scale(1.04);
  background: linear-gradient(135deg, rgba(232, 180, 212, 0.15), rgba(26, 26, 46, 0.4));
}

.tile-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.9);
}

.tile-content {
  padding: 1.5rem;
}

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

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

.tile-meta {
  font-size: 0.85rem;
  color: #b89bb3;
  font-style: italic;
}

.quick-notes {
  background: rgba(232, 180, 212, 0.05);
  border: 1px solid rgba(232, 180, 212, 0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  margin: 3rem 0;
}

.quick-notes h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

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

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

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

.note-item {
  background: rgba(26, 26, 46, 0.3);
  padding: 1rem;
  border-radius: 4px;
  border-left: 3px solid #e8b4d4;
  font-size: 0.9rem;
  color: #f5f1ed;
}

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

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

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

.ritual-item {
  background: rgba(232, 180, 212, 0.08);
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(232, 180, 212, 0.15);
  font-size: 0.9rem;
  color: #f5f1ed;
  line-height: 1.6;
}

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

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

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

.product-card {
  background: rgba(26, 26, 46, 0.4);
  border: 1px solid rgba(232, 180, 212, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.04);
  background: rgba(26, 26, 46, 0.6);
  border-color: rgba(232, 180, 212, 0.4);
}

.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: rgba(232, 180, 212, 0.15);
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e8b4d4;
  color: #1a1a2e;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  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: #f5f1ed;
  margin-bottom: 0.5rem;
}

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

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

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

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 180, 212, 0.1);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8b4d4;
}

.product-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
}

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

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

.product-detail-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(232, 180, 212, 0.2);
  filter: brightness(0.95);
}

.product-detail-content h1 {
  margin-bottom: 1.5rem;
}

.product-specs {
  background: rgba(232, 180, 212, 0.08);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(232, 180, 212, 0.2);
  margin: 2rem 0;
}

.product-specs h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(232, 180, 212, 0.1);
  font-size: 0.9rem;
}

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

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

.spec-value {
  color: #f5f1ed;
}

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

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

.faq-column {
  background: rgba(232, 180, 212, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(232, 180, 212, 0.15);
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-weight: 600;
  color: #e8b4d4;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

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

footer {
  background: rgba(15, 12, 25, 0.95);
  border-top: 1px solid rgba(232, 180, 212, 0.2);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
}

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

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

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: #e8d7d2;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #e8b4d4;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 180, 212, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #b89bb3;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #b89bb3;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: #e8b4d4;
}

.breadcrumb a:hover {
  color: #f5c7e3;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  margin-bottom: 1.5rem;
}

.about-section p {
  font-size: 0.95rem;
  color: #e8d7d2;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(232, 180, 212, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(232, 180, 212, 0.2);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(232, 180, 212, 0.2);
  border-radius: 4px;
  color: #f5f1ed;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e8b4d4;
  box-shadow: 0 0 0 2px rgba(232, 180, 212, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b89bb3;
}

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

.checkbox-group input {
  margin-top: 0.35rem;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.85rem;
  color: #e8d7d2;
  font-weight: normal;
  line-height: 1.5;
}

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

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

.thank-you p {
  font-size: 1.05rem;
  color: #e8d7d2;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.switcher-btn {
  padding: 0.625rem 1.25rem;
  background: rgba(232, 180, 212, 0.1);
  border: 1px solid rgba(232, 180, 212, 0.3);
  color: #e8d7d2;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.switcher-btn:hover,
.switcher-btn.active {
  background: #e8b4d4;
  color: #1a1a2e;
  border-color: #e8b4d4;
}

.content-block {
  background: rgba(232, 180, 212, 0.05);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(232, 180, 212, 0.15);
  margin-bottom: 1.5rem;
}

.content-block h3 {
  margin-bottom: 0.75rem;
}

.content-block p,
.content-block li {
  font-size: 0.9rem;
  color: #e8d7d2;
  line-height: 1.7;
}

.content-block ul {
  padding-left: 1.5rem;
  margin-top: 0.75rem;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 12, 25, 0.98);
  border-top: 1px solid rgba(232, 180, 212, 0.3);
  padding: 1.5rem;
  z-index: 2000;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent.show {
  display: flex;
}

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

.cookie-text {
  font-size: 0.9rem;
  color: #e8d7d2;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-text a {
  color: #e8b4d4;
}

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

.cookie-btn {
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.cookie-accept {
  background: #e8b4d4;
  color: #1a1a2e;
}

.cookie-accept:hover {
  background: #f5c7e3;
  transform: scale(1.04);
}

.cookie-reject {
  background: transparent;
  color: #e8b4d4;
  border: 1px solid #e8b4d4;
}

.cookie-reject:hover {
  background: #e8b4d4;
  color: #1a1a2e;
}

.info-box {
  background: rgba(232, 180, 212, 0.1);
  border-left: 3px solid #e8b4d4;
  padding: 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.info-box p {
  font-size: 0.9rem;
  color: #f5f1ed;
  line-height: 1.7;
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: 350px;
  }

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

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

  section {
    padding: 2rem 1rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .nav-btn {
    padding: 0.625rem 1rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

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