/* O2B Clinic healthcare palette — inspired by the supplied red/blue clinic branding */
:root {
  --clinic-red: #e31e24;
  --clinic-red-dark: #bd171c;
  --clinic-blue: #008bd2;
  --clinic-blue-dark: #006fae;
  --clinic-navy: #14364b;
  --clinic-ink: #173242;
  --clinic-sky: #eef8fd;
  --clinic-blue-soft: #e9f6fc;
  --clinic-border: #dce9ef;
  --clinic-muted: #6d7f87;
  --clinic-success: #21885d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.container{
    max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
body {
  margin: 0;
  padding: 0px;
  font-family: "DM Sans", sans-serif;
  color: #12232d;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.o2b-main-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #edf2f4;

}

.o2b-header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}

.o2b-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.o2b-brand-link img {
  width: 80px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}

.o2b-brand-text {
  font-size: 19px;
  color: #1a2d3d;
  line-height: 1.15;
}

.o2b-brand-name {
  font-weight: 800;
  color: #1a2d3d;
}

.o2b-brand-tagline {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #8c9ba5;
  margin-top: 2px;
}

.o2b-toggle-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #1a2d3d;
  padding: 0;
}

.o2b-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
}

.o2b-nav-item {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #55697a;
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.2s ease;
}

.o2b-nav-item:hover,
.o2b-nav-item.o2b-active-item {
  color: #1a2d3d;
  font-weight: 700;
}

.o2b-nav-item.o2b-active-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #0081cf;
  border-radius: 2px;
}

.o2b-login-action {
  background-color: #0081cf;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.o2b-login-action:hover {
  background-color: #006eb3;
  color: #ffffff;
}

.o2b-appointment-action {
  background-color: #e52528;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.o2b-appointment-action:hover {
  background-color: #cb1c1f;
  color: #ffffff;
}

@media (max-width: 991px) {
  .o2b-toggle-btn {
    display: block;
  }

  .o2b-nav-wrapper {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #edf2f4;
  }

  .o2b-nav-wrapper.o2b-menu-open {
    display: flex;
  }

  .o2b-nav-item {
    padding: 6px 0;
  }

  .o2b-nav-item.o2b-active-item::after {
    width: 40px;
  }

  .o2b-login-action,
  .o2b-appointment-action {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}


.o2b-hero-section {
  background: radial-gradient(
    100% 100% at 50% 0%,
    #f1f9fd 0%,
    #f6fbfd 50%,
    #edf6fb 100%
  );
  padding: 60px 0 50px;
  color: #17343c;
  overflow: visible;
}

.o2b-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: 40px;
  position: relative;
}

.o2b-hero-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: #0081cf;
  margin-bottom: 18px;
}

.o2b-hero-title {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  color: #162a36;
  letter-spacing: -1.8px;
  margin: 0 0 20px 0;
  max-width: 680px;
}

.o2b-hero-title-accent {
  color: #0081cf;
}

.o2b-hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #6a7c85;
  max-width: 480px;
  margin: 0 0 32px 0;
}

.o2b-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.o2b-cta-btn-primary {
  background: #e52528;
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(229, 37, 40, 0.22);
  transition: all 0.2s ease;
}

.o2b-cta-btn-primary:hover {
  background: #cb1c1f;
  color: #ffffff;
  transform: translateY(-1px);
}

.o2b-cta-btn-secondary {
  background: #ffffff;
  color: #1a2d3d;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfe5ea;
  transition: all 0.2s ease;
}

.o2b-cta-btn-secondary:hover {
  border-color: #c4d1da;
  background: #fbfcfd;
  color: #1a2d3d;
}

.o2b-consult-icon {
  width: 9px;
  height: 9px;
  background-color: #203a45;
  border-radius: 50%;
  display: inline-block;
}

.o2b-trust-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #7b8e97;
  font-weight: 500;
}

.o2b-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.o2b-check {
  font-weight: 700;
  color: #7b8e97;
}

.o2b-hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.o2b-hero-image-card {
  width: 100%;
  height: 470px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(18, 54, 70, 0.1);
  background-color: #dfeef5;
}

.o2b-doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.o2b-rating-badge {
  position: absolute;
  top: 24px;
  right: -12px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(22, 45, 60, 0.12);
  text-align: center;
  z-index: 3;
}

.o2b-rating-score {
  font-size: 16px;
  font-weight: 800;
  color: #162a36;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.o2b-star {
  font-size: 13px;
  color: #162a36;
}

.o2b-rating-label {
  font-size: 10.5px;
  color: #8c9fa8;
  font-weight: 600;
  margin-top: 3px;
}

.o2b-floating-status-card {
  position: absolute;
  left: -48px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 24px;
  width: 275px;
  box-shadow: 0 18px 45px rgba(22, 45, 60, 0.1);
  z-index: 3;
}

.o2b-status-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.o2b-status-indicator {
  width: 8px;
  height: 8px;
  background-color: #0081cf;
  border-radius: 50%;
  display: inline-block;
}

.o2b-status-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a2d3d;
}

.o2b-status-subtitle {
  font-size: 12px;
  color: #83959e;
  margin: 6px 0 10px 0;
}

.o2b-status-link {
  font-size: 13px;
  font-weight: 700;
  color: #0081cf;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}

.o2b-status-link:hover {
  transform: translateX(3px);
  color: #006eb3;
}

.o2b-finder-card {
  margin-top: 34px;
  background: #ffffff;
  padding: 12px 18px 12px 28px;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1.15fr)
    auto
    minmax(0, 1.15fr)
    auto;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(18, 48, 64, 0.08);
  border: 1px solid #edf2f5;
  position: relative;
  z-index: 20;
}

.o2b-finder-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.o2b-field-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #8c9fa8;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: block;
  user-select: none;
}

.o2b-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.o2b-custom-select {
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #142a38;
  cursor: pointer;
  padding: 2px 28px 2px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 2;
}

.o2b-custom-select:focus {
  color: #0081cf;
}

.o2b-custom-select option {
  color: #142a38;
  background-color: #ffffff;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 500;
}

.o2b-chevron-icon {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.2s ease;
}

.o2b-custom-select:focus + .o2b-chevron-icon {
  transform: translateY(-50%) rotate(180deg);
}

.o2b-finder-divider {
  width: 1px;
  height: 42px;
  background-color: #eef2f5;
  margin: 0 20px;
}

.o2b-finder-btn {
  background: #e52528;
  color: #ffffff;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 14px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(229, 37, 40, 0.25);
  margin-left: 10px;
  transition: all 0.2s ease;
}

.o2b-finder-btn:hover {
  background: #cb1c1f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(229, 37, 40, 0.32);
}

@media (min-width: 1201px) {
  .o2b-hero-section {
    padding: 65px 0 55px;
  }

  .o2b-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 50px;
  }

  .o2b-hero-title {
    font-size: 58px;
  }

  .o2b-hero-visual-wrapper {
    max-width: 480px;
  }
}

