/* ═══════════════════════════════════════════
   Baby Vibe's — Custom Styles
   Bootstrap 5.3 handles layout/utilities
   This file: brand colors, components, custom UI
═══════════════════════════════════════════ */

:root {
  --bv-rose: #f43f5e;
  --bv-navy: #0f172a;
  --bv-navy-mid: #1e3a8a;
  --bv-gold: #f59e0b;
  --bv-sky: #0ea5e9;
  --bv-mint: #10b981;
  --bv-light: #f8fafc;
  --bv-text: #334155;
  --bv-muted: #94a3b8;
  --bv-border: #e2e8f0;
  --bv-shadow: 0 4px 24px rgba(15, 23, 42, .08);
  --bv-shadow-lg: 0 12px 48px rgba(15, 23, 42, .14);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bv-light);
  color: var(--bv-text);
  overflow-x: hidden;
}

h1,
h2,
h3,
.font-brand {
  font-family: 'Baloo 2', cursive;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--bv-rose);
  border-radius: 4px;
}

/* ── CURSOR ── */
.bv-cursor {
  width: 16px;
  height: 16px;
  background: var(--bv-rose);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transition: transform .15s;
}

.bv-cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--bv-rose);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .4;
  transition: all .18s ease;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BACK TO TOP ── */
.bv-btop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bv-rose), #fb923c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(244, 63, 94, .4);
  opacity: 0;
  transform: translateY(12px);
  transition: all .3s;
  pointer-events: none;
}

.bv-btop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.bv-btop:hover {
  color: white;
  transform: translateY(-4px);
}

/* ══ NAVBAR ══ */
.bv-navbar {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--bv-rose);
  box-shadow: 0 2px 20px rgba(244, 63, 94, .1);
  padding: 0;
}

.bv-navbar .container-xl {
  height: 72px;
}

.bv-logo img {
  height: 52px;
  object-fit: contain;
}

.bv-logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bv-rose);
}

.bv-logo-text span {
  color: var(--bv-navy);
}

.bv-link {
  color: var(--bv-text) !important;
  font-weight: 600;
  font-size: .85rem;
  padding: 7px 11px !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .2s;
}

.bv-link i {
  color: var(--bv-rose);
  font-size: .75rem;
}

.bv-link:hover,
.bv-link.active {
  background: #fad0d9;
    color: var(--bv-rose) !important;
}

.bv-nav-cta {
  background: linear-gradient(135deg, var(--bv-rose), #fb923c);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .86rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(244, 63, 94, .4);
  transition: all .3s;
  white-space: nowrap;
  animation: navPulse 2.5s ease-in-out infinite;
}

@keyframes navPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(244, 63, 94, .4)
  }

  50% {
    box-shadow: 0 6px 26px rgba(244, 63, 94, .65)
  }
}

.bv-nav-cta:hover {
  transform: translateY(-2px);
}

