:root {
  --peach: #FFB5A7;
  --lilac: #C8A2C8;
  --soft-pink: #FFD4E5;
  --light-purple: #E0BBE4;
  --cream: #FFF5F7;
  --white: #FFFFFF;
  --dark: #2D2D2D;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-full: 50%;
  
  --shadow-sm: 0 0.25rem 1rem rgba(200, 162, 200, 0.1);
  --shadow-md: 0 0.5rem 2rem rgba(200, 162, 200, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(200, 162, 200, 0.2);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--peach) 0%, var(--soft-pink) 50%, var(--lilac) 100%);
  background-attachment: fixed;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.nav-active {
  overflow: hidden;
}

p {
  margin-bottom: var(--space-sm);
}

strong {
  font-weight: 600;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 181, 167, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 162, 200, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 212, 229, 0.2) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

h1:first-child,
h2:first-child {
  margin-top: 0;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-md); }
h6 { font-size: var(--font-size-base); }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.glass-card p {
  margin-bottom: var(--space-sm);
}

.glass-card p:last-child {
  margin-bottom: 0;
}

.glass-card h3,
.glass-card h4 {
  margin-bottom: var(--space-sm);
}

.glass-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.container > h1,
.container > h2 {
  margin-bottom: var(--space-md);
}

.container > p {
  margin-bottom: var(--space-sm);
}

.container > p:last-of-type {
  margin-bottom: var(--space-md);
}

.section {
  padding: var(--space-lg) 0;
  min-height: auto;
}

.section p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.section p:last-child {
  margin-bottom: 0;
}

.section h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.section h2:first-child {
  margin-top: 0;
}

.section > .container > h2:first-child {
  margin-top: 0;
}

.section h3 {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.section h4 {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.section ul,
.section ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.section li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.section li:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--peach), var(--lilac));
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--lilac), var(--peach));
}

.btn {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: var(--transition-normal);
}

header.scrolled {
  position: fixed;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transform: translateY(-100%);
  animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
  to { transform: translateY(0); }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--dark);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

nav a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

nav a:hover {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger span {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--dark);
  transition: var(--transition-fast);
  border-radius: 0.125rem;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
  position: relative;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  margin-bottom: var(--space-md);
  text-shadow: 0 0.25rem 1rem rgba(200, 162, 200, 0.2);
}

.hero p {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-md);
  opacity: 0.9;
  line-height: 1.7;
}

.hero-content {
  margin-bottom: var(--space-md);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  }

.grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: var(--space-md);
}

.section > .container > .grid:first-child {
  margin-top: 0;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
}

.product-card .price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--lilac);
  margin: var(--space-md) 0;
}

.product-card p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  opacity: 0.8;
  line-height: 1.6;
}

.product-card .btn {
  margin-top: var(--space-sm);
}

.contact-section {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-lg) auto;
  max-width: 900px;
  border: 2px solid var(--glass-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

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

.contact-form {
  margin-top: var(--space-md);
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.contact-item i {
  font-size: var(--font-size-lg);
  color: var(--lilac);
  margin-top: 0.25rem;
}

.contact-item div h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item div p {
  font-size: var(--font-size-sm);
  opacity: 0.8;
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

form .form-group:last-of-type {
  margin-bottom: var(--space-xs);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

label {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

input, textarea {
  padding: var(--space-sm);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  font-family: inherit;
  font-size: var(--font-size-sm);
  transition: var(--transition-fast);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--lilac);
  background: rgba(255, 255, 255, 0.7);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: var(--font-size-xs);
  font-weight: 400;
  cursor: pointer;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  margin: var(--space-lg) 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: var(--space-md) 0;
  text-align: center;
  border-top: 2px solid var(--glass-border);
  margin-top: var(--space-xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--font-size-xs);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--lilac);
}

.footer-text {
  font-size: var(--font-size-xs);
  opacity: 0.7;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.popup-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 2rem;
  height: 2rem;
  border: none;
  background: var(--glass-bg);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  transition: var(--transition-fast);
}

.popup-close:hover {
  background: var(--lilac);
  color: var(--white);
}

.popup-content h2 {
  margin-bottom: var(--space-md);
  padding-right: var(--space-lg);
}

.popup-content p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.popup-content p:last-of-type {
  margin-bottom: var(--space-lg);
}

.popup-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.error-content h1 {
  font-size: 6rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--peach), var(--lilac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-content p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.thankyou-content {
  max-width: 600px;
  padding: var(--space-md);
}

.thankyou-content p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.thankyou-content p:last-of-type {
  margin-bottom: var(--space-lg);
}

.thankyou-content h1 {
  margin-bottom: var(--space-md);
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--lilac);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
    --font-size-xl: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }

  .section {
    padding: var(--space-md) 0;
  }

  .grid {
    gap: var(--space-md);
  }

  .contact-section {
    padding: var(--space-lg);
  }

  .burger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--light-purple);
    backdrop-filter: blur(20px);
    padding: var(--space-xl) var(--space-md);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    display: none;
  }

  nav.active {
    right: 0;
    display: flex;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  nav a {
    display: block;
    width: 100%;
    padding: var(--space-sm);
  }

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

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

  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero {
    min-height: 80vh;
  }

  .section {
    padding: var(--space-sm) 0;
  }

  .section p {
    margin-bottom: var(--space-xs);
  }

  .grid {
    gap: var(--space-sm);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
}