@media (min-width: 1001px) and (max-width: 1200px) {
  .o2b-hero-section {
    padding: 55px 0 45px;
  }

  .o2b-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 28px;
  }

  .o2b-hero-title {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -1.3px;
  }

  .o2b-hero-description {
    font-size: 15px;
    max-width: 440px;
  }

  .o2b-hero-visual-wrapper {
    max-width: 420px;
  }

  .o2b-hero-image-card {
    height: 430px;
    border-radius: 30px;
  }

  .o2b-rating-badge {
    top: 18px;
    right: -8px;
    padding: 10px 15px;
  }

  .o2b-floating-status-card {
    left: -25px;
    bottom: 20px;
    width: 250px;
    padding: 15px 20px;
  }

  .o2b-finder-card {
    padding-left: 20px;
    padding-right: 14px;
  }

  .o2b-finder-divider {
    margin: 0 12px;
  }

  .o2b-finder-btn {
    padding: 13px 22px;
    font-size: 13px;
  }

  .o2b-custom-select {
    font-size: 13.5px;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .o2b-hero-section {
    padding: 45px 0 40px;
  }

  .o2b-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 22px;
    align-items: center;
  }

  .o2b-hero-eyebrow {
    font-size: 10px;
    letter-spacing: 1.8px;
    margin-bottom: 13px;
  }

  .o2b-hero-title {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .o2b-hero-description {
    font-size: 14px;
    line-height: 1.55;
    max-width: 400px;
    margin-bottom: 24px;
  }

  .o2b-hero-cta-group {
    gap: 10px;
    margin-bottom: 25px;
  }

  .o2b-cta-btn-primary,
  .o2b-cta-btn-secondary {
    padding: 11px 18px;
    font-size: 13px;
    border-radius: 10px;
  }

  .o2b-trust-badges {
    gap: 12px;
    font-size: 11px;
  }

  .o2b-hero-visual-wrapper {
    max-width: 370px;
  }

  .o2b-hero-image-card {
    height: 390px;
    border-radius: 27px;
  }

  .o2b-rating-badge {
    top: 15px;
    right: -6px;
    padding: 9px 12px;
    border-radius: 13px;
  }

  .o2b-rating-score {
    font-size: 14px;
  }

  .o2b-rating-label {
    font-size: 9px;
  }

  .o2b-floating-status-card {
    left: -18px;
    bottom: 16px;
    width: 220px;
    padding: 13px 16px;
    border-radius: 16px;
  }

  .o2b-status-title {
    font-size: 12px;
  }

  .o2b-status-subtitle {
    font-size: 10.5px;
    margin: 5px 0 8px;
  }

  .o2b-status-link {
    font-size: 11px;
  }

  .o2b-finder-card {
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    padding: 18px 20px;
    margin-top: 28px;
  }

  .o2b-finder-divider {
    display: none;
  }

  .o2b-finder-btn {
    width: 100%;
    margin-left: 0;
    padding: 13px 20px;
  }

  .o2b-finder-field {
    min-width: 0;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .o2b-hero-section {
    padding: 45px 0 40px;
  }

  .o2b-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .o2b-hero-content {
    text-align: center;
  }

  .o2b-hero-eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .o2b-hero-title {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
  }

  .o2b-hero-description {
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }

  .o2b-hero-cta-group {
    justify-content: center;
    margin-bottom: 25px;
  }

  .o2b-trust-badges {
    justify-content: center;
  }

  .o2b-hero-visual-wrapper {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .o2b-hero-image-card {
    height: 440px;
    border-radius: 30px;
  }

  .o2b-rating-badge {
    right: -5px;
    top: 18px;
  }

  .o2b-floating-status-card {
    left: -10px;
    bottom: 20px;
    width: 245px;
  }

  .o2b-finder-card {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    margin-top: 30px;
  }

  .o2b-finder-divider {
    display: none;
  }

  .o2b-finder-btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  .o2b-hero-section {
    padding: 40px 0 35px;
  }

  .o2b-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .o2b-hero-content {
    text-align: center;
  }

  .o2b-hero-eyebrow {
    font-size: 9.5px;
    letter-spacing: 1.7px;
    margin-bottom: 11px;
  }

  .o2b-hero-title {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 15px;
  }

  .o2b-hero-description {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 auto 23px;
    max-width: 480px;
  }

  .o2b-hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-bottom: 23px;
  }

  .o2b-cta-btn-primary,
  .o2b-cta-btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 13.5px;
  }

  .o2b-trust-badges {
    justify-content: center;
    gap: 10px 17px;
    font-size: 11px;
  }

  .o2b-hero-visual-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .o2b-hero-image-card {
    height: 390px;
    border-radius: 27px;
  }

  .o2b-rating-badge {
    top: 14px;
    right: 8px;
    padding: 9px 13px;
    border-radius: 13px;
  }

  .o2b-rating-score {
    font-size: 14px;
  }

  .o2b-rating-label {
    font-size: 9px;
  }

  .o2b-floating-status-card {
    position: static;
    width: 100%;
    margin: 12px auto 0;
    padding: 14px 18px;
    border-radius: 16px;
  }

  .o2b-finder-card {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 18px;
    margin-top: 25px;
    border-radius: 16px;
  }

  .o2b-finder-divider {
    display: none;
  }

  .o2b-finder-btn {
    width: 100%;
    margin-left: 0;
    padding: 13px 20px;
  }

  .o2b-custom-select {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .o2b-hero-section {
    padding: 32px 0 30px;
  }

  .o2b-hero-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .o2b-hero-content {
    text-align: center;
  }

  .o2b-hero-eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .o2b-hero-title {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
  }

  .o2b-hero-description {
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 100%;
    margin: 0 auto 21px;
  }

  .o2b-hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 21px;
  }

  .o2b-cta-btn-primary,
  .o2b-cta-btn-secondary {
    width: 100%;
    padding: 11px 18px;
    font-size: 13px;
    border-radius: 10px;
  }

  .o2b-trust-badges {
    justify-content: center;
    gap: 8px 13px;
    font-size: 10.5px;
  }

  .o2b-hero-visual-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .o2b-hero-image-card {
    width: 100%;
    height: clamp(330px, 90vw, 390px);
    border-radius: 23px;
  }

  .o2b-rating-badge {
    top: 12px;
    right: 10px;
    padding: 8px 11px;
    border-radius: 12px;
  }

  .o2b-rating-score {
    font-size: 13px;
  }

  .o2b-star {
    font-size: 11px;
  }

  .o2b-rating-label {
    font-size: 8.5px;
  }

  .o2b-floating-status-card {
    position: static;
    width: 100%;
    margin: 10px auto 0;
    padding: 13px 16px;
    border-radius: 15px;
  }

  .o2b-status-title {
    font-size: 12px;
  }

  .o2b-status-subtitle {
    font-size: 10.5px;
    margin: 5px 0 8px;
  }

  .o2b-status-link {
    font-size: 11px;
  }

  .o2b-finder-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    margin-top: 22px;
    border-radius: 15px;
  }

  .o2b-finder-divider {
    display: none;
  }

  .o2b-field-label {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .o2b-custom-select {
    font-size: 13px;
    padding-right: 25px;
  }

  .o2b-finder-btn {
    width: 100%;
    margin-left: 0;
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 11px;
  }
}

@media (max-width: 360px) {
  .o2b-hero-section {
    padding: 28px 0 25px;
  }

  .o2b-hero-grid {
    gap: 23px;
  }

  .o2b-hero-title {
    font-size: 29px;
    letter-spacing: -0.5px;
  }

  .o2b-hero-description {
    font-size: 13px;
  }

  .o2b-trust-badges {
    font-size: 9.5px;
    gap: 7px 10px;
  }

  .o2b-hero-image-card {
    height: 320px;
    border-radius: 20px;
  }

  .o2b-rating-badge {
    right: 8px;
    top: 9px;
    padding: 7px 9px;
  }

  .o2b-floating-status-card {
    padding: 12px 14px;
  }

  .o2b-finder-card {
    padding: 14px;
  }
}
.o2b-quick-actions-section {
  width: 100%;
  padding: 10px 0 20px;
}

.o2b-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.o2b-quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e1ebef;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.o2b-quick-card:hover {
  transform: translateY(-3px);
  border-color: #c9dde5;
  box-shadow: 0 10px 24px rgba(18, 54, 70, 0.06);
}

.o2b-quick-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6fc;
  color: #0b8094;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.o2b-quick-card:hover .o2b-quick-icon-box {
  background: #0081cf;
  color: #ffffff;
}

