/* ============================== */
/*  FXBG BALLOONS — CORE STYLES  */
/* ============================== */

/* LOGO – animated gradient text */
.text-logo {
  background: linear-gradient(90deg, #ff1bed, #00eaff, #ffe600, #ff1bed);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoFlow 4s infinite linear;
}

@keyframes logoFlow {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px #ff1bed);
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 12px #00eaff);
  }
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px #ffe600);
  }
}

/* HERO TITLE */
.hero-title {
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.hero-highlight {
  background: linear-gradient(90deg, #ffe600, #ff9d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FLOATING BALLOONS */
.floating {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 30% 30%, #fff, transparent 60%),
    radial-gradient(circle, #ff4dd2, #ff008c);
  border-radius: 50%;
  opacity: 0.65;
  animation: floaty 7s ease-in-out infinite;
  filter: blur(1px);
}

.balloon-a {
  top: 90px;
  left: 8%;
  transform: scale(1.2);
}
.balloon-b {
  top: 220px;
  right: 12%;
  animation-delay: 1.4s;
}
.balloon-c {
  top: 360px;
  left: 50%;
  animation-delay: 3s;
  transform: scale(1.1);
}
.balloon-d {
  top: 150px;
  right: 40%;
  animation-delay: 2.2s;
  transform: scale(0.9);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-40px) scale(1.05);
  }
}

/* CATEGORY CARDS (text only) */
.category-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  white-space: normal !important;
  text-wrap: balance;
  line-height: 1.2;
  padding: 1rem;

  height: 170px;
  border-radius: 2rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  background: var(--bgcolor);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease-out;
}

.category-card:hover {
  transform: scale(1.1) rotate(1.8deg);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

/* PRODUCT CARDS (for category pages later) */
.product-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: 0.2s;
}
.product-card:hover {
  transform: scale(1.05);
}
.product-title {
  font-size: 1.6rem;
  font-weight: 900;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.75rem 0 1.25rem 0;
  color: #222;
}
.product-btn {
  display: inline-block;
  background: #ffdb2d;
  color: #222;
  font-weight: 900;
  padding: 0.75rem 1.8rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.product-btn:hover {
  transform: scale(1.07);
}

/* CART BADGE */
.cart-badge {
  display: inline-block;
}

/* CART CONFETTI CANVAS (inside drawer) */
.cart-confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

/* ensure cart content appears above confetti canvas */
#cartDrawer > * {
  position: relative;
  z-index: 10;
}

/* Freeze background scroll when cart is open */
body.cart-open {
  overflow: hidden;
}
.product-card {
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.qty-btn {
  background: white;
  color: black;
  font-weight: 900;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 20px;
}

.cart-thumb {
  border-radius: 12px;
  object-fit: cover;
}