.bv-toggler {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.bv-toggler span {
  width: 24px;
  height: 2.5px;
  background: var(--bv-navy);
  border-radius: 2px;
  display: block;
  transition: all .3s;
}

.bv-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.bv-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.bv-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.bv-toggler:focus {
  box-shadow: none;
}

@media(max-width:991px) {
  .navbar-collapse {
    background: white;
    padding: 14px 18px;
    border-top: 1px solid var(--bv-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  }

  .bv-nav-cta {
    margin: 10px 0 4px;
  }

  .navbar-nav {
    gap: 3px !important;
  }
}

/* ══ SECTION COMMON ══ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f3 !important;
  color: var(--bv-rose) !important;
  font-weight: 700;
  font-size: .72rem;
  padding: 6px 15px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fecdd3;
}

.section-line {
  width: 50px;
  height: 5px;
  background: linear-gradient(90deg, var(--bv-rose), var(--bv-sky));
  border-radius: 3px;
  margin: 15px auto 0;
}

/* ══ HERO ══ */
.bv-hero {
  min-height: 100vh;
  padding-top: 72px;
  background: linear-gradient(135deg, #fff1f2 0%, #eff6ff 50%, #f0fdf4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  animation: iFloat 7s ease-in-out infinite;
  z-index: 1;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .09);
}

.fi-1 {
  top: 18%;
  left: 4%;
  background: rgba(244, 63, 94, .11);
  color: var(--bv-rose);
  border: 1.5px solid rgba(244, 63, 94, .2);
  animation-delay: 0s
}

.fi-2 {
  top: 20%;
  right: 4%;
  background: rgba(30, 58, 138, .08);
  color: var(--bv-navy-mid);
  border: 1.5px solid rgba(30, 58, 138, .14);
  animation-delay: 1.8s
}

.fi-3 {
  bottom: 22%;
  left: 6%;
  background: rgba(14, 165, 233, .1);
  color: var(--bv-sky);
  border: 1.5px solid rgba(14, 165, 233, .18);
  animation-delay: 3.5s;
  width: 60px;
  height: 60px;
  font-size: 1.45rem
}

.fi-4 {
  bottom: 26%;
  right: 6%;
  background: rgba(16, 185, 129, .1);
  color: var(--bv-mint);
  border: 1.5px solid rgba(16, 185, 129, .18);
  animation-delay: 5s;
  width: 54px;
  height: 54px;
  font-size: 1.35rem
}

@keyframes iFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg)
  }

  50% {
    transform: translateY(-20px) rotate(4deg)
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #fff0f3, #fff7ed);
  color: var(--bv-rose);
  font-weight: 700;
  font-size: .78rem;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid #fecdd3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .95;
  letter-spacing: -2px;
}

.t-rose {
  color: var(--bv-rose);
}

.t-navy {
  color: var(--bv-navy);
}

.t-tm {
  font-size: 1.3rem;
  color: var(--bv-muted);
  vertical-align: super;
  font-weight: 400;
}

.hero-tagline {
  font-size: clamp(.95rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--bv-navy-mid);
}

.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--bv-rose);
  line-height: 1;
}