.o2b-quick-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.o2b-quick-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #122836;
  line-height: 1.25;
  margin-bottom: 3px;
}

.o2b-quick-desc {
  font-size: 11.5px;
  color: #7b8e97;
  line-height: 1.2;
}

.o2b-quick-arrow {
  color: #0081cf;
  font-size: 16px;
  font-weight: 600;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.o2b-quick-card:hover .o2b-quick-arrow {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .o2b-quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .o2b-quick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .o2b-quick-card {
    padding: 14px 16px;
  }
}
.o2b-about-section {
  padding: 85px 0 95px;
  background-color: #ffffff;
  width: 100%;
}

.o2b-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
  align-items: center;
}

/* Left Content */
.o2b-about-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 14px;
}

.o2b-about-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #122836;
  letter-spacing: -1.2px;
  margin: 0 0 16px 0;
}

.o2b-about-accent {
  color: #0081cf;
}

.o2b-about-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #6a7c85;
  margin: 0 0 32px 0;
  max-width: 490px;
}

/* Feature List */
.o2b-feature-list {
  display: flex;
  flex-direction: column;
}

.o2b-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid #edf2f5;
}

.o2b-feature-number {
  font-size: 12px;
  font-weight: 800;
  color: #0081cf;
  line-height: 1.6;
  min-width: 18px;
}

.o2b-feature-text {
  display: flex;
  flex-direction: column;
}

.o2b-feature-heading {
  font-size: 15px;
  font-weight: 700;
  color: #122836;
  margin-bottom: 4px;
}

.o2b-feature-sub {
  font-size: 12.5px;
  color: #7b8e97;
  line-height: 1.45;
}

/* Right Stats Panel */
.o2b-about-panel {
  background: #103043;
  color: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(16, 48, 67, 0.12);
}

.o2b-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.o2b-stat-box {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.o2b-stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.o2b-stat-label {
  display: block;
  font-size: 12px;
  color: #a4bcc7;
  font-weight: 500;
}

.o2b-quote-box {
  margin-top: 36px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: #d8e8ef;
  letter-spacing: -0.2px;
}

/* Responsive Breakpoints */
@media (max-width: 1080px) {
  .o2b-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .o2b-about-desc {
    max-width: 100%;
  }

  .o2b-about-panel {
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .o2b-about-section {
    padding: 60px 0;
  }

  .o2b-about-title {
    font-size: 32px;
  }

  .o2b-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .o2b-about-panel {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .o2b-stat-box {
    padding: 20px 16px;
  }

  .o2b-quote-box {
    font-size: 16px;
    margin-top: 24px;
  }
}
.o2b-specs-section {
  padding: 85px 0 95px;
  background-color: #f6fafc;
  width: 100%;
}

.o2b-specs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
  gap: 20px;
}

.o2b-specs-title-group {
  display: flex;
  flex-direction: column;
}

.o2b-specs-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 12px;
}

.o2b-specs-heading {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #122836;
  letter-spacing: -1.2px;
  margin: 0;
}

.o2b-specs-accent {
  color: #0081cf;
}

.o2b-specs-view-all-btn {
  background: transparent;
  border: none;
  color: #0081cf;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.o2b-specs-view-all-btn:hover {
  color: #006eb3;
  transform: translateX(3px);
}

.o2b-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.o2b-spec-card {
  background: #ffffff;
  border: 1px solid #e2ebed;
  border-radius: 18px;
  padding: 24px 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.o2b-spec-card:hover {
  transform: translateY(-4px);
  border-color: #c9dbe3;
  box-shadow: 0 16px 36px rgba(18, 54, 70, 0.08);
}

.o2b-spec-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaf6fc;
  color: #0081cf;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.2s ease, color 0.2s ease;
}

.o2b-spec-card:hover .o2b-spec-icon-box {
  background: #0081cf;
  color: #ffffff;
}

.o2b-spec-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #122836;
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.o2b-spec-desc {
  font-size: 12.5px;
  color: #75868b;
  line-height: 1.55;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.o2b-spec-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #0081cf;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.o2b-spec-card:hover .o2b-spec-link {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .o2b-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .o2b-specs-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .o2b-specs-heading {
    font-size: 32px;
  }
}

@media (max-width: 540px) {
  .o2b-specs-section {
    padding: 60px 0;
  }

  .o2b-specs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .o2b-spec-card {
    padding: 20px;
  }
}
.o2b-doctors-section {
  padding: 85px 0 95px;
  background-color: #ffffff;
  width: 100%;
}

.o2b-doctors-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
  gap: 20px;
}

.o2b-doctors-title-group {
  display: flex;
  flex-direction: column;
}

.o2b-doctors-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 12px;
}

.o2b-doctors-heading {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #122836;
  letter-spacing: -1.2px;
  margin: 0;
}

.o2b-doctors-accent {
  color: #0081cf;
}

.o2b-doctors-view-all-btn {
  background: transparent;
  border: none;
  color: #0081cf;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.o2b-doctors-view-all-btn:hover {
  color: #006eb3;
  transform: translateX(3px);
}

.o2b-doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.o2b-doc-card {
  background: #ffffff;
  border: 1px solid #e2ebed;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.o2b-doc-card:hover {
  transform: translateY(-4px);
  border-color: #c9dbe3;
  box-shadow: 0 16px 36px rgba(18, 54, 70, 0.08);
}

.o2b-doc-photo {
  height: 270px;
  width: 100%;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #edf2f5;
}

.o2b-doc-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.o2b-doc-name {
  font-size: 18px;
  font-weight: 700;
  color: #122836;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.o2b-doc-spec {
  font-size: 13px;
  font-weight: 600;
  color: #0081cf;
  margin: 0 0 16px 0;
}

.o2b-doc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7b8e97;
  padding: 12px 0 16px;
  border-top: 1px solid #edf2f5;
  margin-top: auto;
}

.o2b-doc-qual {
  font-weight: 500;
}

.o2b-doc-rating {
  font-weight: 700;
  color: #122836;
}

.o2b-doc-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}

.o2b-doc-btn-profile {
  background: #ffffff;
  border: 1px solid #d8e5e7;
  color: #122836;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.o2b-doc-btn-profile:hover {
  background: #f8fafb;
  border-color: #b8cbd0;
}

.o2b-doc-btn-book {
  background: #eaf6fc;
  border: 1px solid transparent;
  color: #0081cf;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.o2b-doc-btn-book:hover {
  background: #0081cf;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .o2b-doctors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .o2b-doctors-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .o2b-doctors-heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .o2b-doctors-section {
    padding: 60px 0;
  }

  .o2b-doctors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .o2b-doc-photo {
    height: 250px;
  }

  .o2b-doc-actions {
    grid-template-columns: 1fr;
  }

  .o2b-doc-btn-profile,
  .o2b-doc-btn-book {
    text-align: center;
    padding: 11px;
  }
}
.o2b-services-section {
  padding: 85px 0 95px;
  background-color: #f6fafc;
  width: 100%;
}

.o2b-services-head {
  margin-bottom: 38px;
}

.o2b-services-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 12px;
}

.o2b-services-heading {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #122836;
  letter-spacing: -1.2px;
  margin: 0;
}

.o2b-services-accent {
  color: #0081cf;
}

.o2b-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.o2b-service-card {
  background: #ffffff;
  border: 1px solid #e2ebed;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.o2b-service-card:hover {
  transform: translateY(-4px);
  border-color: #c9dbe3;
  box-shadow: 0 16px 36px rgba(18, 54, 70, 0.08);
}

.o2b-service-number {
  font-size: 13px;
  font-weight: 800;
  color: #0081cf;
  margin-bottom: 22px;
  line-height: 1;
}

