.sb-booking.sb-step-form h2 {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-top: 40px;
    color:#fff;
}
.sb-step h3 {
    font-size: 22px !important;
    color:#ffffffe0;
}
/* ===============================
   STEP VISIBILITY
================================ */
.sb-step {
    display: none;
}
.sb-step.active {
    display: block;
}

/* ===============================
   SERVICE CARDS – STEP 1
================================ */
.sb-service-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sb-service-card {
    /* border: 2px solid #e2e6ea; */
    border: 2px solid #e2e6ea40;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    /* background: #fff; */
    background: #9b7a2d30;
    transition: all 0.25s ease;
}

.sb-service-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    border-radius: 100%;
    background: #000;
}

.sb-service-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color:#fff;
}

.sb-service-card:hover {
    border-color: #d9a420;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.sb-service-card.active {
    border-color: #d9a420;
    background: #d9a420 !important;
}
.sb-service-card.active h4{
    color:#fff;
}

/* ===============================
   INSTRUCTOR CARDS – STEP 2
================================ */
.sb-instructor-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); */
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.sb-instructor-card {
    border: 2px solid #e2e6ea40;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    background: #9b7a2d30;
    transition: all 0.25s ease;
}

.sb-instructor-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.sb-instructor-card h4 {
    font-size: 20px;
    margin: 0;
    color:#fff;
}

.sb-instructor-card:hover {
    border-color: #d9a420;
}

.sb-instructor-card.active {
    border-color: #d9a420;
    background: #d9a420 !important;
}
.sb-instructor-card.active h4{
    color: #fff;
}

/* ===============================
   ACTION BUTTONS
================================ */
.sb-actions {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    /* justify-content: center; */
    gap: 10px;
}

.sb-next,
.sb-prev {
    padding: 15px 42px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: "Jost", sans-serif;
}

.sb-next {
    background: #d9a420;
    color: #000;
}

.sb-next:hover {
    background: #d9a420;
}

.sb-prev {
    background: #111111;
    color: #ffffff;
}
.sb-prev {
    background: #000000;
    color: #d9a420;
    border: 1px solid #d9a420;
}

.sb-prev:hover {
    background: #2b2b2b;
    border-color: #d9a420;
}

.sb-next:disabled {
    background: #b5b5b5;
    cursor: not-allowed;
}


/* ===============================
   STEP 3 – DATE & TIME (BEAUTIFUL UI)
================================ */

.sb-step[data-step="3"] {
    max-width: 560px;
    margin: 0 auto;
    overflow: hidden;
}

/* Heading spacing */
.sb-step[data-step="3"] h3 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffffe0;
}

/* Date picker wrapper */
.sb-step[data-step="3"] #sb-date {
    /* width: 100%; */
    width: -webkit-fill-available;
    /* padding: 20px 16px; */
    min-height: 45px;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid #d9a420;
    background: #fff;
    transition: all 0.25s ease;
    color: #000;
    padding:0 10px;
    /* display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none; */
}

/* Focus state */
.sb-step[data-step="3"] #sb-date:focus {
    outline: none;
    border-color: #d9a420;
    box-shadow: 0 0 0 4px rgba(0,115,170,0.12);
}

