:root {
    --primary: #32BCCC;
    --secondary: #8AB56B;
    --accent: #f093fb;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4caf50;
    --error: #f44336;
    --gray: #6c757d;
    --gradient-1: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.booking-wrapper {
    max-width: 1200px;
    margin: 80px auto 80px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.progress-indicator {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 20px 25px;
    background: rgb(25 25 25 / 87%);
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.form-step h2 {
    font-size: 2.5em;
    margin: 0 0 10px;
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.form-step p {
    font-size: 14px;
    margin-bottom: 33px;
    padding-left: 10px;
}
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 220px;
    height: 4px;
    background: #ddd;
    z-index: -1;
    transition: all 0.5s ease;
    left: 50px !important;
}

.progress-step.completed:not(:last-child)::after {
    background: var(--success);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.progress-step.active .step-circle {
    border-color: var(--primary);
    background: var(--gradient-1);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(50, 188, 204, 0.5);
}

.progress-step.completed .step-circle {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #ffff;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 500;
}

.progress-step.completed .step-label {
    color: var(--success);
}

.booking-content {
    padding: 40px;
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: #111;
    font-size: 14px;
    margin-left: 5px;
}

.form-control {
    width: 100% !important;
    padding: 10px 16px !important;
    border: 1px solid #cdcdcd !important;
    border-radius: 10px !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    border-left: 4px solid #61b898 !important;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(50, 188, 204, 0.2);
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.service-card {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(50, 188, 204, 0.2);
}

.service-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--success);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-image {
    height: 300px !important;
    background-size: cover;
    background-position: center;
}

.service-details {
    padding: 20px;
    background: #f5f5f5;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.95rem;
}

.payment-summary {
    background: var(--light);
    border-radius: 15px;
    padding: 25px 25px 12px;
    margin-bottom: 30px;
}

.summary-section {
    margin-bottom: 32px;
}

.summary-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #111;
    border-bottom: 1px solid #ddd;
    padding-bottom: 9px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
}


.summary-row.total {
    font-weight: 700;
    font-size: 1.3rem;
    border-top: 1px solid #ddd;
    padding-top: 25px;
    margin-top: 16px;
    margin-bottom: 0;
}

.card-element {
    padding: 12px 18px;
    border: 1px solid #cdcdcd !important;
    border-radius: 10px;
    margin-bottom: 20px;
    background: white;
    border-left: 4px solid #61b898 !important;
}

.card-element:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(50, 188, 204, 0.2);
}

.btn {
    padding: 10px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: unset !important;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 188, 204, 0.4) !important;
}

.btn-outline {
    background: transparent !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline:hover {
    background: rgba(50, 188, 204, 0.1);
}

.btn-success {
    background: var(--gradient-4);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 10px 0px 10px;
}

.error-message {
    color: var(--error);
    font-size: 0.8rem;
    display: none;
    padding-left: 5px;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--success);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
    display: none;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.thank-you-content {
    text-align: center;
    padding: 0px 20px;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 20px;
}

.thank-you-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

textarea#message {
    min-height: 120px;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.booking-details {
    background: var(--light);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    margin: 30px auto;
    max-width: 100%;
}

.booking-details h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between !important;
}

input#card-name {
    padding: 12px 18px !important;
}

.payment-form {
    padding: 25px 25px 8px;
    background: #373737;
    border-top: 4px dashed rgb(94 185 156);
    border-radius: 12px;
}

.detail-label {
    font-weight: 400;
    width: 150px;
    color: #000;
}

.detail-value {
    flex: 1;
    text-align: end;
}

div#services-summary .summary-row span.ser-price {
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
    padding: 4px 12px;
    border-radius: 8px;
    color: #fff !important;
    position: relative;
}



button.btn-primary {
    border: unset !important;
    padding: 14px 35px !important;
}

button.btn-primary {
    border: unset !important;
    padding: 14px 35px !important;
}

button#step3-prev {
    position: absolute !IMPORTANT;
    top: 50px !important;
    right: 47px;
}

button#pay-button {
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
    letter-spacing: 1px;
    border: unset !important;
    padding: 16px 20px;
    border-radius: 8px !important;
}

div#services-summary .summary-row span {
    color: #32bccc !important;
    font-size: 17px;
    font-weight: 500;
    background: #f8f9fa;
    position: relative;
    z-index: 99;
    padding-right: 50px;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    height: 10px;
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%) !important;
}

.service-flex-class {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div#services-summary .summary-row span.ser-price::before {
    content: '';
    background: #3abcc4;
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    left: -5px;
    top: 8px;
}