.o2b-service-title {
  font-size: 18px;
  font-weight: 700;
  color: #122836;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.o2b-service-desc {
  font-size: 13px;
  color: #75868b;
  line-height: 1.55;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.o2b-service-price {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #122836;
  margin-bottom: 14px;
}

.o2b-service-btn {
  background: transparent;
  border: none;
  color: #0081cf;
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.o2b-service-card:hover .o2b-service-btn {
  transform: translateX(4px);
  color: #006eb3;
}

@media (max-width: 1100px) {
  .o2b-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .o2b-services-heading {
    font-size: 32px;
  }
}

@media (max-width: 540px) {
  .o2b-services-section {
    padding: 60px 0;
  }

  .o2b-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .o2b-service-card {
    padding: 22px 20px;
  }
}


.o2b-booking-section {
  background: #14364b;
  color: #ffffff;
  padding: 85px 0 95px;
  width: 100%;
}

.o2b-booking-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.o2b-booking-head {
  margin-bottom: 34px;
}

.o2b-booking-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #73c7ef;
  margin-bottom: 12px;
}

.o2b-booking-heading {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.2px;
  margin: 0;
}

.o2b-booking-accent {
  color: #008bd2;
}

.o2b-booking-box {
  background: #ffffff;
  color: #18333b;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 26, 36, 0.25);
}

/* 6 Steps Strictly in 1 Row */
.o2b-steps-track {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  border-bottom: 1px solid #edf2f5;
  background: #ffffff;
}

.o2b-step-item {
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8c9fa8;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.o2b-step-item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #edf3f5;
  color: #778b94;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.o2b-step-item.active {
  color: #0081cf;
  font-weight: 700;
}

.o2b-step-item.active b {
  background: #0081cf;
  color: #ffffff;
}

.o2b-booking-body {
  padding: 40px;
}

.o2b-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #122836;
  margin: 0 0 24px 0;
}

.hidden {
  display: none !important;
}

/* Step 1 Options */
.o2b-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.o2b-booking-option {
  text-align: left;
  background: #ffffff;
  border: 1px solid #dce7ea;
  border-radius: 14px;
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.o2b-booking-option:hover {
  border-color: #0081cf;
}

.o2b-booking-option.selected {
  border: 2px solid #0081cf;
  background: #f4faff;
}

.o2b-booking-option b {
  font-size: 15px;
  font-weight: 700;
  color: #122836;
  margin-bottom: 6px;
}

.o2b-booking-option small {
  font-size: 12.5px;
  color: #7b8e97;
}

.o2b-btn-next {
  background: #e52528;
  color: #ffffff;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(229, 37, 40, 0.22);
  transition: all 0.2s ease;
}

.o2b-btn-next:hover {
  background: #cb1c1f;
  transform: translateY(-1px);
}

/* Step 2 Doctor Selector */
.o2b-booking-select {
  width: 100%;
  border: 1px solid #dce7ea;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: #122836;
  outline: none;
  background: #ffffff;
  margin-bottom: 28px;
}

/* Step 3 Date & Time */
.o2b-date-group,
.o2b-time-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.o2b-date-btn {
  background: #ffffff;
  border: 1px solid #dce7ea;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  text-align: center;
  color: #6a7c85;
  font-size: 13px;
  transition: all 0.15s ease;
}

.o2b-date-btn b {
  font-size: 16px;
  color: #122836;
}

.o2b-date-btn.selected,
.o2b-date-btn:hover {
  background: #f4faff;
  border-color: #0081cf;
}

.o2b-time-btn {
  background: #ffffff;
  border: 1px solid #dce7ea;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #122836;
  cursor: pointer;
  transition: all 0.15s ease;
}

.o2b-time-btn.selected,
.o2b-time-btn:hover {
  background: #f4faff;
  border-color: #0081cf;
}

/* Step 4 Form */
.o2b-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.o2b-form-input,
.o2b-form-textarea {
  border: 1px solid #dce7ea;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: #122836;
  outline: none;
}

.o2b-form-textarea {
  grid-column: 1 / -1;
  min-height: 100px;
  resize: vertical;
}

.o2b-terms-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #6a7c85;
  margin-bottom: 24px;
  cursor: pointer;
}

/* Step 5 Payment */
.o2b-payment-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: flex-start;
}

.o2b-payment-note {
  font-size: 14px;
  color: #6a7c85;
  line-height: 1.6;
  margin-bottom: 22px;
}

.o2b-payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.o2b-pay-method-btn {
  background: #ffffff;
  border: 1px solid #dce7ea;
  border-radius: 12px;
  padding: 16px 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.o2b-pay-method-btn.selected {
  border: 2px solid #0081cf;
  background: #f4faff;
}

.o2b-pay-method-btn b {
  font-size: 14.5px;
  color: #122836;
  display: block;
  margin-bottom: 4px;
}

.o2b-pay-method-btn small {
  font-size: 11px;
  color: #7b8e97;
  display: block;
}

.o2b-payment-summary-card {
  background: #f8fafc;
  border: 1px solid #e5ecef;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.o2b-summary-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8c9fa8;
  font-weight: 700;
}

.o2b-summary-doc-name {
  font-size: 17px;
  color: #122836;
}

.o2b-summary-line {
  font-size: 13.5px;
  color: #55697a;
}

.o2b-summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2ebed;
  margin-top: 10px;
  padding-top: 14px;
}

.o2b-summary-price {
  font-size: 24px;
  font-weight: 800;
  color: #e52528;
}

.o2b-btn-pay {
  background: #e52528;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.o2b-btn-pay:hover {
  background: #cb1c1f;
}

.o2b-payment-demo-label {
  font-size: 10px;
  color: #8c9fa8;
  line-height: 1.4;
  margin-top: 6px;
}

/* Step 6 Token */
.o2b-token-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.o2b-success-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f6ee;
  color: #1ea060;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}

.o2b-token-heading-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 6px;
}

.o2b-token-title {
  font-size: 24px;
  font-weight: 800;
  color: #122836;
  margin: 0 0 8px 0;
}

.o2b-token-desc {
  font-size: 13.5px;
  color: #6a7c85;
  margin: 0 0 24px 0;
}

.o2b-token-card {
  background: linear-gradient(135deg, #103043, #194e6d);
  border-radius: 20px;
  padding: 28px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 48, 67, 0.18);
  margin-bottom: 24px;
}

.o2b-token-card-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #84ccf0;
}

.o2b-token-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 8px 0;
}

.o2b-token-detail-text {
  display: block;
  font-size: 13px;
  color: #d8ecf6;
}

.o2b-token-meta-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 16px;
  padding-top: 14px;
  font-size: 12px;
  color: #b7d6e6;
}

.o2b-token-meta-row b {
  color: #ffffff;
}

.o2b-token-actions-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.o2b-btn-token-primary {
  background: #e52528;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.o2b-btn-token-ghost {
  background: #ffffff;
  color: #122836;
  border: 1px solid #dce7ea;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.o2b-token-footer-note {
  font-size: 11px;
  color: #8c9fa8;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .o2b-steps-track {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .o2b-step-item {
    padding: 16px 12px;
  }

  .o2b-payment-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .o2b-booking-body {
    padding: 24px 18px;
  }

  .o2b-option-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .o2b-payment-methods {
    grid-template-columns: 1fr;
  }

  .o2b-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .o2b-booking-section {
    padding: 60px 0;
  }

  .o2b-booking-heading {
    font-size: 32px;
  }

  .o2b-token-actions-group {
    flex-direction: column;
  }

  .o2b-btn-token-primary,
  .o2b-btn-token-ghost {
    width: 100%;
  }
}
.o2b-booking-section {
  background-color: #103043;
  padding: 85px 0 100px;
  width: 100%;
}

.o2b-booking-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.o2b-booking-head {
  margin-bottom: 34px;
}

