:root {
  --color-cream: #F3E2D4;
  --color-lavender: #C5B0CD;
  --color-blue: #415E72;
  --color-navy: #17313E;

  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Work Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 3px rgba(23, 49, 62, 0.1);
  --shadow-md: 0 4px 6px rgba(23, 49, 62, 0.1);
  --shadow-lg: 0 10px 15px rgba(23, 49, 62, 0.1);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--color-navy);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-lavender);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.header {
  position: relative;
  background-color: rgba(243, 226, 212, 0.95);
  transition: var(--transition-normal);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo {
  display: block;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}

@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav {
  display: flex;
  align-items: center;
}

.nav__menu {
  display: flex;
  list-style: none;
  z-index: 102;
  position: relative;
}

.nav__item {
  margin-left: var(--space-md);
}

.nav__link {
  color: var(--color-navy);
  font-weight: 500;
  padding: var(--space-xs);
}

.nav__link:hover {
  color: var(--color-lavender);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  transition: var(--transition-fast);
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-navy);
  border-radius: var(--radius-sm);
  opacity: 1;
  transform: rotate(0deg);
  transition: var(--transition-fast);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 8px;
}

.hamburger span:nth-child(4) {
  top: 16px;
}

.menu-open .hamburger span:nth-child(1),
.menu-open .hamburger span:nth-child(4) {
  width: 0%;
  opacity: 0;
}

.menu-open .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 20%;
  width: 100%;
  height: 100vh;
  background-color: rgba(243, 226, 212, 0.98);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity var(--transition-normal), right var(--transition-normal);
  opacity: 0;

}

.menu-open .mobile-nav {
  right: 20%;
  opacity: 1;
}

.mobile-menu {
  list-style: none;
  text-align: center;
}

.mobile-menu__item {
  margin-bottom: var(--space-md);
}

.mobile-menu__link {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-navy);
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--color-cream);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  max-width: 500px;
  color: var(--color-blue);
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn--primary {
  background-color: var(--color-blue);
  color: white;
}

.btn--primary:hover {
  background-color: var(--color-navy);
  color: white;
}

.btn--outline {
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
}

.btn--outline:hover {
  background-color: var(--color-blue);
  color: white;
}

.section {
  padding: var(--space-lg) 0;
}

.section__header {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
}

.section__subtitle {
  color: var(--color-blue);
  font-size: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.product-card__content {
  padding: var(--space-md);
}

.product-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.product-card__price {
  font-size: 1.25rem;
  color: var(--color-blue);
  margin-bottom: var(--space-sm);
}

.product-card__description {
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.feature {
  text-align: center;
  padding: var(--space-md);
}

.feature__icon {
  font-size: 2.5rem;
  color: var(--color-lavender);
  margin-bottom: var(--space-sm);
}

.feature__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.contact-section {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info__item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.contact-info__icon {
  font-size: 1.5rem;
  color: var(--color-lavender);
  margin-right: var(--space-sm);
}

.contact-form {
  display: grid;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
  z-index: 103;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(65, 94, 114, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-lavender);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  z-index: 104;
  position: relative;
}

.form-checkbox input {
  margin-right: var(--space-xs);
  margin-top: 0.3rem;
}

.map-container {
  height: 400px;
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

.footer {
  background-color: var(--color-navy);
  color: white;
  padding: var(--space-md) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.footer-column {
  margin-bottom: var(--space-md);
}

.footer-column h4 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--space-xs);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-menu a:hover {
  color: white;
}

.copyright {
  text-align: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.cookies-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  z-index: 99;
  display: none;
}

.cookies-consent.active {
  display: block;
}

.cookies-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookies-text {
  flex: 1;
  min-width: 200px;
}

.cookies-buttons {
  display: flex;
  gap: var(--space-xs);
}

.about-section,
.products-section,
.faq-section {
  background-color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(65, 94, 114, 0.1);
}

.faq-question {
  padding: var(--space-sm) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-question i {
  transition: var(--transition-fast);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-question.active+.faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-sm);
}

.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  text-align: center;
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-lavender);
  margin-bottom: var(--space-sm);
}

.error-title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.thank-you-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  text-align: center;
  background-color: white;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-lavender);
  margin-bottom: var(--space-md);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__image {
    width: 100%;
    opacity: 0.3;
  }

  .hero__inner {
    width: 100%;
  }

  .section__title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  :root {
    --space-lg: 3rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn var(--transition-normal);
}

.blinds-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg,
      rgba(197, 176, 205, 0.1) 1px,
      transparent 1px);
  background-size: 20px 100%;
  z-index: 0;
  opacity: 0.5;
}

.light-beam {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(243, 226, 212, 0),
      rgba(197, 176, 205, 0.2),
      rgba(243, 226, 212, 0));
  transform: skewX(-45deg);
  z-index: 0;
}