/* ==========================
   GLOBAL STYLES
========================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff8f5; /* soft background */
  color: #333;
  scroll-behavior: smooth;
}

.section-title {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 2.5rem;
  color: #d46a6a; /* soft feminine pinkish tone */
  font-weight: 600;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #d4a017;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ==========================
   HEADER
========================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s;
}
.header.scrolled {
  background: #fff0f2;
}
.logo {
  height: 60px;
}
.nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #d46a6a;
  transition: 0.3s;
}
.nav a:hover::after {
  width: 100%;
}

/* ==========================
   HERO
========================== */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  animation: fadeIn 2s ease-in;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url("images/5503f53b-1216-481e-bd14-f6e468f77045.jpg") center/cover no-repeat;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.hero-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f9a8d4, #d46a6a);
  padding: 14px 28px;
  color: white;
  border-radius: 30px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* ==========================
   PRODUCT GRID
========================== */
.products-section {
  position: relative;
  padding: 80px 50px;
  overflow: hidden;
  background: #fff0f2;
  border-radius: 20px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s;
}
.product-card img:hover {
  transform: scale(1.05);
}
.product-card h3 {
  margin: 15px 0 10px;
  color: #d46a6a;
}
.price {
  color: #d4a017;
  font-size: 1.2rem;
  font-weight: 600;
}
.desc {
  color: #666;
  margin: 10px 0 15px;
  font-size: 0.95rem;
}
.btn {
  background: #d46a6a;
  border: none;
  color: white;
  padding: 12px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover {
  background: #f98db4;
  transform: translateY(-2px);
}

/* PRODUCT CARD HOVER GLOW */
.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.product-card:hover::before {
  transform: rotate(45deg) translate(0, 0);
  opacity: 1;
}

/* ==========================
   ABOUT SECTION
========================== */
.about-section {
  background: #fff;
  padding: 60px 50px;
  text-align: center;
  line-height: 1.8rem;
  color: #444;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin: 60px 0;
  animation: fadeIn 2s ease-in;
}
.about-section h2 {
  color: #d4a017;
}
.about-section p {
  color: #444;
}

/* ==========================
   FOOTER
========================== */
.footer {
  background: #222;
  color: #d4a017;
  text-align: center;
  padding: 35px 20px;
  font-size: 0.95rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.footer p {
  margin: 5px 0;
}
.footer .social-icons a {
  color: #d4a017;
}
.footer .social-icons a:hover {
  color: #ffd24d;
}
.footer .qr-code img {
  border: 2px solid #d4a017;
}

/* ==========================
   FLOATING SOCIAL BUTTONS
========================== */
.floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.floating-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #d4a017; 
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.floating-social a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  background: #b38710;
}

/* ==========================
   QR CODE
========================== */
.qr-code {
  margin-top: 20px;
}
.qr-code img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.qr-code img:hover {
  transform: scale(1.1);
}

/* ==========================
   MODERN ADDED TO CART POPUP
========================== */
.added-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  font-weight: 600;
  color: #222;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 5px solid #f4c542;
  animation: slideFadeIn 0.4s ease forwards;
}
.added-popup a {
  color: #0a3b60;
  text-decoration: none;
  font-weight: 700;
}
.added-popup a:hover {
  text-decoration: underline;
}
.added-popup .checkmark {
  font-size: 20px;
  color: #28a745;
}

/* ==========================
   FLOATING CART BUTTON
========================== */
.floating-cart-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #f4c542;
  color: #072033;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: 0.3s ease;
}
.floating-cart-btn:hover {
  background: #e0b238;
  transform: translateY(-3px);
}

/* ==========================
   HERO DECORATIVE SHAPES
========================== */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 12s linear infinite;
}
.hero::before {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #f9a8d4, #d46a6a);
  top: 10%;
  left: 5%;
}
.hero::after {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #ffd6d6, #f9a8d4);
  bottom: 15%;
  right: 10%;
  animation-duration: 18s;
}
.hero .sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 3s infinite ease-in-out;
}

/* ==========================
   PRODUCTS FLOATING SHAPES
========================== */
.products-section .float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  animation: floatShape 20s linear infinite;
}
.products-section .float-shape.shape1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #f9a8d4, #ffd6d6);
  top: -50px;
  left: -100px;
  animation-duration: 25s;
}
.products-section .float-shape.shape2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #d46a6a, #f9a8d4);
  bottom: -50px;
  right: -80px;
  animation-duration: 30s;
}
.products-section .float-shape.shape3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #ffe6e6, #f9a8d4);
  top: 20%;
  right: -50px;
  animation-duration: 28s;
}

/* ==========================
   ANIMATIONS
========================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.5); }
}
@keyframes floatShape {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================
   MEDIA QUERIES
========================== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .header {
    padding: 15px 25px;
  }
  .products-section {
    padding: 40px 20px;
  }
  .about-section {
    padding: 40px 20px;
  }
}