/* Slot container */
.sb-slots {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

/* Individual slot */
.sb-slot {
    padding: 12px 10px;
    text-align: center;
    font-size: 14px;
    border-radius: 10px;
    border: 2px solid #e2e6ea;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover */
.sb-slot:hover {
    border-color: #d9a420;
    background: #f0f7fc;
	color:#000000;
}

/* Active slot */
.sb-slot.active {
    background: #d9a420 !important;
    border-color: #9B7A2D;
    color: #fff;
    font-weight: 600;
}

/* Action buttons wrapper */
.sb-step[data-step="3"] .sb-actions {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* Buttons */
/* .sb-step[data-step="3"] .sb-prev,
.sb-step[data-step="3"] .sb-next {
    flex: 1;
    padding: 12px 0;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
} */

/* Disabled Next */
.sb-step[data-step="3"] .sb-next:disabled {
    background: #c5c5c5;
    cursor: not-allowed;
}

/* body.page-id-66 footer#colophon {
    margin-top: 40px;
} */
/* Responsive tweak */
@media (max-width: 480px) {
    .sb-step[data-step="3"] .sb-actions {
        flex-direction: column;
    }
    .sb-step[data-step="4"] .sb-actions {
        flex-direction: column;
    }
    .sb-service-card img {
        height: 150px;
        width: 150px;
    }
}



/* ===============================
   STEP 3 – SLOTS
================================ */

.sb-slot-not-valid {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

#sb-date {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.sb-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
}

.sb-slot {
    padding: 10px;
    text-align: center;
    border: 2px solid #e2e6ea;
    border-radius: 8px;
    cursor: pointer;
    background: #313131;
    transition: all 0.2s ease;
}

/* .sb-slot:hover {
    border-color: #0073aa;
    background: #f0f7fc;
}

.sb-slot.active {
    border-color: #0073aa;
    background: #0073aa;
    color: #fff;
} */


/* ===============================
   STEP 4 – CONFIRM SUMMARY
================================ */
.sb-summary {
  background: #1c1c1c;
  border: 1px solid #515151;
  border-radius: 12px;
  padding: 18px;
  font-size: 14px;
}

.sb-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-summary li {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
}

.sb-summary li:last-child {
    border-bottom: none;
}

/* Confirm button */
.sb-confirm {
    background: #d9a420;
    color: #fff;
    border: none;
    padding: 15px 42px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sb-confirm:hover{
    background: #9b7a2dea;
}

/* Success message */
.sb-success {
    margin-top: 15px;
    padding: 14px;
    background: #e9f7ef;
    border: 1px solid #bfe6cf;
    color: #1a7f37;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}





/* ===============================
   STEP 4 – PACKAGES (HORIZONTAL)
================================ */

/* Horizontal layout */
.sb-packages {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

/* Package card */
.sb-package-card {
    position: relative;
    border: 2px solid #e2e6ea;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    background: #1c1c1c;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover */
.sb-package-card:hover {
    border-color: #d9a420;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Active (selected) */
.sb-package-card.active {
    border-color: #d9a420;
    background: #d9a420 !important;
}

.sb-package-card.active h4{
    color:#fff;
}
.sb-package-card.active .sb-price{
    color:#fff;
}

/* Header with select label */
.sb-package-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

/* Select badge */
.sb-select-label {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f1f1f1;
    color: #555;
    transition: all 0.2s ease;
}

/* Selected badge */
.sb-package-card.active .sb-select-label {
    background: #c09425;
    color: #fff;
    font-weight: 600;
}

/* Title */
.sb-package-card h4 {
    margin: 6px 0 10px;
    font-size: 16px;
    font-weight: 600;
}

/* Meta text */
.sb-package-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* Price */
.sb-price {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* ===============================
   MOBILE TWEAK
================================ */


.sb-step[data-step="5"] {
    text-align: center;
    padding: 90px 20px;
}

.sb-step[data-step="5"] h3 {
    font-size: 24px;
    color: #2e7d32;
    margin-bottom: 25px;
    text-transform: capitalize;
	position: relative;
}

.woocommerce-info a, .wc-stripe-payment-method-instruction a{
	color: #d9a420;
}
.woocommerce-order-details__title, .woocommerce-column__title{
	background: #d9a420 !important;
}
.p-AccordionItem.p-AccordionItem--selected .p-AccordionButton, .p-AccordionItem.p-AccordionItem--selected .p-AccordionButton:hover {
  color: rgb(0, 0, 0) !important;
}
#customer_details label, #customer_details legend, .woocommerce-EditAccountForm.edit-account label, .woocommerce-form-login label, .woocommerce-ResetPassword label, .woocommerce-ResetPassword.lost_reset_password{
  color: #fff;
}
.sb-booking.sb-step-form{
	padding:0 0 40px;
}
#place_order, .woocommerce-order .button.button-primary, .woocommerce-order .button, .shop_table.shop_table_responsive a, .woocommerce-MyAccount-content .button, .woocommerce-button.button.woocommerce-form-login__submit, .woocommerce-ResetPassword button{
	background: #d9a420 !important;
}
.ast-icon svg:not([fill]) {
  fill: #d9a420;
}
.woocommerce-js table.shop_table thead th, .woocommerce-page table.shop_table thead th {
  border-width: 0;
  color: #000;
}
.final-sb-summary {
background: #d9a420;
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto 20px;
  padding: 20px;
  text-align: left;
}

.final-sb-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.final-sb-summary li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
	color: #000;
}

.final-sb-summary li:last-child {
    border-bottom: none;
}

.final-sb-summary strong {
    display: inline-block;
    min-width: 90px;
    color: #333;
}

.sb-step[data-step="5"] a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #9B7A2D;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s ease;
    font-weight: 500;
    letter-spacing: .5px;
}

.sb-step[data-step="5"] a:hover {
    background: #333;
}




.sb-credit-box {
 border: 1px solid #535353;
  padding: 15px;
  border-radius: 8px;
  background: #1c1c1c;
}

.sb-credit-box h4 {
    margin-bottom: 10px;
}

.sb-credit-box ul {
    list-style: none;
    padding: 0;
}

.sb-credit-box li {
    margin-bottom: 6px;
}

.yes-credit{
   margin-top: 30px;
}
.sb-step[data-step="5"] h3::before {
  content: "";
  position: absolute;
  background: url(../img/badge.svg);
  width: 70px;
  height: 70px;
  top: -80px;
  left: 47%;
}
.woocommerce-MyAccount-navigation ul{
	padding:0;
}
 
@media(max-width:991px){
    .sb-instructor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sb-packages {
        grid-template-columns: 3fr;
    }
}
@media(max-width:767px){
	table.shop_table_responsive tr td::before{
		content:none !important;
	}
    .sb-packages {
        grid-template-columns: 2fr;
    }
    .sb-service-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .sb-instructor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
 }

 @media (max-width: 480px) {
    .sb-packages {
        grid-template-columns: 1fr;
    }
    .sb-service-grid{
        grid-template-columns:repeat(1, minmax(0, 1fr));
    }
    .sb-instructor-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}