
.pet-grooming-checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    background:#fff;
    border-radius: 10px;
}

.checkout-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

.pet-grooming-checkout-title {
  color: #111827;
      font-family: "Raleway", sans-serif;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
}

.pet-grooming-checkout-subtitle {
color: #4B5563;
font-family: "Public Sans";
font-size: 18px;
font-weight: 400;
line-height: 36px; 
letter-spacing: 0.72px;
}


 .primary-btn {
      background: #07B1EF;
      color: #ffffff;
      font-family: "Lato", sans-serif;
      font-weight: 700;
      text-transform: capitalize;
      min-height: 48px;
      font-size: 16px;
      padding: 0 40px;
      border-radius: 4px;
      letter-spacing: 0.72px;
      border: 1px solid #07b1ef;
    }
    
      .primary-btn-outline {
      background: transparent;
     color: #07b1ef;
      font-family: "Lato", sans-serif;
      font-weight: 700;
      text-transform: capitalize;
      min-height: 48px;
      font-size: 16px;
      padding: 0 40px;
      border-radius: 4px;
      letter-spacing: 0.72px;
      border: 1px solid #07b1ef;
    }
    
      .primary-btn-outline:hover{
      background: transparent;
     color: #07b1ef;
    border: 1px solid #07b1ef;
    text-decoration: none;
    }

    
     .primary-btn:hover{
     background-color: #07b1ef;
    color: #fff;
    border: 1px solid #07b1ef;
    text-decoration: none;
    }

.service-type-selection {
    display: flex;
    gap: 20px;
    /*margin-bottom: 40px;*/
}

.service-option-one{
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    background: #F5F6F9;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 4px solid #fff;
}


.service-option.selected {
    border-color: #3a7bd5;
    background-color: rgba(58, 123, 213, 0.05);
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.service-option-header {
    display: flex;
    margin-bottom: 15px;
}

.service-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 2px solid  #07B1EF;
    background: rgba(7, 177, 239, 0.20);
    margin-right: 15px;
    color: #07B1EF;
    padding:15px;
}

.service-option-title {
color: #23252B;
  font-family: "Raleway", sans-serif;
font-size: 22px;
font-weight: 700;
flex-grow: 1;
}

.service-option-tag {
color:#07B1EF;
font-family: Lato;
font-size: 18px;
font-weight: 700;
letter-spacing: 0.72px;
}

.service-option-description {
color: #727889;
font-family: "Public Sans";
font-size: 18px;
font-weight: 400;
line-height: 1.5;
letter-spacing: 0.72px;
}


 .gray-card {
    border-radius: 10px;
    background: #EAECEF;
    padding: 20px;
    margin-bottom: 40px;
 }


.pet-grooming-checkout-fields {
    margin-top: 40px;
}


.sub-details-title{
    color: #000;
      font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.account-creation-title,
.appointment-details-title,
.premium-addons-title,
.notes-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #3a7bd5;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: flex;
    /*gap: 20px;*/
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    border-color: #65abc4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}

.pet-selection {
    position: relative;
}

.add-pet-button {
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    color: #3a7bd5;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.add-pet-button:hover {
    color: #2c5ea3;
}

.add-pet-button span {
    font-size: 18px;
    margin-right: 5px;
}

.addon-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-icon1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 2px solid #07B1EF;
    background: #65abc4;
    margin-right: 15px;
    color: #fff;
}

.addon-details {
    flex-grow: 1;
}

.addon-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.addon-description {
    font-size: 14px;
    color: #666;
}

.addon-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.addon-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .4s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #3a7bd5;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.notes-textarea {
    width: 100%;
    min-height: 100px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    padding: 15px;
    resize: vertical;
  font-size: 13px;
  color: #727889;
  background-color: #FFF;
 font-family: "Public Sans", sans-serif;
  border:1px solid #A4ACBC;
}

.pet-grooming-order-review {
    background-color: #f9f9f9;
}

#order_review_heading {
    font-size: 22px;
    font-weight: 600;
    color: #3a7bd5;
    margin-bottom: 20px;
}

/*.woocommerce-checkout-review-order-table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.woocommerce-checkout-review-order-table thead {*/
/*    border-bottom: 1px solid #e0e0e0;*/
/*}*/

