.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fffafc;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
  font-weight: 700;
  color: #e91e63;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
}

.nav-links a:hover {
  color: #e91e63;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fde6ec, #ffffff);
}

.hero h1 {
  color: #e91e63;
}

.cta-btn {
  background: #e91e63;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-title {
  font-weight: 600;
}

.product-price {
  color: #e91e63;
  font-weight: bold;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
}

/* Sections */
.section {
  padding: 40px;
  text-align: center;
}

.highlight {
  background: #fde6ec;
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
  color: #e91e63;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  color: #777;
}/* End custom CSS */