div#services-summary .summary-row::after {
    content: '';
    position: absolute;
    width: 81%;
    height: 2px;
    border: 1px dashed #dddddd;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

div#service-error {
    padding: 14px 20px;
    background: rgb(255 0 0 / 13%);
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .booking-content {
        padding: 35px 20px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-step:not(:last-child) {
        margin-right: 32px;
    }
    
    .progress-step:not(:last-child)::after {
        left: 40px;
        width: 40px;
    }
    
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .booking-wrapper {
    margin: 50px 10px;
    max-width: 100%;
}

.progress-step:not(:last-child)::after {top: 11px !important;left: 32px !important;width: 99px !important;}

.progress-indicator {
    padding: 32px 10px 20px !important;
}

div#step4-indicator {
    position: relative;
}

.progress-indicator::after {
    height: 6px;
}

.form-step h2 {
    font-size: 1.8em;
    margin-bottom: 8px;
}

.form-step p {
    font-size: 13px;
    padding-left: 5px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 14px;
}

.form-control {
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
}

textarea#message {
    height: 110px;
}

.service-image {
    height: 175px;
}

.service-description {
    font-size: 13px;
}

.service-title {
    font-size: 1.3rem !important;
}

div#step3 {
    padding-top: 48px;
}

button#step3-prev {
    top: 12px !important;
    right: 14px !important;
}

div#services-summary .summary-row::after {
    opacity: 0;
}

.detail-label {
    width: 80px;
}

.detail-value {
    font-size: ;
}

.detail-row {
    font-size: 12px !important;
}

.summary-section h3 {
    font-size: 14px !important;
}

.summary-row {
    margin-bottom: 10px;
}

div#services-summary .summary-row span {
    font-size: 15px !important;
}

.summary-section {
    margin-bottom: 20px;
}

.summary-row.total {
    font-size: 1rem;
}
    
.payment-form {
    padding: 24px 12px 5px !important;
}

.form-group {
    margin-bottom: 16px;
}

.booking-details {
    margin: 16px auto !important;
    padding: 12px 14px;
}

.thank-you-content {
    padding: 0 !important;
}

.thank-you-icon {
    margin: 0 auto !important;
}

.thank-you-icon dotlottie-wc {
    width: 300px !important;
    height: 150px !important;
    margin: -18px 0 0px !important;
    position: relative;
    right: 0;
}

}














/*=========================*/



.wp-container {
    background-color: #fff;
    width: 500px;
    padding: 35px 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid #56b9a5;
    border-radius: 12px;
}

.wp-container wp-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.wp-container .input-group {
    margin-bottom: 20px;
    position: relative !important;
    width: 100% !important;
    overflow: hidden;
}

.wp-container .input-group i {
    position: absolute;
    left: 16px !important;
    top: 26px !important;
    transform: translateY(-50%);
    color: #000;
}

.wp-container input:not([type="checkbox"]), select {
    width: 100% !important;
    padding: 10px 15px 10px 45px !important;
    border: 1px solid #d3d3d3 !important;
    background-color: #fff !important;
    color: #000 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    height: 50px !important;
    border-radius: 12px !important;
    border-left: 4px solid #d3d3d3 !important;
}

.wp-container input:focus, select:focus {
    outline: none;
    border-width: 2px;
}

.wp-container button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: unset !important;
}