.stat-lbl {
  font-size: .73rem;
  font-weight: 600;
  color: var(--bv-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══ BUTTONS ══ */
.btn-bv-primary {
  background: linear-gradient(135deg, var(--bv-rose), #fb923c);
  color: white;
  padding: 14px 32px;
  border-radius: 13px;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 26px rgba(244, 63, 94, .4);
  transition: all .3s;
  border: none;
}

.btn-bv-primary:hover {
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(244, 63, 94, .5);
}

.btn-bv-secondary {
  background: white;
  color: var(--bv-navy);
  padding: 14px 32px;
  border-radius: 13px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid var(--bv-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--bv-shadow);
  transition: all .3s;
}

.btn-bv-secondary:hover {
  border-color: var(--bv-navy);
  color: var(--bv-navy);
  transform: translateY(-4px);
}

.btn-bv-call {
  background: linear-gradient(135deg, var(--bv-rose), #fb923c);
  color: white;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 8px 26px rgba(244, 63, 94, .4);
  transition: all .3s;
}

.btn-bv-call:hover {
  color: white;
  transform: translateY(-3px);
}

.btn-bv-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: all .3s;
}

.btn-bv-wa:hover {
  color: white;
  transform: translateY(-3px);
}

.btn-bv-back {
  background: white;
  color: var(--bv-navy);
  padding: 13px 24px;
  border-radius: 13px;
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  border: 2px solid var(--bv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .3s;
}

.btn-bv-back:hover {
  border-color: var(--bv-navy);
  color: var(--bv-navy);
  transform: translateY(-2px);
}

/* ══ VIDEO ══ */
.video-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  line-height: 0;
      margin-top: 70px;
}

.v-wrap {
  position: relative;
  width: 100%;
  background: #000;
}

.v-wrap video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.umute {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(10px);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: 'DM Sans', sans-serif;
}

.umute:hover {
  background: rgba(244, 63, 94, .75);
  border-color: var(--bv-rose);
}

.umute.on {
  background: rgba(16, 185, 129, .7);
  border-color: var(--bv-mint);
}

@media(max-width:768px) {
  .v-wrap video {
    height: 60vw;
    min-height: 260px;
  }
}

/* ══ ABOUT ══ */
.about-box {
  background: linear-gradient(135deg, #fff0f3, #eff6ff, #f0fdf4);
  border-radius: 30px;
  padding: 46px 38px;
  text-align: center;
  border: 2px solid var(--bv-border);
  box-shadow: var(--bv-shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(244, 63, 94, .09), transparent);
  border-radius: 50%;
}

.about-box img {
  height: 100px;
  object-fit: contain;
}

.about-box-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--bv-navy);
}

.ahi {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 17px;
  background: var(--bv-light);
  border-radius: 13px;
  border: 1px solid var(--bv-border);
  transition: all .3s;
}

.ahi:hover {
  border-color: #fecdd3;
  transform: translateX(4px);
}

.ahi-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: white;
}

.h1 {
  background: linear-gradient(135deg, var(--bv-rose), #fb923c)
}

.h2 {
  background: linear-gradient(135deg, var(--bv-sky), #6366f1)
}

.h3 {
  background: linear-gradient(135deg, var(--bv-mint), #0d9488)
}

.h4 {
  background: linear-gradient(135deg, var(--bv-gold), #f97316)
}

.ahi-title {
  font-weight: 700;
  color: var(--bv-navy);
  font-size: .91rem;
}

.ahi-desc {
  font-size: .82rem;
  color: var(--bv-muted);
  line-height: 1.5;
}

.ab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  font-size: .76rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 50px;
  border: 1px solid var(--bv-border);
  box-shadow: var(--bv-shadow);
}

.ab i {
  color: var(--bv-rose);
}

/* ══ MARQUEE ══ */
.mqstrip {
  background: linear-gradient(90deg, var(--bv-navy), #1e3a8a);
  padding: 13px 0;
  overflow: hidden;
}

.mqtrack {
  display: flex;
  animation: mqLeft 25s linear infinite;
  white-space: nowrap;
}

.mqtrack .mi {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 32px;
  font-weight: 700;
  font-size: .84rem;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.mqtrack .mi i {
  color: var(--bv-gold);
  font-size: .76rem;
}

@keyframes mqLeft {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ══ PRODUCT CARDS (Home) ══ */
.pcard {
  background: white;
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--bv-border);
  box-shadow: var(--bv-shadow);
  cursor: pointer;
  transition: all .35s cubic-bezier(.175, .885, .32, 1.275);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}

.pcard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bv-rose), var(--bv-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.pcard:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--bv-rose);
  box-shadow: 0 20px 54px rgba(244, 63, 94, .18);
  color: inherit;
}

.pcard:hover::after {
  transform: scaleX(1);
}

.picon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px;
  font-size: 2rem;
  animation: pBounce 3.5s ease-in-out infinite;
}

.pcard:nth-child(1) .picon {
  background: linear-gradient(135deg, #fff0f3, #fce7e7);
  animation-delay: 0s
}

.pcard:nth-child(2) .picon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  animation-delay: .6s
}

.pcard:nth-child(3) .picon {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  animation-delay: 1.2s
}

.pcard:nth-child(4) .picon {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  animation-delay: 1.8s
}

@keyframes pBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

.pname {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bv-navy);
  margin-bottom: 8px;
}

.pdesc {
  color: var(--bv-muted);
  font-size: .87rem;
  line-height: 1.7;
}

.pbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 13px;
  font-weight: 700;
  font-size: .72rem;
  padding: 5px 12px;
  border-radius: 50px;
}

/* ══ SERVICES ══ */
.features-section {
  background: linear-gradient(135deg, var(--bv-navy) 0%, #1e3a8a 100%);
}

.fcard {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 19px;
  padding: 30px 20px;
  text-align: center;
  transition: all .3s;
  backdrop-filter: blur(8px);
}

.fcard:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .3);
}