/*.woocommerce-checkout-review-order-table th,*/
/*.woocommerce-checkout-review-order-table td {*/
/*    padding: 12px 15px;*/
/*    text-align: left;*/
/*}*/

/*.woocommerce-checkout-review-order-table tfoot {*/
/*    border-top: 1px solid #e0e0e0;*/
/*}*/

/*.woocommerce-checkout-review-order-table .cart-subtotal,*/
/*.woocommerce-checkout-review-order-table .order-total {*/
/*    font-weight: 500;*/
/*}*/

/*.woocommerce-checkout-review-order-table .order-total {*/
/*    font-size: 18px;*/
/*    color: #3a7bd5;*/
/*}*/

/*.woocommerce-checkout-payment {*/
/*    margin-top: 20px;*/
/*}*/

/*.woocommerce-checkout-payment ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0 0 20px 0;*/
/*}*/

/*.woocommerce-checkout-payment li {*/
/*    padding: 15px;*/
/*    border: 1px solid #e0e0e0;*/
/*    border-radius: 8px;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.woocommerce-checkout-payment label {*/
/*    display: inline;*/
/*    margin-left: 10px;*/
/*}*/

.payment_box {
    background-color: #f5f5f5;
    padding: 15px;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 14px;
}

.book-appointment-button {
    display: block;
    background-color: #65abc4 !important;
    color: #ffffff !important;
    font-family: "Lato", sans-serif !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
    min-height: 48px !important;
    font-size: 16px !important;
    padding: 0 40px !important;
    border-radius: 4px !important;
    letter-spacing: 0.72px !important;
    border: 0 !important;
}

.book-appointment-button:hover {
    background-color: #2c5ea3;
}

.required {
    color: #e74c3c;
}


@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(58, 123, 213, 0.4);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(58, 123, 213, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(58, 123, 213, 0);
    }
}

input:focus,
select:focus,
textarea:focus {
    animation: focusPulse 1.5s infinite;
}


.service-type-selection .service-option-one.active{
     border: 4px solid #07B1EF;
}



/*.service-type-selection .service-option .service-option-tag{*/
/*    border-radius: 9999px;*/
/*border: 0px solid #E5E7EB;*/
/*background: #DBEAFE;*/
/*padding: 6px 11.516px 6px 12px;*/
/*color: #2563EB;*/
/*font-family: "Roboto", sans-serif;*/
/*font-size: 14px;*/
/*font-style: normal;*/
/*font-weight: 400;*/
/*}*/

/*.service-type-selection .service-option .service-option-description .service-option-title{*/
/*    color: #000;*/
/*font-family: "Roboto", sans-serif;*/
/*font-size: 20px;*/
/*font-style: normal;*/
/*font-weight: 600;*/
/*margin-bottom: 8px;*/
/*}*/
/*.service-type-selection .service-option .service-option-description p{*/
/*    color: #4B5563;*/

/*font-family: "Roboto", sans-serif;*/
/*font-size: 16px;*/
/*font-style: normal;*/
/*font-weight: 400;*/
/*}*/
.account-creation-title{
         font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0px;
    padding-bottom: 15px;
    border-bottom: 0px solid #eee;
    font-family: "Roboto", sans-serif;
}
.account-creation-title::before{
    display: none !important;
}
.account-creation-form .form-group label,
.appointment-details .form-group label{
color: #23252B;
font-family: "Lato", sans-serif;
font-size: 15px;
 font-weight: 700;
margin:0px 0px 8px;
}

.account-creation-form .form-group .form-control,
.appointment-details .form-group .form-control{
  min-height: 46px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  font-size: 13px;
  color: #727889;
  background-color: #FFF;
 font-family: "Public Sans", sans-serif;
  border:1px solid #A4ACBC;
}

.account-creation-form .form-group .form-select,
.appointment-details .form-group .form-select{
  min-height: 46px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  font-size: 13px;
  color: #727889;
  background-color: #FFF;
 font-family: "Public Sans", sans-serif;
  border:1px solid #A4ACBC;
}



.appointment-details .select-wrapper::after{
    display: none;
}