.wp-container button:hover {
    color: #fff;
    background: linear-gradient(180deg, #32BCCC 0%, #8AB56B 100%) !important;
}

.wp-container .form-links {
    text-align: center;
    margin-top: 20px;
}

.wp-container .form-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wp-container .form-links a:hover {
    text-decoration: underline;
}

.wp-container .remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.wp-container .remember-me input {
    width: auto;
    margin-right: 10px;
    padding: 0;
    height: 18px;
}

.wp-container .message {
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: slideIn 0.5s ease;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wp-container .loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none;
    margin: 0 auto;
    position: relative;
    top: 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wp-container .country-select {
    padding-left: 15px !important;
}

div#main-custom-id {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
}

.wp-container .input-group .error {
    background: transparent !important;
    color: red;
    border: unset;
    margin-top: 4px;
    font-size: 13px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-width: 2px;
}

.toggle-password {
    position: absolute !important;
    cursor: pointer;
    color: #000;
    right: 45px !important;
    top: 2px;
}

.toggle-password i {
    position: static;
    transform: none;
    margin-left: 0;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input {
    width: auto;
    margin-right: 10px;
    padding: 0;
    height: 18px;
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wp-container .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.error {
    display: block;
}

.message.success {
    display: block;
}

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.toggle-password i {
    font-size: 13px;
}


.wp-container h2 {
    margin: 5px 0 30px;
    font-size: 35px;
    text-align: center;
    color: #191919;
    background: linear-gradient(100deg, #32BCCC 0%, #8AB56B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

div#custom-page-title-page {
    background: url("/wp-content/uploads/2025/08/IMG_4276-1.png") !important;
    background-position: 0px -140px !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    padding-top: 7em;
    padding-bottom: 7em;
    position: relative;
    z-index: 9;
}

div#custom-page-title-page h2 {
    margin: 0 0 0;
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    line-height: 52px;
}

div#custom-page-title-page::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 20%) 0%, rgb(50 188 204 / 51%) 100%);
    background-color: transparent;
    z-index: -1;
}

.price-display {
    text-align: right;
    font-size: 22px;
    position: relative;
    right: 4px;
    margin-bottom: 40px;
    color: #32bccb;
    top: -8px;
}

.dry-cleaning-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


    .qty-btn:hover {
        background-color: #e9ecef;
    }

    .qty-btn.qty-minus {
        border-right: 1px solid #ddd;
    }

    .qty-btn.qty-plus {
        border-left: 1px solid #ddd;
    }

    .item-qty-input {
        width: 50px;
        text-align: center;
        border: none;
        font-weight: 500;
        background-color: #fff;
    }

    .item-qty-input:focus {
        outline: none;
        box-shadow: none;
    }

    .dry-cleaning-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        padding: 10px 10px 18px;
    }

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


    .item-price {
        margin-left: 15px;
        font-weight: 500;
        color: #28a745;
    }

    .price-display {
        margin-top: 10px;
        padding: 15px;
        border-radius: 4px;
        text-align: right;
        font-size: 18px;
        font-weight: 600;
        background: rgb(225 225 225 / 50%);
        margin-bottom: 10px;
    }

    .price-label {
        color: #495057;
    }

    #dryCleaningPrice {
        color: #28a745;
        font-weight: 700;
    }

.qty-btn {
    background: #373737 !important;
    border-color: #373737 !important;
    border: none;
    width: 28px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.qty-btn:hover {
    background: #6fb788 !important;
}

.quantity-control {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.quantity-control input {
    width: 80px !important;
    border-radius: 100px !important;
    border: 2px solid #73b784 !important;
    padding: 6px 0  6px 12px !important;
    font-size: 16px !important;
}

.item-quantity label {
    margin: 0px 12px 0 0px !important;
    font-weight: 500 !important;
    font-size: 15px;
}

.dry-cleaning-item .form-check {
    width: 50%;
}

.dry-cleaning-item .form-check label.form-check-label {
    display: inline !important;
    font-size: 17px !important;
    color: #000000;
    margin: 0px 0 0 7px !important;
    font-weight: 500 !important;
}




.item-quantity {
    display: flex;
    align-items: center;
}

.detail-row.custom-class-items .detail-value ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.detail-row.custom-class-items .detail-value {width: 100%;}

.detail-row.custom-class-items {
    flex-direction: column;
    align-items: flex-start;
}

.detail-row.custom-class-items .detail-label {
    width: 100%;
}

.payment-form label {
    color: #fff;
}

.detail-row.custom-class-items .detail-value li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #000;
}

.detail-label.space-class {
    margin-bottom: 12px;
    font-size: 19px;
    color: #32bccc;
}

.summary-row.note > span {
    font-size: 14px !important;
    color: grey;
    margin: 8px 0 0;
    display: block;
}

.summary-row.note > span {
    font-size: 14px !important;
    color: grey;
    margin: 8px 0 0;
    display: block;
}

.detail-row.selected-packages-class {
    flex-direction: column !important;
}

.detail-row.selected-packages-class .detail-value {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #4fb9ac;
}


@media only screen and (max-width: 1000px) {
	
	div#custom-page-title-page h2 {
	     font-size: 25px;
        line-height: normal;
        padding: 0 20px;
	}

	div#custom-page-title-page {padding: 40px 0px;}
	.dry-cleaning-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding: 4px 12px 0 !important;
}

.dry-cleaning-item .form-check {
    width: 100%;
    margin-bottom: 14px;
}

.quantity-control input {
    width: 53px !important;
    height: 30px !important;
    padding: 0 0 0 !important;
}

.quantity-control {
    gap: 4px !important;
}

.item-quantity label {
    font-size: 14px;
}

.price-display {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}	
}