.ficon {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.65rem;
  color: white;
  transition: transform .3s;
}

.fcard:hover .ficon {
  transform: scale(1.1) rotate(-5deg);
}

.ftitle {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  margin-bottom: 7px;
}

.fdesc {
  font-size: .84rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
}

/* ══ WHY US ══ */
.wvis {
  background: linear-gradient(135deg, #fff0f3, #eff6ff);
  border-radius: 26px;
  padding: 44px;
  text-align: center;
  border: 2px solid var(--bv-border);
  box-shadow: var(--bv-shadow-lg);
}

.wbig {
  font-size: 6rem;
  line-height: 1;
  filter: drop-shadow(0 8px 20px rgba(244, 63, 94, .2));
}

.wvt {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--bv-navy);
}

.witem {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bv-light);
  border-radius: 13px;
  border: 1px solid var(--bv-border);
  box-shadow: var(--bv-shadow);
  transition: all .3s;
}

.witem:hover {
  transform: translateX(6px);
  border-color: #fecdd3;
  box-shadow: 0 8px 26px rgba(244, 63, 94, .12);
}

.wnum {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--bv-rose), #fb923c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  font-family: 'Baloo 2', cursive;
}

/* ══ TESTIMONIALS ══ */
.tcard {
  background: white;
  border-radius: 19px;
  padding: 26px;
  border: 1px solid var(--bv-border);
  transition: all .3s;
  box-shadow: var(--bv-shadow);
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--bv-shadow-lg);
  border-color: #fecdd3;
}

.tav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-family: 'Baloo 2', cursive;
  font-size: .9rem;
}

/* ══ CONTACT ══ */
.contact-section {
      background: linear-gradient(145deg, #f54f5754 0%, #1ba1e96b 60%, #a8c25473 100% 34%);
  overflow: hidden;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(244, 63, 94, .14), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(14, 165, 233, .11), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section .reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.ccard {
      background: rgb(251 254 254);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 17px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all .3s;
  backdrop-filter: blur(8px);
}

.ccard:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateX(5px);
  border-color: rgba(244, 63, 94, .4);
}

.cicon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: white;
}

.ci1 {
  background: linear-gradient(135deg, var(--bv-rose), #fb923c);
  box-shadow: 0 5px 16px rgba(244, 63, 94, .4)
}

.ci2 {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 5px 16px rgba(37, 211, 102, .4)
}

.ci3 {
  background: linear-gradient(135deg, var(--bv-sky), #6366f1);
  box-shadow: 0 5px 16px rgba(14, 165, 233, .4)
}

.ci4 {
  background: linear-gradient(135deg, var(--bv-gold), #f97316);
  box-shadow: 0 5px 16px rgba(245, 158, 11, .4)
}

.clbl {
  font-size: .7rem;
  font-weight: 700;
  color: rgb(42 34 53);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cval {
  font-size: .98rem;
  font-weight: 700;
  color: rgb(42 34 53);
  line-height: 1.4;
}

.csub {
  font-size: .79rem;
  color: rgb(42 34 53);
}

.cbox {
      background: rgb(251 254 254);
    border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
}

.cbox-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.65rem;
  font-weight: 900;
  color: #2a2235;
}

.cbox-sub {
  font-size: .88rem;
      color: rgb(42 34 53);
  line-height: 1.6;
}

.cbtn-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.cbtn-contact a {
  padding: 14px 20px;
  border-radius: 13px;
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all .3s;
}

.cc1 {
  background: linear-gradient(135deg, var(--bv-rose), #fb923c);
  color: white;
  box-shadow: 0 6px 20px rgba(244, 63, 94, .4);
}

.cc1:hover {
  color: white;
  transform: translateY(-3px);
}

.cc2 {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

.cc2:hover {
  color: white;
  transform: translateY(-3px);
}

.cc3 {
  background: rgb(76 119 239);
  color: white;
  border: 1px solid rgba(255, 255, 255, .2);
}

.cc3:hover {
  background: rgb(76 119 239);
  color: white;
}

/* ══ FOOTER ══ */
.bv-footer {
  background: var(--bv-navy);
}

.f-brand img {
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.f-brand-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}

.f-tagline {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  max-width: 260px;
}

.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .95rem;
  transition: all .3s;
}

.fsoc:hover {
  transform: translateY(-4px);
}

.sb-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white
}

.sb-ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  color: white
}

.sb-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: white
}

.sb-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: white
}