.pet-selection .add-pet-button{
    display: flex;
width: 224px;
height: 130px;
position: relative;
top: unset !important;
left: unset !important;
border-radius: 5px;
border: 1px solid var(--Medium-Light, #A4ACBC);
background: var(--White, #FFF);
color: #4B5563;
text-align: center;
  font-family: "Roboto", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
    justify-content: center;
    flex-direction: column;
    margin: 15px 0px;

}

.pet-selection .add-pet-button input[type="file"]{
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    opacity:0;
    z-index: 3;
}
.form-group .addon-item{
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: var(--White, #FFF);
    margin-bottom: 15px;
}
.form-group .addon-item .addon-details .addon-title{
color: #23252B;
 font-family: "Raleway", sans-serif;
font-size: 19px;
font-weight: 700;
}


.form-group .addon-item .addon-icon1{
    margin-right: 7px;
}
.pet-grooming-order-review h3#order_review_heading{
        color: #000;
font-family: "Roboto", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 600;
}
.pet-grooming-order-review .order-total th, .pet-grooming-order-review .order-total td{
       color: #000;
font-family: "Roboto", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 600;
}



.add-pet-buttons {
    width: 100px;
    height: 100px;
    border: 2px solid #CBD5E0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.2s ease;
  }

 

  .add-icon {
    font-size: 50px;
    color: #4B5563;
    line-height: 1;
  }

  .add-text {
    font-size: 13px;
    color: #4B5563;
  }

.add-pet-buttons:hover {
    background-color: #fff !important;
    color: #fff;
    border: 2px solid #CBD5E0 !important;
    text-decoration: none;
}

.add-pet-buttons:focus{
     background-color: #fff !important;
    color: #fff;
    border: 2px solid #CBD5E0 !important;
    text-decoration: none;
}


.custom-checkbox.form-check-input:checked {
  background-color: var(--primary); 
  border-color: var(--primary); 
}

.custom-checkbox.form-check-input:focus {
  border-color: var(--primary);
  box-shadow: none; 
}

.custom-checkbox.form-check-input {
  width: 25px;
  height: 25px;
  border-radius: 2px;
}

.custom-checkbox.form-check-input:focus:not(:checked) {
  border-color: var(--primary);
}

input[type="checkbox"]:focus{
    outline:none !important;
}




  


#select_pet .pet-card{
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  max-width: 500px;
}

.checkbox-wrapper .form-check-input{
    width: 18px;
    height: 18px;
    border-radius: 2px;
}

.checkbox-wrapper .form-check-input:checked{
    background-color: #07b1ef;
    border-color: #07b1ef;
}

#select_pet .image-wrapper {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 16px;
  flex-shrink: 0;
}

#select_pet .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#select_pet .text-wrapper{
    flex: 1;
}

#select_pet .text-wrapper h4 {
    color: #23252B;
    font-family: 'Raleway';
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

#select_pet .text-wrapper p {

}





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

    .service-type-selection {
        flex-direction: column;
    }
    .checkout-container {
        flex-direction: column;
        padding:20px;
    }
    
    .pet-grooming-checkout-title{
         font-size: 25px;
         text-align: center;
    }
    .pet-grooming-checkout-subtitle{
    text-align: center;
    line-height: 25px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .pet-grooming-checkout-container {
        padding: 10px;
    }
    
    .account-creation-form,
    .appointment-details,
    .premium-addons,
    .notes-section,
    .pet-grooming-order-review {
        padding: 0px !important;
    }
    .gray-card{
        padding:10px !important;
        margin-bottom: 20px !important;
    }
    
     .pet-grooming-checkout-title{
                text-align: center;
                font-size: 30px !important;
                margin: 0 !important;
                margin-bottom: 10px !important;
                line-height: 1 ;
        }
   
    .form-group .addon-item .addon-details .addon-title{
        font-size:14px;
    }    
    
    .add-pet-buttons {
    width: 100px;
    height: 100px;
    }
    .add-icon {
    font-size: 40px;
    }
    .add-text{
        font-size:12px;
    }
}

@media screen and (max-width: 400px){
     .addon-details{
        max-width: 170px;
    }
}



