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

:root {
  --pastel-pink: #ffd6e8;
  --pastel-blue: #c8e7f5;
  --pastel-yellow: #fff4c2;
  --pastel-green: #d4f4dd;
  --pastel-purple: #e5d4f7;
  --pastel-peach: #ffd9c0;
  --dark-text: #2d3436;
  --light-text: #636e72;
  --white: #ffffff;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: linear-gradient(
    135deg,
    var(--pastel-pink) 0%,
    var(--pastel-blue) 100%
  );
  padding: 1.2rem 0;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 2rem;
}

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

.logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: var(--pastel-purple);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pastel-purple);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(
    135deg,
    var(--pastel-yellow) 0%,
    var(--pastel-peach) 100%
  );
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url(../visual_gallery/hero.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--pastel-pink);
  border-radius: 50%;
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: var(--pastel-blue);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.hero p {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: var(--pastel-purple);
  color: var(--dark-text);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--dark-text);
}

.features {
  background: var(--pastel-green);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 4rem 1.5rem;
}

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

.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s;
  border: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--pastel-purple);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--pastel-purple);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-family: 'Fredoka', sans-serif;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--light-text);
}

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

.product-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--pastel-pink);
}

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

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--pastel-blue);
}

.product-info {
  padding: 1.3rem;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: 'Fredoka', sans-serif;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

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

.about {
  background: linear-gradient(
    135deg,
    var(--pastel-purple) 0%,
    var(--pastel-pink) 100%
  );
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding: 4rem 1.5rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.contact-section {
  background: var(--pastel-yellow);
  padding: 3rem 1.5rem;
}

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

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 2px solid var(--pastel-blue);
  border-radius: 15px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pastel-purple);
}

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

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

.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-group label {
  font-size: 0.85rem;
  font-weight: 400;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--pastel-purple);
  margin-top: 0.2rem;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--light-text);
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
}

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

footer {
  background: linear-gradient(
    135deg,
    var(--pastel-blue) 0%,
    var(--pastel-green) 100%
  );
  padding: 2rem 1.5rem 1rem;
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  padding-top: 3rem;
}

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

.footer-section h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--dark-text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--pastel-purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  color: var(--light-text);
}

.footer-bottom a {
  color: var(--dark-text);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  border-top: 4px solid var(--pastel-purple);
}

.privacy-popup.show {
  display: block;
}

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

.privacy-content p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--light-text);
}

.privacy-content a {
  color: var(--pastel-purple);
  text-decoration: underline;
}

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

.btn-accept {
  background: var(--pastel-green);
}

.btn-decline {
  background: var(--pastel-pink);
}

.thankyou-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--pastel-pink) 0%,
    var(--pastel-yellow) 50%,
    var(--pastel-blue) 100%
  );
  padding: 2rem 1.5rem;
}

.thankyou-content {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--pastel-green);
  margin-bottom: 1.5rem;
}

.thankyou-content h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thankyou-content p {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.error-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--pastel-purple) 0%,
    var(--pastel-pink) 100%
  );
  padding: 2rem 1.5rem;
}

.error-content {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.error-content h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 5rem;
  color: var(--pastel-purple);
  margin-bottom: 1rem;
}

.error-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.error-content p {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.policy-content h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.policy-content h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--dark-text);
  text-align: left;
}

.policy-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    justify-content: center;
    gap: 1rem;
  }

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

  h2 {
    font-size: 1.6rem;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
  }

  nav a {
    font-size: 0.85rem;
  }

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

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

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .feature-card,
  .product-card {
    padding: 1rem;
  }

  .thankyou-content,
  .error-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  nav ul {
    gap: 0.7rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

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

  section {
    padding: 2rem 1rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}