.f-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 800;
  color: white;
}

.f-links {
  list-style: none;
  padding: 0;
}

.f-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .86rem;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  transition: color .2s;
}

.f-links a i {
  color: var(--bv-rose);
  font-size: .7rem;
}

.f-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.fcopy {
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

.fbadge span {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .06);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .1);
}

/* ══ PAGE HERO (inner pages) ══ */
.page-hero {
  padding: 110px 0 60px;
  background: linear-gradient(135deg, #fff1f2 0%, #eff6ff 50%, #f0fdf4 100%);
  text-align: center;
}

.breadcrumb-item a {
  color: var(--bv-rose);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item.active {
  color: var(--bv-muted);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bv-muted);
}

/* ══ CATEGORY TABS ══ */
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  border: 2px solid var(--bv-border);
  background: white;
  color: var(--bv-text);
  transition: all .25s;
  text-decoration: none;
}

.cat-tab:hover {
  border-color: var(--bv-rose);
  color: var(--bv-rose);
  transform: translateY(-2px);
}

.cat-tab.active {
  background: var(--bv-rose);
  color: white !important;
  border-color: var(--bv-rose);
  box-shadow: 0 6px 20px rgba(244, 63, 94, .35);
}

/* ══ PRODUCTS GRID ══ */
.prod-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--bv-border);
  box-shadow: var(--bv-shadow);
  transition: all .35s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.prod-card:hover {
  transform: translateY(-8px);
  border-color: var(--bv-rose);
  box-shadow: 0 20px 50px rgba(244, 63, 94, .18);
  color: inherit;
}

.prod-img {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.prod-card:hover .prod-img img {
  transform: scale(1.06);
}

.prod-icon-fb {
  font-size: 5rem;
  opacity: .15;
  position: absolute;
}

.prod-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
}

.pibadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: .7rem;
  padding: 4px 10px;
  border-radius: 50px;
}

.prod-info {
  padding: 20px;
}

.prod-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bv-navy);
  margin-bottom: 6px;
}

.prod-desc {
  font-size: .84rem;
  color: var(--bv-muted);
  line-height: 1.6;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--bv-border);
}

.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bv-rose);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  transition: all .2s;
  text-decoration: none;
}

.prod-cta:hover {
  background: #e11d48;
  color: white;
}

.prod-enquire {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #25D366;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid #25D366;
  transition: all .2s;
}

.prod-enquire:hover {
  background: #25D366;
  color: white;
}

@media(max-width:576px) {
  .prod-img {
    height: 150px;
  }

  .prod-icon-fb {
    font-size: 3.5rem;
  }
}

/* ══ PRODUCT DETAIL ══ */
.main-img {
  width: 100%;
  border-radius: 24px;
  border: 2px solid var(--bv-border);
  box-shadow: var(--bv-shadow-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-fb {
  font-size: 10rem;
  opacity: .12;
  position: absolute;
}

.thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--bv-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: white;
  transition: all .2s;
  overflow: hidden;
}

.thumb.active,
.thumb:hover {
  border-color: var(--bv-rose);
  box-shadow: 0 4px 14px rgba(244, 63, 94, .25);
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f3;
  color: var(--bv-rose);
  font-weight: 700;
  font-size: .72rem;
  padding: 5px 13px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #fecdd3;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .2s;
}

.cat-link:hover {
  background: var(--bv-rose);
  color: white;
}

.price-box {
  background: linear-gradient(135deg, #fff0f3, #fff7ed);
  border: 2px solid #fecdd3;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.price-main {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--bv-rose);
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--bv-text);
  padding: 10px 14px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--bv-border);
}

