* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
  background: #f5fffc;
  color: #333;
}

/* ===== HEADER ===== */
header {
  position: relative;
  background: url("banner.jpg") center/cover no-repeat;
  height: 280px;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.header-text {
  position: relative;
  z-index: 2;
}

.header-text h1 {
  font-size: 2rem;
}

.header-text p {
  font-size: 1rem;
}

/* ===== MUSIC PLAYER ===== */
.music-player {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
}

.music-player button {
  background: #00b894;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.music-player button:hover {
  background: #019874;
}

/* ===== CONTENT ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.promo {
  background: #fff3cd;
  border-left: 6px solid #f1c40f;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 8px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-body h3 {
  color: #00b894;
}

.price {
  color: #e17055;
  font-weight: bold;
  margin: 8px 0;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
}

.btn:hover {
  background: #1ebe5d;
}

/* ===== FOOTER ===== */
footer {
  background: #00b894;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 40px;
}

.store-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.store-link img {
  height: 38px;
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  header {
    height: 220px;
  }

  .header-text h1 {
    font-size: 1.6rem;
  }
}

/* ===== HERO HEADER MODERN ===== */
.hero {
  position: relative;
  height: 350px;
  background: url("banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,184,148,0.8), rgba(0,0,0,0.6));
  backdrop-filter: blur(3px);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #ffd32a;
  color: #333;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ffb400;
  transform: scale(1.05);
}

/* ===== MUSIC BUTTON MODERN ===== */
.music-player {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.music-player button {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.music-player button:hover {
  background: #00b894;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .hero {
    height: 260px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}

/* PROMO BOX */
.promo-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: white;
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.promo-icon {
  font-size: 2rem;
}

/* PRODUCT GRID */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: 0.4s;
  animation: fadeUp 0.8s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff7675;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.badge.new {
  background: #00b894;
}

/* BODY */
.card-body {
  padding: 18px;
}

.card-body h3 {
  color: #00b894;
  margin-bottom: 8px;
}

.desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* FOOTER */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: bold;
  color: #e17055;
}

/* WHATSAPP BUTTON */
.order-btn {
  background: #25D366;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.order-btn:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ANIMASI MUNCUL BERURUTAN ===== */
.card {
  opacity: 0;
  transform: translateY(40px);
  animation: cardFadeUp 0.8s ease forwards;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}
.card:nth-child(2) {
  animation-delay: 0.4s;
}
.card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes cardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== FLOATING EFFECT ===== */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}


/* ===== IMAGE ZOOM EFFECT ===== */
.card-image img {
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.08);
}


/* ===== SHIMMER EFFECT ===== */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.4),
    transparent 70%
  );
  opacity: 0;
  transition: 0.5s;
}

.card:hover::before {
  opacity: 1;
  animation: shimmer 1.2s;
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}


/* ===== WHATSAPP BUTTON PULSE ===== */
.order-btn {
  position: relative;
  overflow: hidden;
}

.order-btn::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 30px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/* ===== PROMO BOX GLOW ===== */
.promo-box {
  animation: promoGlow 3s infinite alternate;
}

@keyframes promoGlow {
  from {
    box-shadow: 0 0 10px rgba(0,184,148,0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(0,184,148,0.7);
  }
}


/* ===== BACKGROUND ANIMATION ===== */
body {
  background: linear-gradient(-45deg, #f5fffc, #e0fff7, #ffffff, #dff9fb);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.floating {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url("ice.png") center/contain no-repeat;
  left: 10%;
  bottom: -50px;
  animation: floatUp 10s infinite linear;
  opacity: 0.3;
}

.floating2 {
  left: 80%;
  animation-delay: 5s;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-120vh);
  }
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(37,211,102,0.7);
  animation: pulse 2s infinite;
  z-index: 999;
}

/* ===== FOOTER UTAMA ===== */
.footer {
  position: relative;
  background: linear-gradient(135deg, #00b894, #0984e3);
  color: white;
  margin-top: 60px;
  padding-top: 40px;
  overflow: hidden;
  animation: fadeUp 1s ease;
}

/* GLASS EFFECT */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

/* CONTAINER */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
  gap: 25px;
}

/* BRAND */
.footer-brand h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.footer-brand p {
  opacity: 0.9;
}

/* WHATSAPP BUTTON */
.footer-wa {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(37,211,102,0.7);
  transition: 0.3s;
}

.footer-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37,211,102,1);
}

/* PLAYSTORE */
.footer-app img {
  margin-top: 10px;
  height: 45px;
  transition: 0.4s;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}

.footer-app img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.6));
}

/* LINE ANIMATION */
.footer-line {
  height: 2px;
  margin: 25px auto;
  width: 80%;
  background: linear-gradient(
    90deg,
    transparent,
    white,
    transparent
  );
  animation: lineMove 3s infinite linear;
}

@keyframes lineMove {
  from {
    background-position: -300px;
  }
  to {
    background-position: 300px;
  }
}

/* BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.credit {
  opacity: 0.8;
  margin-top: 5px;
}

/* FLOATING GLOW EFFECT */
.footer::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  filter: blur(60px);
  animation: floatGlow 6s infinite alternate;
}

@keyframes floatGlow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(40px);
  }
}

/* CONTAINER */
.playstore-btn {
  position: relative;
  display: inline-block;
  animation: floatPlaystore 3s ease-in-out infinite;
}

/* IMAGE */
.playstore-btn img {
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.4s;
}

/* FLOAT ANIMATION */
@keyframes floatPlaystore {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* GLOW PULSE */
.playstore-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 15px;
  background: radial-gradient(circle, rgba(255,255,255,0.6), transparent);
  opacity: 0;
  animation: glowPulse 2.5s infinite;
}

@keyframes glowPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* SHINE EFFECT */
.playstore-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}

/* HOVER EFFECT */
.playstore-btn:hover img {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.playstore-btn:hover {
  animation: bouncePlaystore 0.6s;
}

@keyframes bouncePlaystore {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}