/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #fffdf9;
  color: #2d2a24;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* top banner */
.top-banner {
  background-color: #f9e6e6;
  text-align: center;
  padding: 8px;
  font-size: 0.85rem;
  color: #a75d6e;
  letter-spacing: 0.3px;
}

/* header */
.site-header {
  background: #fffdf9;
  border-bottom: 1px solid #f0e2dd;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 253, 249, 0.95);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  color: #4a3a2e;
  letter-spacing: -0.5px;
}

.logo .dot {
  color: #d47a7a;
  font-size: 1.8rem;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #5a4a3a;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #d47a7a;
}

.header-icons {
  display: flex;
  gap: 1.2rem;
}

.header-icons a {
  color: #3d352c;
  font-size: 1.2rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #4a3a2e;
}

/* hero section */
.hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: #fceaea;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a75d6e;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #2b241e;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #5a5048;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}

.btn-primary {
  background: #d47a7a;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #b85e5e;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid #d47a7a;
  color: #d47a7a;
  background: transparent;
}

.btn-outline:hover {
  background: #fef2f2;
}

.btn-outline-dark {
  border: 1.5px solid #4a3a2e;
  color: #4a3a2e;
  background: transparent;
  padding: 10px 24px;
}

.btn-outline-dark:hover {
  background: #f5ede6;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

/* featured products */
.featured-products {
  padding: 60px 0;
  background: #fefaf7;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #3e2e22;
}

.section-header p {
  color: #8b7766;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 24px;
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #f5e8e2;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.product-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.02);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #2f2922;
}

.price {
  font-weight: 600;
  color: #d47a7a;
  margin: 0.5rem 0;
}

.btn-sm {
  background: transparent;
  border: 1px solid #e2cfc4;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
  color: #6b5342;
}

.btn-sm:hover {
  background: #fef0ea;
  border-color: #d47a7a;
  color: #d47a7a;
}

/* about section */
.about-story {
  padding: 70px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: #4a3f36;
}

/* newsletter */
.newsletter {
  background: #fef5f0;
  padding: 60px 0;
  text-align: center;
}

.newsletter-box {
  max-width: 600px;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 0.8rem;
  justify-content: center;
}

.newsletter-form input {
  flex: 2;
  min-width: 200px;
  padding: 12px 20px;
  border: 1px solid #f0dfd6;
  border-radius: 60px;
  background: #fffcf9;
  font-size: 1rem;
}

.newsletter-form button {
  flex: 1;
  background: #d47a7a;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.newsletter-form button:hover {
  background: #b85e5e;
}

.small-note {
  font-size: 0.7rem;
  color: #ab9586;
}

/* contact */
.contact-section {
  padding: 50px 0;
  text-align: center;
}

.contact-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
}

.social-links a {
  text-decoration: none;
  color: #5a4a3a;
  font-weight: 500;
}

.social-links a i {
  margin-right: 6px;
}

/* footer */
.site-footer {
  background: #fdf3ed;
  padding: 30px 0;
  border-top: 1px solid #f0e0d8;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: #7c6858;
  font-size: 0.85rem;
}

/* responsive */
@media (max-width: 900px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 75%;
    height: calc(100vh - 80px);
    background: #fffdf9;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.05);
    transition: left 0.3s;
    padding: 2rem;
    z-index: 99;
  }
  .main-nav.active {
    left: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1.8rem;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
}