* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f2f4;
  color: #4f3427;
  line-height: 1.5;
}

/* TOP BAR */
.topbar {
  background: #4a3a39;
  color: #fff;
  font-size: 13px;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* NAVBAR */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.nav-logo {
  font-size: 24px;
  font-weight: 800;
  color: #5a3d2b;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #5a3d2b;
  font-weight: 600;
}

.nav-links a:hover {
  color: #d66f9e;
}

/* HERO */
.hero {
  min-height: 88vh;
  position: relative;
  background: linear-gradient(135deg, #f7c8da 0%, #f5a8cb 45%, #d777ab 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 40px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.08);
  transform: rotate(25deg);
  border-radius: 18px;
}

.hero::before {
  width: 320px;
  height: 320px;
  top: 60px;
  left: 10%;
}

.hero::after {
  width: 260px;
  height: 260px;
  bottom: 30px;
  right: 12%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(70,30,45,0.15), rgba(255,255,255,0.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-left {
  color: white;
}

.hero-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 18px;
  opacity: 0.95;
}

.hero-left h1 {
  font-size: 84px;
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.hero-subtext {
  font-size: 21px;
  max-width: 650px;
  margin-bottom: 30px;
  color: #fff8fc;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: white;
  color: #c95f95;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #25D366;
  color: white;
}

.btn-secondary:hover {
  opacity: 0.9;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 100%;
  max-width: 430px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
}

/* ABOUT SPLIT SECTION */
.about-split-section {
  background: #fff;
  padding: 90px 40px;
}

.about-split-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-box img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  background: #fdf6f8;
  padding: 20px;
}

.about-text-box {
  color: #5a3d2b;
}

.about-mini-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d66f9e;
  margin-bottom: 16px;
}

.about-text-box h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #5a3d2b;
}

.about-text-box p {
  font-size: 18px;
  color: #6b5244;
  margin-bottom: 18px;
}

.about-features {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.feature-item {
  background: #f9eef3;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  color: #5a3d2b;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-split-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-box img {
    max-width: 300px;
  }

  .about-text-box h2 {
    font-size: 32px;
  }
}

/* PRODUCTS */
.products-section {
  padding: 80px 30px;
}

.products-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  color: #5a3d2b;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1250px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.product-card h3 {
  font-size: 18px;
  margin: 16px 0 14px;
  color: #5a3d2b;
  font-weight: 800;
  line-height: 1.2;
  min-height: 44px;
  text-align: center;
}

.product-card button {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
}

.product-card button:hover {
  opacity: 0.92;
}
.price {
  font-size: 18px;
  font-weight: bold;
  color: #d66f9e;
  text-align: center;
  margin-bottom: 10px;
}

/* ABOUT */
.about-section {
  padding: 20px 20px 80px;
}

.about-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  text-align: center;
}

.about-box h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #5a3d2b;
}

.about-box p {
  font-size: 18px;
  color: #6b5244;
}

/* CONTACT SECTION (PRO STYLE) */
.contact-section {
  padding: 90px 30px;
  background: #f7f3f5;
  text-align: center;
}

.contact-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #5a3d2b;
}

.contact-header p {
  font-size: 18px;
  color: #6b5244;
  margin-bottom: 50px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* CARD */
.contact-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* ICON */
.contact-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* TITLE */
.contact-card h3 {
  margin-bottom: 8px;
  color: #5a3d2b;
}

/* TEXT */
.contact-card p {
  font-size: 14px;
  color: #6b5244;
  margin-bottom: 15px;
}

/* LINK */
.contact-card a {
  text-decoration: none;
  font-weight: bold;
  color: #d66f9e;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-card {
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .topbar {
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 54px;
  }

  .hero-subtext {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right img {
    max-width: 300px;
  }
   
}

@media (max-width: 768px) {

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

}