.o2b-booking-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #73c7ef;
  margin-bottom: 10px;
}

.o2b-booking-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.2px;
  margin: 0;
}

.o2b-booking-accent {
  color: #0081cf;
}

.o2b-booking-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(8, 24, 34, 0.25);
  overflow: hidden;
}

.o2b-stepper-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #edf2f5;
  background: #ffffff;
}

.o2b-step-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 14px;
  color: #8c9ea7;
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  user-select: none;
}

.o2b-step-item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #f0f4f7;
  color: #7b8f99;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.o2b-step-item.active {
  color: #0081cf;
  border-bottom-color: #0081cf;
}

.o2b-step-item.active b {
  background: #0081cf;
  color: #ffffff;
}

.o2b-booking-body {
  padding: 44px 50px;
}

.o2b-step-heading {
  font-size: 22px;
  font-weight: 800;
  color: #122836;
  margin: 0 0 24px 0;
  letter-spacing: -0.4px;
}

.hidden {
  display: none !important;
}

.o2b-service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.o2b-service-opt-btn {
  text-align: left;
  background: #ffffff;
  border: 1px solid #e1ebef;
  border-radius: 16px;
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.o2b-service-opt-btn:hover {
  border-color: #0081cf;
  background: #fafcfe;
}

.o2b-service-opt-btn.selected {
  border: 2px solid #0081cf;
  background: #f0f7fc;
}

.o2b-service-opt-btn b {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #122836;
  margin-bottom: 5px;
}

.o2b-service-opt-btn small {
  display: block;
  font-size: 12px;
  color: #7b8e97;
}

.o2b-select-field-box {
  margin-bottom: 28px;
}

.o2b-form-full-select {
  width: 100%;
  border: 1px solid #dce5e9;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #122836;
  outline: none;
  background-color: #ffffff;
}

.o2b-form-full-select:focus {
  border-color: #0081cf;
}

.o2b-date-picker-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.o2b-date-slot-btn {
  background: #ffffff;
  border: 1px solid #dce5e9;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  color: #7b8e97;
  line-height: 1.35;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 68px;
}

.o2b-date-slot-btn b {
  font-size: 17px;
  font-weight: 800;
  color: #122836;
}

.o2b-date-slot-btn:hover,
.o2b-date-slot-btn.selected {
  background: #eaf6fc;
  border-color: #0081cf;
}

.o2b-date-slot-btn.selected b {
  color: #0081cf;
}

.o2b-time-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.o2b-time-slot-btn {
  background: #ffffff;
  border: 1px solid #dce5e9;
  border-radius: 10px;
  padding: 12px 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #122836;
  cursor: pointer;
  transition: all 0.2s ease;
}

.o2b-time-slot-btn:hover,
.o2b-time-slot-btn.selected {
  background: #eaf6fc;
  border-color: #0081cf;
  color: #0081cf;
}

.o2b-patient-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.o2b-form-control-input {
  width: 100%;
  border: 1px solid #dce5e9;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: #122836;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.o2b-form-control-input:focus {
  border-color: #0081cf;
}

.o2b-form-control-textarea {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 110px;
  border: 1px solid #dce5e9;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: #122836;
  outline: none;
  background: #ffffff;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.o2b-form-control-textarea:focus {
  border-color: #0081cf;
}

.o2b-consent-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6a7c85;
  margin-bottom: 26px;
  cursor: pointer;
}

.o2b-consent-checkbox {
  width: 17px;
  height: 17px;
  accent-color: #0081cf;
  cursor: pointer;
}

/* Freeze button when unchecked without touching JS */
.o2b-step-pane[data-step="4"]:has(.o2b-consent-checkbox:not(:checked)) .o2b-btn-next-action {
  background-color: #cbd5e1 !important;
  color: #64748b !important;
  border-color: #cbd5e1 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 0.7;
}

.o2b-payment-wrapper {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: start;
}

.o2b-payment-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0081cf;
  margin-bottom: 6px;
}

.o2b-payment-explainer {
  color: #6a7c85;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.o2b-payment-opts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.o2b-pay-opt-card {
  text-align: left;
  background: #ffffff;
  border: 1px solid #dce5e9;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.o2b-pay-opt-card:hover {
  border-color: #0081cf;
}

.o2b-pay-opt-card.selected {
  border: 2px solid #0081cf;
  background: #f0f7fc;
}

.o2b-pay-opt-card b {
  display: block;
  font-size: 15px;
  color: #122836;
  margin-bottom: 4px;
}

.o2b-pay-opt-card small {
  display: block;
  font-size: 10.5px;
  color: #7b8e97;
  line-height: 1.35;
}

.o2b-payment-summary-card {
  background: #f8fafc;
  border: 1px solid #e1ebef;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.o2b-summary-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8c9fa8;
  margin-bottom: 2px;
}

.o2b-summary-doctor {
  font-size: 18px;
  font-weight: 700;
  color: #122836;
  margin-bottom: 4px;
}

.o2b-summary-service,
.o2b-summary-slot {
  font-size: 13px;
  color: #6a7c85;
  margin-bottom: 2px;
}

.o2b-summary-total-row {
  border-top: 1px solid #e5edf1;
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.o2b-summary-total-row span {
  font-size: 13px;
  color: #6a7c85;
  font-weight: 600;
}

.o2b-summary-amount {
  font-size: 26px;
  font-weight: 800;
  color: #e52528;
}

.o2b-btn-confirm-pay {
  background: #e52528;
  color: #ffffff;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  width: 100%;
  margin-top: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.o2b-btn-confirm-pay:hover {
  background: #cb1c1f;
}

.o2b-payment-notice {
  font-size: 9.5px;
  color: #8c9fa8;
  line-height: 1.4;
  margin-top: 12px;
  text-align: center;
}

.o2b-token-success-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.o2b-token-check-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eaf7f1;
  color: #21885d;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.o2b-token-tag-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 8px;
}

.o2b-token-subtext {
  color: #6a7c85;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.o2b-token-display-card {
  margin: 0 auto 24px;
  max-width: 440px;
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #103043, #1c4e6b);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 48, 67, 0.2);
}

.o2b-token-display-card small {
  display: block;
  font-size: 9.5px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #92d0ef;
}

.o2b-token-display-card strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 8px 0;
}

.o2b-token-display-card span {
  display: block;
  font-size: 12.5px;
  color: #dbeaf2;
}

.o2b-token-details-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 18px;
  padding-top: 14px;
  font-size: 11px;
  color: #b7d6e5;
}

.o2b-token-details-meta b {
  color: #ffffff;
  margin-left: 4px;
}

.o2b-token-buttons-group {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.o2b-btn-action-primary {
  background: #e52528;
  color: #ffffff;
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
}
.o2b-btn-action-primary:hover {
  background: #c10003;
  color: #ffffff;
}

.o2b-btn-action-ghost {
  background: #ffffff;
  color: #122836;
  border: 1px solid #dce5e9;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
}
.o2b-btn-action-ghost:hover {
  background: #eeecec;
  color: #122836;
}

.o2b-token-footer-note {
  font-size: 11px;
  color: #8c9fa8;
  margin-top: 18px;
}

.o2b-btn-next-action {
  background: #e52528;
  color: #ffffff;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.o2b-btn-next-action:hover {
  background: #cb1c1f;
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .o2b-stepper-header {
    grid-template-columns: repeat(3, 1fr);
  }

  .o2b-step-item {
    border-bottom: 1px solid #edf2f5;
  }

  .o2b-payment-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .o2b-time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .o2b-booking-section {
    padding: 60px 0;
  }

  .o2b-booking-body {
    padding: 28px 20px;
  }

  .o2b-booking-title {
    font-size: 32px;
  }

  .o2b-patient-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .o2b-service-options,
  .o2b-payment-opts-grid {
    grid-template-columns: 1fr;
  }

  .o2b-btn-next-action {
    width: 100%;
  }

  .o2b-token-buttons-group {
    flex-direction: column;
  }

  .o2b-btn-action-primary,
  .o2b-btn-action-ghost {
    width: 100%;
  }
}

.o2b-tele-section {
  padding: 90px 0 100px;
  background-color: #ffffff;
  width: 100%;
}

.o2b-tele-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.o2b-tele-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

/* Left Content */
.o2b-tele-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 14px;
}

