* {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #ffe6f2, #ffffff);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Global section padding */
.section-padding {
  padding-top: 140px;
  padding-bottom: 0px;
}

/* Glassmorphism base */
.glass {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
  border-radius: 18px;
}

/* Navbar */
.navbar {
  padding: 12px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: #ff4da6 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand:hover {
  opacity: 0.85;
}

/* Logo Circle */
.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7eb3, #ffd1e8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.35);
}

.nav-link {
  font-weight: 500;
  color: #444 !important;
  transition: 0.2s ease;
}

.nav-link:hover {
  color: #ff4da6 !important;
}

.navbar-toggler i {
  color: #ff4da6;
}

/* Fix mobile dropdown spacing */
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 10px;
  }

  .nav-link {
    padding: 10px 0;
  }
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Button Pink */
.btn-pink {
  background: linear-gradient(135deg, #ff4da6, #ff7eb3);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.25);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 105, 180, 0.35);
  color: white;
}

/* Pink Text */
.text-pink {
  color: #ff4da6;
}

/* HERO SECTION */
.hero-section {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}

.hero-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

/* Bubble background effect */
.hero-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255, 77, 166, 0.25);
  border-radius: 50%;
  filter: blur(5px);
}

.hero-card::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: rgba(255, 126, 179, 0.25);
  border-radius: 50%;
  filter: blur(5px);
}

.hero-card * {
  position: relative;
  z-index: 2;
}

/* Outline button pink */
.btn-outline-pink {
  border: 2px solid rgba(255, 77, 166, 0.7);
  color: #ff4da6;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-outline-pink:hover {
  background: rgba(255, 77, 166, 0.12);
  color: #ff4da6;
  transform: translateY(-2px);
}

/* Social Buttons */
.hero-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ff4da6;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.15);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 77, 166, 0.15);
  color: #ff4da6;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
  padding: 18px;
  border-radius: 24px;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 77, 166, 0.25), rgba(255, 209, 232, 0.35));
  filter: blur(18px);
  z-index: 1;
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.25);
  transition: 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

/* Responsive hero */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-card {
    text-align: center;
  }
}

/* SECTION TITLE */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  max-width: 650px;
  margin: auto;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* ABOUT SECTION */
.about-section {
  padding: 90px 0;
}

.about-card {
  overflow: hidden;
  position: relative;
}

/* Bubble effect about */
.about-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 77, 166, 0.18);
  filter: blur(8px);
}

.about-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 126, 179, 0.20);
  filter: blur(8px);
}

.about-card * {
  position: relative;
  z-index: 2;
}

/* Feature Cards */
.feature-card {
  transition: 0.25s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(255, 105, 180, 0.2);
}

.feature-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4da6, #ff7eb3);
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

/* Responsive About */
@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

/* CATALOG SECTION */
.catalog-section {
  padding: 90px 0;
}

/* Filter Buttons */
.filter-btn {
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  border: 2px solid rgba(255, 77, 166, 0.25);
  background: rgba(255, 255, 255, 0.4);
  color: #ff4da6;
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 77, 166, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, #ff4da6, #ff7eb3);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.25);
}

/* Product Card */
.product-card {
  overflow: hidden;
  transition: 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(255, 105, 180, 0.25);
}

.product-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
}

.product-body {
  padding-top: 15px;
}

.product-title {
  font-weight: 700;
  color: #222;
}

.product-price {
  font-weight: 700;
  color: #ff4da6;
}

.badge-category {
  background: rgba(255, 77, 166, 0.12);
  color: #ff4da6;
  font-weight: 600;
  border-radius: 12px;
  padding: 7px 12px;
  display: inline-block;
  font-size: 0.85rem;
}

/* Modal */
.modal-glass {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.modal-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

/* CONTACT SECTION */
.contact-section {
  padding: 90px 0;
}

.contact-card {
  overflow: hidden;
  position: relative;
}

/* Maps wrapper */
.map-wrapper iframe {
  border-radius: 18px;
  width: 100%;
  height: 260px; /* kecilin dari 320 */
  display: block;
}

/* Input Glass */
.input-glass {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(255, 105, 180, 0.1);
  padding: 12px 14px;
}

.input-glass:focus {
  border-color: rgba(255, 77, 166, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(255, 77, 166, 0.2);
}

/* Contact Links */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-link {
  flex: 1;
  min-width: 120px;
  text-decoration: none;
  font-weight: 600;
  color: #ff4da6;
  border-radius: 14px;
  padding: 10px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.contact-link i {
  margin-right: 6px;
}

.contact-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 77, 166, 0.12);
}

/* FOOTER */
.footer-section {
  padding: 70px 0 40px;
}

.footer-glass {
  border-radius: 22px;
}

.footer-brand {
  font-weight: 800;
  color: #ff4da6;
}

.footer-desc {
  color: #666;
  line-height: 1.7;
  margin-top: 10px;
  font-size: 0.95rem;
}

.footer-title {
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: #555;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #ff4da6;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ff4da6;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.12);
}

.footer-social-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 77, 166, 0.12);
}

.footer-line {
  border: none;
  height: 1px;
  background: rgba(255, 77, 166, 0.15);
  margin: 25px 0;
}

.developer-credit {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  transition: 0.2s ease;
}

.developer-credit span {
  color: #ff4da6;
  font-weight: 700;
}

.developer-credit:hover {
  color: #ff4da6;
  transform: translateY(-1px);
}