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

:root {
  --primary-color: #ff6b9d;
  --secondary-color: #c44569;
  --accent-color: #ffa07a;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --bg-light: #fef5f8;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Comfortaa', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff5f8 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.btn-link:hover {
  gap: 12px;
}

.features {
  padding: 60px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.about-craft {
  padding: 60px 0;
  background: var(--bg-light);
}

.craft-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.craft-text h2 {
  margin-bottom: 20px;
}

.craft-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.craft-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.collection-preview {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.collection-preview h2 {
  margin-bottom: 40px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.collection-item {
  text-align: center;
}

.collection-image {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 15px;
}

.collection-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.collection-item:hover .collection-image img {
  transform: scale(1.05);
}

.collection-item h3 {
  margin-bottom: 10px;
}

.collection-item p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 14px;
}

.testimonials {
  padding: 60px 0;
  background: var(--bg-light);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.stars {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 14px;
}

.testimonial-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.cta-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: var(--bg-light);
}

.page-hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff5f8 100%);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 15px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.products {
  padding: 60px 0;
  background: var(--white);
}

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

.product-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.product-card h3 {
  margin-bottom: 15px;
}

.product-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-features {
  padding: 60px 0;
  background: var(--bg-light);
}

.product-features h2 {
  text-align: center;
  margin-bottom: 40px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-light);
  font-size: 14px;
}

.care-guide {
  padding: 60px 0;
  background: var(--white);
}

.care-guide h2 {
  text-align: center;
  margin-bottom: 40px;
}

.care-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.care-step {
  text-align: center;
  padding: 25px;
}

.care-step i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.care-step h4 {
  margin-bottom: 10px;
}

.care-step p {
  color: var(--text-light);
  font-size: 14px;
}

.gift-benefits {
  padding: 60px 0;
  background: var(--bg-light);
}

.gift-benefits h2 {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 25px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-card h4 {
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 14px;
}

.packaging-info {
  padding: 60px 0;
  background: var(--white);
}

.packaging-info h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

.packaging-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.packaging-item {
  text-align: center;
}

.packaging-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.packaging-item h4 {
  margin-bottom: 10px;
}

.packaging-item p {
  color: var(--text-light);
  font-size: 14px;
}

.contact-section {
  padding: 60px 0;
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.info-item h4 {
  margin-bottom: 5px;
}

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

.contact-form-wrapper h2 {
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary-color);
}

.map-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-cta {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 15px;
}

.contact-cta p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-section,
.error-section {
  padding: 80px 0;
  background: var(--bg-light);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon,
.error-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon i,
.error-icon i {
  font-size: 3rem;
  color: var(--white);
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  padding: 60px 0;
  background: var(--white);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 10px;
}

.policy-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 30px;
}

.policy-content h2 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.policy-content p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 30px 0 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  font-family: 'Comfortaa', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 13px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.8;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

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

.popup-content p {
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.popup-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-accept {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-accept:hover {
  background: var(--secondary-color);
}

.popup-actions a {
  color: var(--white);
  font-size: 13px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: left 0.3s;
  }

  .logo a {
    font-size: 1rem;
  }

  .nav.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

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

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .footer-links {
    align-items: center;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }

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

  .features,
  .about-craft,
  .collection-preview,
  .testimonials,
  .cta-section,
  .products,
  .product-features,
  .care-guide,
  .gift-benefits,
  .packaging-info,
  .contact-section,
  .map-section,
  .contact-cta,
  .policy-section {
    padding: 40px 0;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
