/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f6f7;
  color: #1a1a1a;
}
a { text-decoration: none; }

/* HEADER */
.vb-header {
  width: 100%;
  background-color: #152530;
  padding: 20px 0 12px 0;
  text-align: center;
  position: relative;
}

.vb-logo {
  height: 75px;
}

/* ---------------- MOBILE MENU ---------------- */
.vb-mobile-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 25px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.vb-nav {
  text-align: center;
}

.vb-nav a {
  color: white;
  margin: 0 12px;
  font-size: 16px;
  display: inline-block;
}

@media(max-width: 768px) {
  .vb-mobile-toggle {
    display: block;
  }
  .vb-nav {
    display: none;
    flex-direction: column;
    background: #152530;
    padding: 15px 0;
  }
  .vb-nav.show {
    display: flex;
  }
  .vb-nav a {
    margin: 12px 0;
    font-size: 18px;
  }
}

/* ---------------- BLOG LAYOUT ---------------- */
.vb-blog-layout {
  display: flex;
  gap: 40px;
  width: 92%;
  max-width: 1300px;
  margin: 40px auto;
}

.vb-sidebar {
  width: 260px;
  position: sticky;
  top: 120px;
}

@media(max-width: 768px) {
  .vb-sidebar { display: none; }
}

/* SIDEBAR BOX */
.vb-sidebar-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* BUTTONS (DESKTOP) */
.vb-share-btn,
.vb-wachat-btn,
.vb-wa-cta {
  width: 100%;
  padding: 12px;
  background: #152530;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  color: white;
  font-size: 15px;
  cursor: pointer;
}

.vb-wa-cta {
  background: #C8A44D;
  color: #152530;
}

/* DESKTOP WHATSAPP PANEL */
.vb-wa-panel {
  display: none;
  margin-top: 12px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}
.vb-wa-panel.open { display: block; }

/* MAIN CONTENT */
.vb-blog-main {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* ---------------- MOBILE FLOAT BUTTON ---------------- */
.vb-mobile-float-btn {
  display: none;
}

@media(max-width: 768px) {
  .vb-mobile-float-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
    background: #152530;
    color: white;
    border-radius: 50px;
    z-index: 9999;
    border: none;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  }
}

/* ---------------- MOBILE BOTTOM SLIDE PANEL ---------------- */
.vb-mobile-panel {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 25px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.25);
  transition: bottom 0.35s ease-in-out;
  z-index: 99999;
}

.vb-mobile-panel.open {
  bottom: 0;
}

/* CLOSE BUTTON */
.vb-close-panel {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #152530;
  font-weight: 600;
}

/* SALES CARD MOBILE */
.vb-mobile-sales {
  margin-top: 20px;
  background: #fff7e3;
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid #C8A44D;
}

.vb-mobile-sales h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #152530;
}

.vb-mobile-sales ul {
  margin: 0;
  padding-left: 18px;
}

.vb-mobile-sales ul li {
  margin-bottom: 6px;
  font-size: 14px;
}
/* FIX MOBILE PANEL RIGHT SIDE OVERFLOW */
.vb-mobile-panel,
.vb-mobile-panel * {
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

.vb-share-btn {
  width: 100% !important;
}

.vb-mobile-panel {
  left: 0 !important;
  right: 0 !important;
  padding: 25px 16px !important;
}
/* DESKTOP SALES BOX */
.vb-sales-desktop {
  background: #fff7e3;
  border-left: 4px solid #C8A44D;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.vb-sales-desktop h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #152530;
}

.vb-sales-desktop ul {
  margin: 0 0 15px 0;
  padding-left: 18px;
}

.vb-sales-desktop ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #1a1a1a;
}