.o2b-tele-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #122836;
  letter-spacing: -1.2px;
  margin: 0 0 18px 0;
}

.o2b-tele-title-accent {
  color: #0081cf;
}

.o2b-tele-description {
  font-size: 15.5px;
  line-height: 1.65;
  color: #6a7c85;
  margin: 0 0 28px 0;
  max-width: 500px;
}

.o2b-tele-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 34px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.o2b-tele-checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: #55697a;
  font-weight: 500;
  line-height: 1.4;
}

.o2b-tele-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0081cf;
  font-weight: 800;
  font-size: 14px;
}

.o2b-tele-btn-action {
  background: #e52528;
  color: #ffffff;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(229, 37, 40, 0.22);
  transition: all 0.2s ease;
}

.o2b-tele-btn-action:hover {
  background: #cb1c1f;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(229, 37, 40, 0.3);
}

/* Right Video Frame */
.o2b-tele-visual {
  width: 100%;
}

.o2b-video-frame {
  background: #14364b;
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 24px 55px rgba(20, 54, 75, 0.16);
}

.o2b-video-screen {
  height: 380px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background-color: #0b1e2a;
}

.o2b-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.o2b-video-doctor-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(14, 38, 52, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  z-index: 2;
}

.o2b-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.o2b-video-pip-window {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 95px;
  height: 80px;
  background: #1e526c;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Video Controls Toolbar */
.o2b-video-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 0 6px;
}

.o2b-tool-btn {
  width: 44px;
  height: 40px;
  background: #2a607a;
  border: none;
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.o2b-tool-btn:hover {
  background: #347696;
}

.o2b-tool-btn.o2b-end-call-btn {
  width: auto;
  padding: 0 20px;
  background: #ba4e4e;
  font-size: 13.5px;
  font-weight: 700;
}

.o2b-tool-btn.o2b-end-call-btn:hover {
  background: #a43e3e;
}

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .o2b-tele-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .o2b-tele-description {
    max-width: 100%;
  }

  .o2b-tele-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .o2b-tele-section {
    padding: 60px 0;
  }

  .o2b-tele-title {
    font-size: 32px;
  }

  .o2b-video-screen {
    height: 280px;
  }

  .o2b-video-pip-window {
    width: 75px;
    height: 65px;
    font-size: 11.5px;
  }

  .o2b-tele-btn-action {
    width: 100%;
  }
}
.o2b-resources-section {
  padding: 85px 0 95px;
  background-color: #f6fafc;
  width: 100%;
}

.o2b-resources-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.o2b-resources-head {
  margin-bottom: 38px;
}

.o2b-resources-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 12px;
}

.o2b-resources-heading {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #122836;
  letter-spacing: -1.2px;
  margin: 0;
}

.o2b-resources-accent {
  color: #0081cf;
}

.o2b-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.o2b-resource-card {
  background: #ffffff;
  border: 1px solid #e2ebed;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.o2b-resource-card:hover {
  transform: translateY(-4px);
  border-color: #c9dbe3;
  box-shadow: 0 16px 36px rgba(18, 54, 70, 0.08);
}

.o2b-resource-img-box {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #edf2f5;
}

.o2b-img-r1 {
  background-image: url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=800&q=80");
}

.o2b-img-r2 {
  background-image: url("https://images.unsplash.com/photo-1508385082359-f38ae991e8f5?auto=format&fit=crop&w=800&q=80");
}

.o2b-img-r3 {
  background-image: url("https://images.unsplash.com/photo-1556228720-195a672e8a03?auto=format&fit=crop&w=800&q=80");
}

.o2b-resource-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.o2b-resource-meta {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #0081cf;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.o2b-resource-title {
  font-size: 18px;
  font-weight: 700;
  color: #122836;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.o2b-resource-desc {
  font-size: 13px;
  color: #75868b;
  line-height: 1.55;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.o2b-resource-link {
  font-size: 13px;
  font-weight: 700;
  color: #0081cf;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  transition: transform 0.2s ease, color 0.2s ease;
}

.o2b-resource-card:hover .o2b-resource-link {
  transform: translateX(4px);
  color: #006eb3;
}

@media (max-width: 992px) {
  .o2b-resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .o2b-resources-heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .o2b-resources-section {
    padding: 60px 0;
  }

  .o2b-resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .o2b-resource-img-box {
    height: 190px;
  }

  .o2b-resource-body {
    padding: 20px;
  }
}

.o2b-testimonials-section {
  text-align: center;
  background-color: #103043;
  color: #ffffff;
  padding: 95px 0 105px;
  width: 100%;
  overflow: hidden;
}

.o2b-testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.o2b-testimonials-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #73c7ef;
  margin-bottom: 12px;
}

.o2b-testimonials-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.2px;
  margin: 0 0 45px 0;
}

.o2b-testimonials-accent {
  color: #0081cf;
}

.o2b-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.o2b-slider-track {
  display: flex;
  width: 300%;
  animation: o2bInfiniteSlide 14s ease-in-out infinite;
}

.o2b-slider-track:hover {
  animation-play-state: paused;
}

.o2b-slider-card {
  width: 33.3333%;
  flex-shrink: 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.o2b-testimonial-stars {
  color: #f1c55d;
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.o2b-testimonial-quote {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
  color: #ffffff;
  letter-spacing: -0.3px;
  max-width: 740px;
  margin: 0 auto 24px;
}

.o2b-testimonial-author {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.o2b-testimonial-role {
  display: block;
  font-size: 12.5px;
  color: #8faec0;
  margin-top: 5px;
}

@keyframes o2bInfiniteSlide {
  0%, 28% {
    transform: translateX(0%);
  }
  33%, 61% {
    transform: translateX(-33.3333%);
  }
  66%, 94% {
    transform: translateX(-66.6666%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media (max-width: 768px) {
  .o2b-testimonials-section {
    padding: 65px 0 75px;
  }

  .o2b-testimonials-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .o2b-testimonial-quote {
    font-size: 18px;
    line-height: 1.5;
  }

  .o2b-testimonial-stars {
    margin-bottom: 16px;
  }
}
.o2b-contact-section {
  padding: 90px 0 100px;
  background-color: #edf7fc;
  width: 100%;
}

.o2b-contact-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.o2b-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

/* Left Column */
.o2b-contact-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 14px;
}

.o2b-contact-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #122836;
  letter-spacing: -1.2px;
  margin: 0 0 18px 0;
}

.o2b-contact-accent {
  color: #0081cf;
}

.o2b-contact-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #6a7c85;
  margin: 0 0 32px 0;
  max-width: 440px;
}

.o2b-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.o2b-channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.o2b-channel-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: #e1f0fa;
  color: #0081cf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.o2b-channel-meta {
  display: flex;
  flex-direction: column;
}

.o2b-channel-name {
  font-size: 15px;
  font-weight: 700;
  color: #122836;
  line-height: 1.25;
}

.o2b-channel-val {
  font-size: 12.5px;
  color: #6a7c85;
  margin-top: 2px;
}

/* Right Form Card */
.o2b-contact-form-card {
  background: #ffffff;
  padding: 38px 36px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(18, 54, 70, 0.07);
  border: 1px solid #e2ebef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.o2b-form-heading {
  font-size: 20px;
  font-weight: 800;
  color: #122836;
  margin: 0 0 10px 0;
  letter-spacing: -0.3px;
}

.o2b-contact-input {
  width: 100%;
  border: 1px solid #dce5e9;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14.5px;
  color: #122836;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.o2b-contact-input:focus {
  border-color: #0081cf;
  box-shadow: 0 0 0 3px rgba(0, 129, 207, 0.1);
}

.o2b-contact-textarea {
  width: 100%;
  min-height: 115px;
  border: 1px solid #dce5e9;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14.5px;
  color: #122836;
  outline: none;
  background: #ffffff;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.o2b-contact-textarea:focus {
  border-color: #0081cf;
  box-shadow: 0 0 0 3px rgba(0, 129, 207, 0.1);
}

.o2b-contact-submit-btn {
  background: #e52528;
  color: #ffffff;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(229, 37, 40, 0.22);
}

.o2b-contact-submit-btn:hover {
  background: #cb1c1f;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(229, 37, 40, 0.3);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .o2b-contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .o2b-contact-desc {
    max-width: 100%;
  }

  .o2b-contact-form-card {
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .o2b-contact-section {
    padding: 60px 0;
  }

  .o2b-contact-title {
    font-size: 32px;
  }

  .o2b-contact-form-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .o2b-contact-submit-btn {
    width: 100%;
  }
}.o2b-footer-section {
  background-color: #ffffff;
  border-top: 1px solid #edf2f5;
  width: 100%;
}

.o2b-footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.o2b-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 65px 0 50px;
}

.o2b-footer-col {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.o2b-footer-brand-col {
  padding-right: 30px;
}

.o2b-footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 22px;
}

.o2b-footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}

