:root {
  --primary-pink: #f4acb7;
  --hot-pink: #ffa6b9;
  --soft-pink-bg: #fff5f7;
  --dark-text: #5c3342;
  --white: #ffffff;
  --heading-font: "Pacifico", cursive;
  --body-font: "Quicksand", sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #ffd1dc, #f4acb7, #ffe4ec);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--soft-pink-bg);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(244, 172, 183, 0.2);
  z-index: 1000;
  transition: 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  font-family: var(--heading-font);
  color: var(--primary-pink);
  font-size: 2.2rem;
  text-shadow: 0 2px 6px rgba(244, 172, 183, 0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--primary-pink);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-pink);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---- Hero ---- */
.hero {
  background: var(--gradient);
  color: var(--dark-text);
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease;
}

.hero h2 {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 3px 8px rgba(255, 255, 255, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

.btn {
  display: inline-block;
  background: var(--primary-pink);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 15px rgba(244, 172, 183, 0.4);
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--hot-pink);
  box-shadow: 0 8px 25px rgba(244, 172, 183, 0.5);
}

/* ---- Products ---- */
.featured-products {
  background: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  animation: fadeUp 1s ease;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(244, 172, 183, 0.25);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.4rem;
  color: var(--dark-text);
}

.product-card .price {
  color: var(--primary-pink);
  font-weight: 700;
  margin-top: 0.6rem;
}

/* ---- About ---- */
.about {
  background: var(--soft-pink-bg);
  text-align: center;
  padding: 6rem 2rem;
  animation: fadeUp 1.2s ease;
}

.about p {
  max-width: 700px;
  margin: 1rem auto 0 auto;
  font-size: 1.1rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark-text);
  color: var(--soft-pink-bg);
  text-align: center;
  padding: 4rem 2rem;
}

.footer h3 {
  font-family: var(--heading-font);
  color: var(--primary-pink);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.email {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email:hover {
  color: var(--primary-pink);
}

.socials {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.socials img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.socials img:hover {
  transform: scale(1.2);
}

.footer .copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .logo { font-size: 1.8rem; }
  .hero h2 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  .nav-links { gap: 1.2rem; }
}
