/** Shopify CDN: Minification failed

Line 11:17 Unexpected "@app"

**/
.p-card {
    box-shadow: none !important;
}

/* Wrapper */
.product__block--@app {
    margin: 2rem 0; /* 20px top/bottom */
}


.shopify-app-block .loader {
    width: 3rem !important;
    height: 3rem !important;
}












/* Quantity Selector */
.quantity-selector {
    color: currentColor;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    box-shadow: 0 0 0 var(--quantity-border-width) rgba(var(--color-border), var(--color-border-alpha, 1));
    border-radius: var(--inputs-radius);
    font-size: var(--font-body-size);
    text-align: center;
    background-color: transparent;
    border: 0;
    padding-inline: var(--quantity-button-width, 1.5rem);
    width: 100%;
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
}


/* Quantity Selector Wrapper */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /*border: 1px solid #ddd;*/
    overflow: hidden;
    /*background: #fff;*/
    width: fit-content;
    height: 4.8rem !important;
    border-radius: 10rem !important;
}

/* Buttons */
.qty-btn {
    padding: 0.5rem 1rem;
    font-size: 1.8rem !important;
    font-weight: bold;
    border: none;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    background: #f9f9f9;
}

.qty-input {
    width: 5rem; /* 50px */
    text-align: center;
    border: 0.1rem solid #ccc;
    font-size: 1.4rem;
}


















/* Duration Text */
.duration-text {
    margin: 1rem 0;
    font-size: 1.4rem; /* 14px */
    color: #444;
}

/* Card Container */
.rental-and-appointment-container {
    border: 0.1rem solid #e0e0e0;
    border-radius: 1rem !important;
    padding: 1.5rem;
    background: #fff;
}

/* Card Title */
.st-booking-title {
    /*font-size: 1.8rem; !* 18px *!*/
    font-weight: 600;
    /*margin-bottom: 1.2rem;*/
}

/* Booking Types Wrapper */
.booking-types-container {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}

/* Date Picker */
.st-appointment-booking label {
    font-size: 1.5rem !important;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.dp__main {
    width: 100%;
    /*max-width: 32rem; !* 320px *!*/
}

/* Time Slots */
.time-slots-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); /* 140px min */
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding-right: 0 !important;
}

.st-appointment-radiobtn {
    border: 0.1rem solid #ccc !important;
    border-radius: 10rem !important;
    /*border-radius: 0.6rem;*/
    /*padding: 0.8rem;*/
    padding: 0.8rem 1.5rem;
    /*text-align: center !important;*/
    cursor: pointer;
    font-size: 1.5rem !important;
    transition: all 0.2s ease;

    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;

    box-sizing: border-box !important;
}

.st-appointment-radiobtn:hover {
    background-color: #f5f5f5;
}

.st-appointment-radiobtn input:checked + label {
    font-weight: 600;
    /*color: #0070f3;*/
    border-radius: 10rem !important;
}

.st-appointment-radiobtn label {
    padding: 0 !important;
    margin-bottom: 0;
}

.st-appointment-radiobtn input:is([type=radio])::after {
    width: 1rem;
    height: 1rem;
}

.st-appointment-radiobtn input:is([type=checkbox],
.st-appointment-radiobtn [type=radio])::after {
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
}

.st-appointment-radiobtn input,
.st-appointment-radiobtn input:is([type=checkbox],
.st-appointment-radiobtn [type=radio]):checked {
    display: none;
}


/* Error Message */
.st-error-message {
    color: #d93025;
    font-size: 1.2rem;
    margin-top: 0.6rem;
}

/* Book Button */
.st-book-btn {
    margin-top: 1.6rem;
    /*margin-top: 1.6rem;*/
    padding: 0.9rem 1.6rem;
    border-radius: 10rem !important;
    /*border-radius: 0.6rem;*/
    font-size: 1.5rem !important; /* 16px */
    font-weight: 500;
    cursor: pointer;
    background-color: #c75b12 !important;
}

/* Loading Spinner */
.loader {
    width: 2rem;  /* 20px */
    height: 2rem;
    border: 0.2rem solid #ddd;
    border-top-color: #0070f3;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

 /*Datepicker Input Wrapper*/
.dp__input_wrap {
    display: flex;
    align-items: center;
    position: relative;
    width: 100% !important;
    border: 0.1rem solid #ccc;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    border-radius: 10rem !important;
}

.dp__input_wrap:hover {
    border-color: #999;
    border-radius: 10rem !important;
}

.dp__input_wrap:focus-within {
    border-color: #0070f3;
    box-shadow: 0 0 0 0.2rem rgba(0, 112, 243, 0.2);
    border-radius: 10rem !important;
}

/* Input inside wrapper */
.dp__input {
    flex: 1 !important;
    font-size: 1.5rem !important;
    padding: 1.2rem 1.6rem 1.2rem 4.8rem !important;
    cursor: pointer;
    border-radius: 10rem !important;
    height: 4.8rem;
    font-family: 'Figtree', sans-serif !important;
    background: transparent;
    /*outline: none;*/
    /*border: none;*/
}


/* Calendar Icon on the LEFT */
.dp__input_icon {
    position: absolute;
    /*left: 1.6rem !important;*/
    width: 1.6rem !important;
    height: 1.6rem !important;
    color: #666;
    pointer-events: none;
}

.dp__input_icons {
    padding-inline: 2rem !important;
}


/* Clear Button */
.dp--clear-btn {
    position: absolute;
    right: 3.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp--clear-btn svg {
    width: 1.6rem;
    height: 1.6rem;
    color: #999;
    transition: color 0.2s ease;
}

.dp--clear-btn:hover svg {
    color: #d93025; /* red when hover */
}





.dp__instance_calendar {
    font-family: 'Figtree', sans-serif !important;
    font-size: 1.5rem !important;
}

.time-slots-wrapper .st-appointment-radiobtn.selected {
    background: #c75b12 !important;
    color: #fff;
}




.p-card-body {
    display: flex !important;
    flex-direction: column !important;;
    text-align: center !important;
    padding: 9px !important;
}














/* =============== chat seller =============== */

.st-customer-chat-cta-section {
    border-radius: 10rem !important;
    font-size: 1.5rem !important;
}

.chat-with-seller-form {
    font-size: 1.5rem !important;
}

.chat-with-seller-form label {
    margin-block: 0.4rem !important;
}

.chat-with-seller-container {
    border-radius: 1rem !important;
}


.chat-with-seller {
    padding: 2.4rem !important;
}


#chat-customer-name,
#chat-customer-email {
    height: 4.8rem !important;
    border-radius: 10rem !important;
}


#chat-customer-name,
#chat-customer-email,
#customer-chat-user-request {
    font-size: 1.5rem !important;
    padding: 1.2rem 2rem !important;
}

#customer-chat-user-request {
    border-radius: 2.4rem !important;
    padding: 2rem 2rem !important;
}

.chat-submit-btn-custom-styling {
    border-radius: 10rem !important;
    font-size: 1.5rem !important;
}


.chat-with-seller-header-title {
    font-size: 1.8rem !important;
}

.st-chat-with-seller-close .size-6 {
    width: 2.4rem !important;
    height: 2.4rem !important;
}


























