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

:root {
  --primary: #8B4789;
  --secondary: #D4A5D4;
  --accent: #F4A460;
  --dark: #2C1B2E;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #FFFFFF;
  font-size: 14px;
}

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

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.1rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 12px 20px;
  z-index: 9999;
  display: none;
}

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

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

.privacy-content p {
  flex: 1;
  margin: 0;
  font-size: 12px;
}

.privacy-actions {
  display: flex;
  gap: 8px;
}

.btn-accept, .btn-learn {
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--accent);
  color: white;
}

.btn-accept:hover {
  background: #E89450;
}

.btn-learn {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-learn:hover {
  background: white;
  color: var(--dark);
}

.header {
  background: white;
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
}

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

.logo {
  font-family: 'Comfortaa', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

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

.nav-link {
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hero-modern {
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: radial-gradient(circle at 20% 50%, var(--dark) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, var(--accent) 0%, transparent 50%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 35px;
}

.hero-text {
  color: white;
}

.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  opacity: 0.95;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-product, .btn-outline {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

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

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

.btn-product {
  background: var(--primary);
  color: white;
  width: 100%;
}

.btn-product:hover {
  background: var(--dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-box {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro {
  padding: 45px 0;
  background: #F9F5F6;
}

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

.intro-content h2 {
  margin-bottom: 18px;
  color: var(--dark);
}

.intro-content p {
  font-size: 14px;
  line-height: 1.8;
}

.services {
  padding: 45px 0;
  background: white;
}

.services h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-box {
  background: #F9F5F6;
  padding: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 71, 137, 0.15);
}

.service-number {
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.service-box h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.service-box p {
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}

.service-link:hover {
  color: var(--accent);
}

.featured {
  padding: 45px 0;
  background: white;
}

.featured-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.featured-image img {
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.featured-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.featured-content h2 {
  margin-bottom: 18px;
  color: var(--dark);
}

.featured-content p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.products-preview {
  padding: 45px 0;
  background: #F9F5F6;
}

.products-preview h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}

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

.product-preview {
  background: white;
  padding: 25px;
  border-radius: 8px;
  position: relative;
}

.product-tag, .product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-preview h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.product-preview p {
  font-size: 13px;
  margin-bottom: 18px;
  line-height: 1.6;
}

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

.price, .product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.quick-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}

.quick-link:hover {
  color: var(--accent);
}

.testimonials {
  padding: 45px 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}

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

.testimonial-card {
  background: #F9F5F6;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.testimonial-card p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 13px;
  margin-bottom: 3px;
}

.testimonial-author span {
  font-size: 12px;
  color: #666;
}

.location-info {
  padding: 45px 0;
  background: #F9F5F6;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.location-text h2 {
  margin-bottom: 18px;
  color: var(--dark);
}

.location-text > p {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.7;
}

.location-details {
  display: grid;
  gap: 18px;
  margin-bottom: 25px;
}

.detail-item strong {
  display: block;
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 600;
}

.detail-item span {
  font-size: 13px;
  line-height: 1.6;
}

.location-map iframe {
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 15px;
  color: white;
}

.newsletter-content p {
  margin-bottom: 25px;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products {
  padding: 45px 0;
  background: white;
}

.products h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}

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

.product-card {
  background: #F9F5F6;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.product-card p {
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.6;
}

.product-price {
  margin-bottom: 18px;
}

.delivery-info, .wedding-services {
  padding: 45px 0;
  background: #F9F5F6;
}

.delivery-info h2, .wedding-services h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}

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

.info-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
}

.info-number {
  background: var(--secondary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.info-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.info-card p {
  font-size: 13px;
  line-height: 1.7;
}

.wedding-process {
  padding: 45px 0;
  background: white;
}

.wedding-process h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}

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

.process-step {
  text-align: center;
  padding: 25px;
  background: #F9F5F6;
  border-radius: 8px;
}

.step-number {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.process-step p {
  font-size: 13px;
  line-height: 1.6;
}

.contact-section {
  padding: 45px 0;
  background: white;
}

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

.contact-info h2, .contact-form-wrapper h2 {
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-form-wrapper > p {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
}

.info-item {
  margin-bottom: 25px;
}

.info-item h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

.info-item p {
  font-size: 13px;
  line-height: 1.7;
}

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

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

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
}

.form-group input, .form-group textarea {
  padding: 10px;
  border: 2px solid #E8D5E8;
  border-radius: 5px;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  transition: all 0.3s ease;
}

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

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-top: 2px;
}

.map-section {
  padding: 45px 0;
  background: #F9F5F6;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.map-section > .container > p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 13px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-info {
  padding: 45px 0;
  background: white;
}

.team-info h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark);
}

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

.team-member {
  background: #F9F5F6;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.team-member h3 {
  margin-bottom: 5px;
  color: var(--dark);
}

.team-member span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 13px;
  line-height: 1.6;
}

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

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

.thankyou-content h1, .error-content h1 {
  margin-bottom: 18px;
  color: var(--dark);
}

.thankyou-content p, .error-content p {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.7;
}

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

.policy-section {
  padding: 45px 0;
  background: white;
}

.policy-section h1 {
  margin-bottom: 10px;
  color: var(--dark);
}

.policy-date {
  color: #666;
  font-size: 12px;
  margin-bottom: 25px;
  font-style: italic;
}

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

.policy-content h2 {
  margin-top: 28px;
  margin-bottom: 14px;
  color: var(--dark);
}

.policy-content h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.policy-content p {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.8;
}

.footer {
  background: var(--dark);
  color: white;
  padding: 20px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-info p {
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  color: white;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 15px 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

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

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-box {
    padding: 14px 10px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

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

  .services-grid, .products-slider, .products-grid, .info-grid, .process-wrapper, .testimonials-grid, .team-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: center;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero-modern {
    padding: 50px 0 35px;
  }

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

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-box {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 10px;
  }

  .intro, .services, .featured, .products-preview, .testimonials, .location-info, .products, .delivery-info, .wedding-services, .wedding-process, .contact-section, .map-section, .team-info {
    padding: 35px 0;
  }

  .newsletter {
    padding: 40px 0;
  }

  .btn-primary, .btn-secondary, .btn-product, .btn-outline {
    padding: 10px 22px;
    font-size: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

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

  .thankyou-actions a, .error-actions a {
    width: 100%;
  }
}

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

  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

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

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

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

  .stat-box {
    padding: 10px;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .btn-primary, .btn-secondary, .btn-product, .btn-outline {
    padding: 9px 18px;
    font-size: 11px;
  }
}
