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

:root {
  --bg-ivory: #f9f7f4;
  --text-dark: #1a1513;
  --accent-rose: #8b5a6e;
  --accent-beige: #d9cec1;
  --highlight-gold: #c9a961;
  --dark-night: #2a241f;
  --border-light: #ede7e0;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--bg-ivory);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: var(--accent-rose);
  text-decoration: none;
  transition: all 200ms ease;
}

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

header {
  background-color: var(--bg-ivory);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 0;
}

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

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

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

nav {
  display: none;
}

nav a {
  margin: 0 1.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.btn-catalog {
  background-color: var(--accent-rose);
  color: white;
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 200ms ease;
  border-radius: 2px;
}

.btn-catalog:hover {
  background-color: var(--text-dark);
  transform: scale(1.04);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 200ms ease;
  border-radius: 2px;
}

.btn-outline:hover {
  background-color: rgba(139, 90, 110, 0.1);
  color: var(--accent-rose);
  border-color: var(--accent-rose);
  transform: scale(1.04);
}

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

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, rgba(249, 247, 244, 0.95) 0%, rgba(217, 206, 193, 0.1) 100%);
  padding: 3rem 2rem;
  border-radius: 4px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: -1;
  border-radius: 4px;
}

.hero-content {
  flex: 1;
  z-index: 2;
  min-width: 0;
}

.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--accent-rose);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero-product {
  flex: 1;
  background-color: white;
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 220ms ease;
  cursor: pointer;
}

.hero-product:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.hero-product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-price {
  font-size: 1.4rem;
  color: var(--accent-rose);
  font-weight: 700;
}

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

.tile {
  background: linear-gradient(135deg, white 0%, rgba(217, 206, 193, 0.2) 100%);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  transition: all 220ms ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.05), transparent);
  pointer-events: none;
}

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

.tile h3 {
  color: var(--accent-rose);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.tile-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.tile-subtitle {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.quick-notes {
  background-color: var(--dark-night);
  color: var(--accent-beige);
  padding: 2.5rem;
  border-radius: 4px;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.quick-notes h3 {
  grid-column: 1 / -1;
  color: var(--accent-beige);
  margin-bottom: 1.5rem;
}

.note-item {
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.product-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  transition: all 220ms ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--bg-ivory);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

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

.product-info {
  padding: 1.5rem;
}

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

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

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

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

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

.btn-contact {
  background-color: var(--accent-rose);
  color: white;
  width: 100%;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 2px;
  transition: all 200ms ease;
}

.btn-contact:hover {
  background-color: var(--text-dark);
  transform: scale(1.02);
}

.section-intro {
  text-align: center;
  margin: 3rem 0;
}

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

.section-intro-text {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.accordion {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--accent-beige);
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 200ms ease;
}

.accordion-header:hover {
  background-color: var(--accent-rose);
  color: white;
}

.accordion-toggle {
  font-size: 1.2rem;
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: white;
  color: #666;
  line-height: 1.7;
}

.accordion.active .accordion-content {
  display: block;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--text-dark) 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 4px;
  margin: 3rem 0;
}

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

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
  background-color: transparent;
}

.cta-section .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
}

footer {
  background-color: var(--dark-night);
  color: var(--accent-beige);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
  color: var(--highlight-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer-section a {
  color: var(--accent-beige);
  transition: all 200ms ease;
}

.footer-section a:hover {
  color: var(--highlight-gold);
}

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

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 1.5rem;
  }

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

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

  .hero-product {
    width: 100%;
  }

  nav {
    display: none;
  }

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

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

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

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

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

.intro-section {
  background: linear-gradient(135deg, rgba(249, 247, 244, 0.8) 0%, rgba(217, 206, 193, 0.1) 100%);
  padding: 3rem 2rem;
  border-radius: 4px;
  margin: 3rem 0;
}

.intro-section h2 {
  color: var(--accent-rose);
  margin-bottom: 1.5rem;
}

.guide-block {
  background-color: white;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-rose);
  border-radius: 2px;
}

.guide-block h3 {
  color: var(--accent-rose);
  margin-bottom: 1rem;
}

.guide-block ul, .guide-block ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.guide-block li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

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

.product-detail-image {
  width: 100%;
}

.product-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-specs {
  background-color: white;
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  margin-top: 1.5rem;
}

.product-specs h4 {
  color: var(--accent-rose);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

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

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

.spec-value {
  color: #666;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-night);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-consent.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--highlight-gold);
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 2px;
  transition: all 200ms ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--accent-rose);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--highlight-gold);
}

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

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

@media (max-width: 768px) {
  .cookie-consent.active {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