.feat-item i {
  color: var(--bv-rose);
  width: 16px;
  text-align: center;
}

.rel-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--bv-border);
  box-shadow: var(--bv-shadow);
  transition: all .3s;
  text-decoration: none;
  display: block;
}

.rel-card:hover {
  transform: translateY(-5px);
  border-color: var(--bv-rose);
  box-shadow: 0 14px 36px rgba(244, 63, 94, .16);
}

.rel-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rel-name {
  padding: 12px 14px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: var(--bv-navy);
  font-size: .95rem;
}

.rel-view {
  padding: 0 14px 14px;
  color: var(--bv-rose);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ══ GALLERY ══ */
.upload-zone {
  max-width: 700px;
  margin: 30px auto 0;
  border: 2.5px dashed #fecdd3;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  background: white;
  cursor: pointer;
  transition: all .3s;
  position: relative;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--bv-rose);
  background: #fff8f9;
}

.upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 2.8rem;
  color: #fecdd3;
}

.upload-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bv-navy);
}

.upload-sub {
  font-size: .85rem;
  color: var(--bv-muted);
}

.btn-upload {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bv-rose);
  color: white;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.btn-upload:hover {
  background: #e11d48;
  transform: translateY(-2px);
}

.ftab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .86rem;
  cursor: pointer;
  border: 2px solid var(--bv-border);
  background: white;
  color: var(--bv-text);
  transition: all .25s;
}

.ftab:hover {
  border-color: var(--bv-rose);
  color: var(--bv-rose);
}

.ftab.active {
  background: var(--bv-rose);
  color: white;
  border-color: var(--bv-rose);
  box-shadow: 0 6px 20px rgba(244, 63, 94, .3);
}

.gallery-grid {
  columns: 4;
  column-gap: 16px;
}

.gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--bv-border);
  box-shadow: var(--bv-shadow);
  transition: all .3s;
  position: relative;
  background: white;
}

.gal-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--bv-shadow-lg);
  border-color: var(--bv-rose);
}

.img-ph {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.gal-item:hover .img-ph img {
  transform: scale(1.06);
}

.gal-icon {
  opacity: .13;
  position: absolute;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .85), transparent);
  opacity: 0;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-title {
  color: white;
  font-weight: 700;
  font-size: .88rem;
  font-family: 'Baloo 2', cursive;
}

.gal-cat {
  color: rgba(255, 255, 255, .7);
  font-size: .74rem;
}

.gal-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bv-rose);
  font-size: .8rem;
  opacity: 0;
  transition: all .2s;
}

.gal-item:hover .gal-zoom {
  opacity: 1;
}

.add-more-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 2.5px dashed #fecdd3;
  background: #fff8f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  padding: 40px 20px;
  color: var(--bv-muted);
  font-size: .85rem;
  font-weight: 600;
  transition: all .3s;
  position: relative;
  min-height: 160px;
}

.add-more-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.add-more-card:hover {
  border-color: var(--bv-rose);
  color: var(--bv-rose);
  background: #fff0f3;
}

.add-more-card i {
  font-size: 2rem;
  color: #fecdd3;
}

@media(max-width:1024px) {
  .gallery-grid {
    columns: 3;
  }
}

@media(max-width:768px) {
  .gallery-grid {
    columns: 2;
  }

  .page-hero {
    padding: 90px 0 40px;
  }
}

/* ══ LIGHTBOX ══ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#lightbox.open {
  display: flex;
}

.lb-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.lb-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}

.lb-ph {
  width: 100%;
  height: 60vh;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
}

.lb-close,
.lb-prev,
.lb-next {
  background: rgba(255, 255, 255, .15);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: var(--bv-rose);
}

.lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
}

.lb-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -56px;
}

.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -56px;
}

.lb-info {
  text-align: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.lb-info strong {
  color: white;
  font-family: 'Baloo 2', cursive;
}

@media(max-width:768px) {
  .lb-prev {
    left: -14px;
  }

  .lb-next {
    right: -14px;
  }
}