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

:root {
  --primary-pink: #f87596;
  --primary-peach: #ffaa7e;
  --soft-white: #fdf9f7;
  --text-dark: #3d2c2a;
  --accent-green: #7cb77f;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(180deg, var(--soft-white) 0%, #fef5f3 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

/* HEADER */
.header-organic {
  background: var(--soft-white);
  border-bottom: 2px solid var(--primary-pink);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(248, 117, 150, 0.1);
}

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

.logo-organic {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
}

.nav-organic {
  display: flex;
  gap: 2rem;
}

.nav-organic a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.btn-order {
  background: var(--primary-pink);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-order:hover {
  background: var(--primary-peach);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(248, 117, 150, 0.3);
}

/* HERO */
.hero-organic {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-desc {
  font-size: 1.1rem;
  color: #6b5552;
  line-height: 1.8;
}

.btn-cta-flower {
  background: var(--primary-pink);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 25px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.btn-cta-flower:hover {
  background: var(--primary-peach);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(248, 117, 150, 0.4);
}

.hero-visual-organic {
  position: relative;
  height: 400px;
}

.flower-decoration {
  position: absolute;
  font-size: 4rem;
  opacity: 0.7;
  animation: drift 5s ease-in-out infinite;
}

.flower-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.flower-2 {
  top: 30%;
  right: 15%;
  animation-delay: 1.5s;
}

.flower-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.flower-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(5deg); }
}

/* FEATURES */
.features-organic {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card-organic {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(248, 117, 150, 0.08);
  transition: all 0.3s;
}

.feature-card-organic:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(248, 117, 150, 0.15);
}

.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
}

.feature-card-organic h3 {
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature-card-organic p {
  color: #8b7b78;
  font-size: 0.95rem;
}

/* PRODUCTS */
.products-organic {
  padding: 4rem 2rem;
  background: white;
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.products-header p {
  color: #8b7b78;
  font-size: 1rem;
}

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

.product-flower {
  background: var(--soft-white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-flower:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(248, 117, 150, 0.15);
}

.product-image-organic {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(248, 117, 150, 0.1) 0%, rgba(255, 170, 126, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder {
  font-size: 5rem;
  opacity: 0.6;
}

.product-flower h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.product-desc {
  padding: 0 1.5rem 1rem;
  color: #8b7b78;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-price {
  padding: 0 1.5rem 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.btn-small-flower {
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem;
  background: var(--primary-pink);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-small-flower:hover {
  background: var(--primary-peach);
  transform: translateY(-2px);
}

/* ABOUT */
.about-organic {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fff3f1 0%, #fdf9f7 100%);
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.1rem;
  color: #6b5552;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem 0 3rem;
}

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

.stat-flower {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--text-dark);
  font-weight: 600;
}

/* CONTACT */
.contact-organic {
  padding: 4rem 2rem;
  background: white;
}

.contact-card-organic {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item-flower {
  padding: 2rem;
  background: var(--soft-white);
  border-radius: 15px;
  border-left: 3px solid var(--primary-pink);
}

.contact-item-flower h3 {
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.contact-item-flower p {
  color: #8b7b78;
  line-height: 1.7;
}

.contact-item-flower a {
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item-flower a:hover {
  color: var(--primary-peach);
}

/* MODAL */
.modal-flower {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content-flower {
  background: var(--soft-white);
  max-width: 500px;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  animation: slideUp 0.3s;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-content-flower h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-content-flower p {
  color: #8b7b78;
  margin-bottom: 1.5rem;
}

.modal-content-flower form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-content-flower input,
.modal-content-flower select,
.modal-content-flower textarea {
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.modal-content-flower input::placeholder {
  color: #aaa;
}

.btn-submit-flower {
  background: var(--primary-pink);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 15px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-flower:hover {
  background: var(--primary-peach);
  transform: translateY(-2px);
}

/* FOOTER */
.footer-organic {
  background: var(--text-dark);
  color: white;
  padding: 3rem 2rem 1rem;
}

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

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

  .nav-organic {
    display: none;
  }

  .hero-organic {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

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

  .hero-visual-organic {
    height: 250px;
  }
}