.o2b-footer-brand-text {
  font-size: 19px;
  color: #122836;
  line-height: 1.15;
}

.o2b-footer-brand-name {
  font-weight: 800;
  color: #122836;
}

.o2b-footer-brand-tagline {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #8c9ba5;
  margin-top: 2px;
}

.o2b-footer-desc {
  font-size: 14px;
  color: #75868b;
  line-height: 1.6;
  max-width: 290px;
  margin: 0;
}

/* Link Columns */
.o2b-footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #122836;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.o2b-footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.o2b-footer-nav-link {
  font-size: 13.5px;
  color: #6a7c85;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.o2b-footer-nav-link:hover {
  color: #0081cf;
}

/* Footer Bottom */
.o2b-footer-bottom {
  border-top: 1px solid #edf2f5;
  padding: 24px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #8c9ba5;
}

.o2b-footer-copy {
  color: #8c9ba5;
}

.o2b-footer-region {
  color: #8c9ba5;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .o2b-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    padding: 50px 0 40px;
  }

  .o2b-footer-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .o2b-footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .o2b-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 0 35px;
  }

  .o2b-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0 26px;
  }
}/* Toast Notification */
.o2b-toast-notify {
  position: fixed;
  top: 90px;
  right: 25px;
  background: #14364b;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(18, 48, 64, 0.22);
  z-index: 2000;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.o2b-toast-notify.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Floating Chat Widget */
.o2b-chat-widget {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1060;
}

.o2b-chat-trigger-btn {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #0081cf;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 129, 207, 0.38);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.o2b-chat-trigger-btn:hover {
  transform: scale(1.06);
  background: #006eb3;
}

/* Chat Popup Window */
.o2b-chat-panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 300px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(16, 48, 67, 0.18);
  border: 1px solid #edf2f5;
  overflow: hidden;
}

.o2b-chat-panel.open {
  display: block;
  animation: o2bPopUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.o2b-chat-panel-head {
  background: #103043;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.o2b-chat-panel-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.o2b-chat-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.o2b-chat-close-btn:hover {
  opacity: 1;
}

.o2b-chat-panel-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
}

.o2b-chat-greeting-bubble {
  background: #f0f6fa;
  color: #122836;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 6px;
}

.o2b-chat-action-btn {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: 1px solid #e2ebed;
  color: #122836;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.o2b-chat-action-btn:hover {
  border-color: #0081cf;
  background: #f4faff;
  color: #0081cf;
  transform: translateY(-1px);
}

/* Global Modal Backdrop & Card */
.o2b-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 48, 67, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1070;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.o2b-modal-backdrop.open {
  display: flex;
}

.o2b-modal-dialog {
  background: #ffffff;
  border-radius: 22px;
  max-width: 520px;
  width: 100%;
  padding: 34px 30px;
  position: relative;
  box-shadow: 0 25px 60px rgba(16, 48, 67, 0.24);
  animation: o2bPopUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.o2b-modal-close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  border: none;
  background: #f2f6f8;
  color: #7b8e97;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.o2b-modal-close-btn:hover {
  background: #e2ebef;
  color: #122836;
}

/* Dynamically Injected Modal Styles */
.o2b-modal-dynamic-content .eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0081cf;
  margin-bottom: 8px;
}

.o2b-modal-dynamic-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: #122836;
  margin: 0 0 6px 0;
}

.o2b-modal-dynamic-content p {
  color: #6a7c85;
  line-height: 1.6;
  font-size: 13.5px;
  margin: 0 0 16px 0;
}

.o2b-modal-dynamic-content .summary {
  background: #f6fafc;
  border: 1px solid #e8f0f4;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 6px;
  margin: 18px 0 22px;
  font-size: 13px;
  color: #55697a;
}

.o2b-modal-dynamic-content .summary b {
  color: #122836;
  font-size: 14px;
}

.o2b-modal-dynamic-content button.btn.primary {
  width: 100%;
  background: #e52528;
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.o2b-modal-dynamic-content button.btn.primary:hover {
  background: #cb1c1f;
}

@keyframes o2bPopUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .o2b-chat-widget {
    right: 18px;
    bottom: 18px;
  }

  .o2b-chat-panel {
    width: calc(100vw - 36px);
    right: 0;
    bottom: 65px;
  }

  .o2b-toast-notify {
    top: 75px;
    right: 18px;
    left: 18px;
    justify-content: center;
  }

  .o2b-modal-dialog {
    padding: 24px 20px;
    border-radius: 18px;
  }
}
/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */


/* =========================================================
   LARGE DESKTOP
   1201px+
   ========================================================= */

@media (min-width: 1201px) {

  .o2b-checkout-container {
    max-width: 1200px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
  }

  .o2b-card {
    padding: 14px;
  }

}


/* =========================================================
   DESKTOP / SMALL LAPTOP
   901px - 1200px
   ========================================================= */

@media (min-width: 901px) and (max-width: 1200px) {

  body {
    padding: 14px;
  }

  .o2b-checkout-container {
    width: 100%;
    max-width: 1100px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
  }

  .o2b-checkout-right-col {
    position: sticky;
    top: 14px;
  }

  .o2b-card {
    padding: 12px;
  }

  .o2b-section-title {
    font-size: 11px;
  }

  .o2b-method-name {
    font-size: 11px;
  }

  .o2b-method-desc {
    font-size: 9px;
  }

  .o2b-method-option {
    padding: 9px;
  }

  .o2b-secure-banner {
    font-size: 11px;
  }

  .o2b-link-panel {
    padding: 11px;
  }

  .o2b-link-panel-title {
    font-size: 11px;
  }

  .o2b-link-description {
    font-size: 10px;
  }

  .o2b-link-email-label,
  .o2b-form-label {
    font-size: 10px;
  }

  .o2b-link-email,
  .o2b-form-input,
  .o2b-form-select {
    font-size: 12px;
  }

  .o2b-detail-row {
    font-size: 9px;
  }

  .o2b-tax-title {
    font-size: 10px;
  }

  .o2b-tax-upload-prompt p {
    font-size: 9px;
  }

  .o2b-summary-row {
    font-size: 10px;
  }

  .o2b-total-row {
    font-size: 11px;
  }

  .o2b-pay-submit-btn {
    font-size: 10px;
  }

}


