:root {
  --color-primary: #8B2346;
  --color-secondary: #D4A574;
  --color-accent: #F8C8D4;
  --color-cream: #F5E6D3;
  --color-light: #FDF5F0;
  --color-dark: #2D1F1F;
  --color-text: #3D2929;
  --color-muted: #7A6565;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Nunito', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  --shadow-sm: 0 0.125rem 0.25rem rgba(45, 31, 31, 0.08);
  --shadow-md: 0 0.25rem 0.75rem rgba(45, 31, 31, 0.1);
  --shadow-lg: 0 0.5rem 1.5rem rgba(45, 31, 31, 0.12);
  --shadow-xl: 0 1rem 2rem rgba(45, 31, 31, 0.15);
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: var(--space-md); }

ul, ol { padding-left: var(--space-lg); }

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-light);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-cream);
  color: var(--color-primary);
  border: 0.0625rem solid var(--color-secondary);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-light);
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-cream) 100%);
  overflow-x: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-width: 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-secondary);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: var(--color-primary);
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.25rem, 0.25rem);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 18rem;
  height: 100vh;
  background: var(--color-light);
  padding: var(--space-3xl) var(--space-lg);
  transition: right var(--transition-slow);
  z-index: 1000;
  box-shadow: var(--shadow-xl);
}

.main-nav.active {
  right: 0;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 31, 31, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-list a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--color-text);
  border-bottom: 0.0625rem solid var(--color-cream);
  transition: all var(--transition-fast);
}

.nav-list a:hover {
  color: var(--color-primary);
  padding-left: var(--space-sm);
}

.hero {
  padding: var(--space-2xl) 0;
  background: linear-gradient(160deg, rgba(245, 230, 211, 0.75) 0%, rgba(253, 245, 240, 0.6) 50%, rgba(248, 200, 212, 0.75) 100%), url('../visuals/bg-imag-1.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: var(--color-accent);
  opacity: 0.2;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.hero h1 {
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
}

.hero p {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-curved {
  background: var(--color-cream);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--space-lg));
  position: relative;
}

.section-diagonal {
  background: linear-gradient(175deg, var(--color-light) 0%, var(--color-cream) 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  padding-top: var(--space-3xl);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  color: var(--color-muted);
  max-width: 32rem;
  margin: 0 auto;
}

.card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.card-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-md);
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.floating-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.floating-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.floating-block h2,
.floating-block h3 {
  color: var(--color-light);
}

.contact-section {
  background: linear-gradient(145deg, var(--color-cream) 0%, var(--color-light) 100%);
  padding: var(--space-2xl) 0;
}

.contact-wrapper {
  display: grid;
  gap: var(--space-xl);
}

.contact-info {
  padding: var(--space-lg);
  background: var(--color-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 0.0625rem solid var(--color-cream);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.contact-item p {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0;
}

.contact-form {
  background: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 0.0625rem solid var(--color-cream);
  border-radius: var(--radius-md);
  background: var(--color-light);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.125rem rgba(139, 35, 70, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--color-primary);
}

.form-checkbox label {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin: 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 15rem;
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--color-cream);
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--color-cream);
  opacity: 0.6;
}

.policy-content {
  padding: var(--space-xl) 0;
}

.policy-content h1 {
  margin-bottom: var(--space-lg);
}

.policy-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
}

.policy-content p,
.policy-content ul {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-md);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: 0.8rem;
  margin: 0;
}

.cookie-content a {
  color: var(--color-accent);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btn {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.cookie-accept {
  background: var(--color-primary);
  color: var(--color-light);
}

.cookie-decline {
  background: transparent;
  color: var(--color-light);
  border: 0.0625rem solid var(--color-light);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content h1 {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(145deg, var(--color-cream) 0%, var(--color-light) 100%);
}

.thankyou-content {
  max-width: 28rem;
}

.thankyou-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-lg);
  background: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.categories-grid {
  display: grid;
  gap: var(--space-md);
}

.category-card {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 0.0625rem solid transparent;
}

.category-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto var(--space-md);
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
}

.bundle-card {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.bundle-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-light);
  padding: var(--space-md);
  text-align: center;
}

.bundle-header h3 {
  color: var(--color-light);
  margin-bottom: var(--space-xs);
}

.bundle-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.bundle-features {
  padding: var(--space-md);
  flex-grow: 1;
}

.bundle-features ul {
  list-style: none;
  padding: 0;
}

.bundle-features li {
  padding: var(--space-xs) 0;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bundle-features li i {
  color: var(--color-primary);
}

.about-block {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-muted);
}

@media (min-width: 36rem) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .hero h1 { font-size: 2.25rem; }
  
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  
  .contact-wrapper { grid-template-columns: repeat(2, 1fr); }
  
  .cookie-content {
    flex-direction: row;
    text-align: left;
  }
  
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  
  .about-block { grid-template-columns: 1fr 1.2fr; }
}

@media (min-width: 48rem) {
  body { font-size: 0.95rem; }
  
  h1 { font-size: 2.5rem; }
  
  .hero { padding: var(--space-3xl) 0; }
  .hero h1 { font-size: 2.75rem; }
  
  .section { padding: var(--space-3xl) 0; }
  
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  
  .nav-toggle { display: none; }
  
  .main-nav {
    position: static;
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  
  .nav-list {
    flex-direction: row;
    gap: var(--space-lg);
    justify-content: flex-end;
  }
  
  .nav-list a {
    padding: var(--space-xs) 0;
    border-bottom: none;
    font-size: 0.85rem;
  }
  
  .nav-list a:hover {
    padding-left: 0;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 64rem) {
  .hero h1 { font-size: 3rem; }
}