/* =========================================================
   IPAD MINI / TABLET LANDSCAPE
   769px - 900px

   Important:
   This is the special tablet breakpoint.
   ========================================================= */

@media (min-width: 769px) and (max-width: 900px) {

  body {
    padding: 10px;
  }

  .o2b-checkout-container {
    width: 100%;
    max-width: 880px;

    /*
      Keep two columns but prevent either column
      from becoming too narrow.
    */
    grid-template-columns:
      minmax(0, 0.95fr)
      minmax(0, 1.05fr);

    gap: 12px;
    align-items: start;
  }

  .o2b-checkout-left-col,
  .o2b-checkout-right-col {
    width: 100%;
    min-width: 0;
  }

  .o2b-checkout-right-col {
    position: sticky;
    top: 10px;
  }


  /* -------------------------
     CARD
     ------------------------- */

  .o2b-card {
    width: 100%;
    padding: 11px;
    margin-bottom: 10px;
    border-radius: 6px;
  }


  /* -------------------------
     SECTION TITLE
     ------------------------- */

  .o2b-section-title {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 9px;
  }


  /* -------------------------
     PAYMENT METHODS
     ------------------------- */

  .o2b-methods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 9px;
  }

  .o2b-method-option {
    min-width: 0;
    padding: 8px;
    gap: 5px;
  }

  .o2b-method-content {
    min-width: 0;
    gap: 5px;
  }

  .o2b-method-svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  .o2b-method-name {
    font-size: 10px;
    line-height: 1.25;
  }

  .o2b-method-desc {
    font-size: 8px;
    line-height: 1.25;
  }

  .o2b-badge {
    right: 6px;
    padding: 2px 4px;
    font-size: 7px;
    letter-spacing: 0.2px;
  }


  /* -------------------------
     LINK BANNER
     ------------------------- */

  .o2b-secure-banner {
    font-size: 10px;
    gap: 5px;
    padding-bottom: 7px;
  }

  .o2b-secure-banner svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }


  /* -------------------------
     LINK PANEL
     ------------------------- */

  .o2b-link-panel {
    padding: 10px;
    margin-bottom: 10px;
  }

  .o2b-link-panel-header {
    gap: 6px;
  }

  .o2b-link-panel-title {
    font-size: 10px;
    line-height: 1.25;
  }

  .o2b-link-panel-title svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
  }

  .o2b-link-close {
    font-size: 17px;
  }

  .o2b-link-description {
    font-size: 9px;
    line-height: 1.35;
    margin: 7px 0 9px;
  }


  /* -------------------------
     LINK EMAIL
     ------------------------- */

  .o2b-link-email-label {
    font-size: 9px;
    margin-bottom: 3px;
  }

  .o2b-link-email {
    width: 100%;
    padding: 8px;
    font-size: 11px;
    min-height: 32px;
  }

  .o2b-verification-btn {
    padding: 8px 10px;
    font-size: 10px;
    margin-top: 8px;
  }


  /* -------------------------
     OTP
     ------------------------- */

  .o2b-verification-copy {
    font-size: 9px;
    margin-bottom: 8px;
  }

  .o2b-otp-grid {
    width: 100%;
    max-width: 220px;
    gap: 5px;
    margin-top: 8px;
  }

  .o2b-otp-input {
    width: 100%;
    height: 34px;
    font-size: 13px;
  }

  .o2b-otp-actions {
    gap: 7px;
    margin-top: 8px;
  }

  .o2b-text-btn {
    font-size: 9px;
  }


  /* -------------------------
     FORM
     ------------------------- */

  .o2b-form-group {
    margin-bottom: 8px;
  }

  .o2b-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .o2b-form-label {
    font-size: 9px;
    margin-bottom: 4px;
  }

  .o2b-form-input,
  .o2b-form-select {
    width: 100%;
    min-width: 0;
    padding: 8px;
    font-size: 11px;
    min-height: 32px;
  }

  .o2b-file-input {
    padding: 7px;
  }


  /* -------------------------
     CHECKBOX
     ------------------------- */

  .o2b-checkbox-label {
    gap: 6px;
    padding: 8px;
    font-size: 8px;
    line-height: 1.4;
  }

  .o2b-checkbox-label input[type="checkbox"] {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }


  /* -------------------------
     CARD DETAILS
     ------------------------- */

  .o2b-detail-row {
    gap: 10px;
    margin-bottom: 7px;
    padding-bottom: 7px;
    font-size: 9px;
    line-height: 1.35;
  }

  .o2b-detail-label {
    min-width: 48px;
  }

  .o2b-detail-value {
    min-width: 0;
    text-align: left;
  }


  /* -------------------------
     TAX EXEMPTION
     ------------------------- */

  .o2b-tax-exemption-box {
    margin-top: 8px;
  }

  .o2b-tax-exemption-info {
    gap: 6px;
    margin-bottom: 6px;
  }

  .o2b-tax-title {
    font-size: 9px;
    line-height: 1.25;
  }

  .o2b-non-exempt-badge {
    font-size: 8px;
    padding: 2px 4px;
    flex: 0 0 auto;
  }

  .o2b-tax-upload-prompt {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px;
  }

  .o2b-tax-upload-prompt p {
    min-width: 0;
    font-size: 8px;
    line-height: 1.35;
  }

  .o2b-upload-btn {
    flex: 0 0 auto;
    min-width: 60px;
    padding: 5px 7px;
    font-size: 8px;
  }


  /* -------------------------
     ORDER SUMMARY
     ------------------------- */

  .o2b-summary-row {
    gap: 8px;
    margin-bottom: 7px;
    font-size: 9px;
  }

  .o2b-total-row {
    padding: 8px;
    margin-top: 6px;
    font-size: 10px;
  }

  .o2b-pay-submit-btn {
    padding: 9px;
    margin-top: 9px;
    border-radius: 7px;
    font-size: 9px;
  }

  .o2b-secure-footer {
    gap: 6px;
    margin-top: 10px;
    font-size: 9px;
  }

  .o2b-stripe-badge {
    padding: 2px 5px;
    font-size: 8px;
  }

}


/* =========================================================
   TABLET PORTRAIT
   601px - 768px

   iPad Mini portrait goes here.
   Stack the columns instead of squeezing them.
   ========================================================= */

@media (min-width: 601px) and (max-width: 768px) {

  body {
    padding: 12px;
  }

  .o2b-checkout-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;

    grid-template-columns: 1fr;
    gap: 0;
  }

  .o2b-checkout-left-col,
  .o2b-checkout-right-col {
    width: 100%;
  }

  .o2b-checkout-right-col {
    position: static;
  }

  .o2b-card {
    padding: 13px;
    margin-bottom: 12px;
  }

  .o2b-methods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .o2b-method-option {
    min-height: 54px;
  }

  .o2b-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .o2b-tax-upload-prompt {
    align-items: center;
    flex-direction: row;
  }

  .o2b-upload-btn {
    align-self: center;
  }

  .o2b-otp-grid {
    max-width: 250px;
  }

}

/* Guaranteed Visible Toast Notification */
#toast,
.toast,
.o2b-toast-notify {
  position: fixed !important;
  top: 90px !important;
  right: 25px !important;
  background: #14364b !important;
  color: #ffffff !important;
  padding: 14px 24px !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  z-index: 999999 !important; /* Kisi bhi header/modal se upar aayega */
  display: none !important;
  transition: all 0.25s ease !important;
}

#toast.show,
.toast.show,
.o2b-toast-notify.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}