@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: RadioCanada;
    src: url(fonts/Radio_Canada/static/RadioCanada-Medium.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf);
}

:root {
    --primary-color: #FF1493;
    --secondary-color: #8A2BE2;
    --purple-bg: rgb(138 43 226 / 0.2);
    --white-color: #fff;
    --primary-bg: linear-gradient(to right, #8A2BE2, #FF1493);
    --tiktok-bg: linear-gradient(to right, #2dd4bf, #000);
    --fb-bg: linear-gradient(to right, #2563eb, #60a5fa);
    --font-size: 15px;
}

body {
    background: #14101f;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    overflow-x: hidden;
    font-size: var(--font-size);
    line-height: 1.7;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.slick-initialized .slick-slide:focus,
.btn:focus,
select:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input,
textarea,
button,
select {
    border: none;
}

.btn-orange {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    border-radius: 3px;
    transition: 0.3s;
    display: block;
    margin: 0 auto;
}

.checkout-container {
    max-width: 700px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto;
}


/* Header Styles */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.logo img {
    height: 30px;
}

.logoWrap h2 {
    color: #333;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
}

.logoWrap h2 .brandBg {
    background: linear-gradient(to right, #8A2BE2, #FF1493);
    font-size: 20px;
    width: 40px;
    display: inline-block;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-weight: 800;
    color: #fff;
}

.logoWrap h2 span {
    color: #FF1493;
}


/* User Info Styles */

.socialDataRow {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    justify-content: space-between;
}

.socialDataCol {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socialDataCol img {
    width: 50px;
    ;
    border-radius: 50%;
    object-fit: cover;
}

.socialDataCol h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.socialDataCol p {
    margin: 0;
    font-size: 11px;
}

.product-slider-box {
    padding: 10px;
    color: var(--primary-color);
}

.allServices {
    padding: 20px 40px !important;
}

.product-slider-box h4 {
    font-size: 18px;
}

.product-slider-box input {
    width: 100%;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
}

.product-info-box {
    border-radius: 6px;
    margin: 0 !important;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info-box .product-qty,
.product-info-box .product-price {
    margin: 0;
    font-size: 16px;
}


/* Base style for the slider */

input[type=range].product-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
}

input[type=range].product-slider::-webkit-slider-runnable-track {
    background: #ff8309;
    /* Tailwind blue-500 */
    height: 6px;
    border-radius: 3px;
}

input[type=range].product-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ff8000;
    /* Tailwind blue-900 */
    margin-top: -5px;
    cursor: pointer;
}

input[type=range].product-slider::-moz-range-track {
    background: #ff8309;
    height: 6px;
    border-radius: 3px;
}

input[type=range].product-slider::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ff8309;
    border: none;
    cursor: pointer;
}

input[type=range].product-slider::-ms-track {
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range].product-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--primary-bg) !important;
    outline: none;
    transition: background 300ms ease-in-out;
}

input[type=range].product-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-bg) !important;
    border-radius: 50%;
    margin-top: -5px;
    cursor: pointer;
}

input[type=range].product-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-bg) !important;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.picRows {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.singlePicWrap {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

.selectMedia {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.singlePicWrap.selected {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 131, 9, 0.6);
}

.singlePicWrap .checkmark-icon {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    padding: 4px;
    font-size: 14px;
    z-index: 5;
}

.singlePicWrap.selected .checkmark-icon {
    display: block;
}

.order-total {
    text-align: right;
}

.order-total span {
    display: block;
    font-size: 12px;
    color: #666;
}

.order-total h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}


/* Section Styles */

.checkout-section {
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    color: #333;
}

.section-header {
    padding: 15px 20px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.section-header h3 {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.section-header input {
    width: 100%;
}

.section-content {
    padding: 15px 20px;
}

.hidden {
    display: none;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Service Item Styles */

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    font-weight: 600;
}

.total-price {
    font-size: 16px;
}


/* Button Styles */

.select-posts-btn {
    width: 100%;
    padding: 12px;
    background-color: #9333ea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
}

.payment-btn {
    width: 100%;
    padding: 12px;
    background-color: #9333ea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
}


/* Form Styles */

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}


/* Refills Section */

.refills-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.refills-section h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.refills-section p {
    font-size: 13px;
    color: #666;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.checkbox-container input:checked~.checkbox-checkmark {
    background-color: #9333ea;
    border-color: #9333ea;
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkbox-checkmark:after {
    display: block;
}

.checkbox-container .checkbox-checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* Footer Icons */

.footer-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    margin-bottom: 15px;
}

.icon-item i {
    font-size: 18px;
    color: #9333ea;
    margin-bottom: 5px;
}

.icon-item span {
    font-size: 10px;
    color: #666;
    text-align: center;
}


/* Terms Text */

.terms-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

.terms-text a {
    color: #9333ea;
    text-decoration: none;
}

.proceed-btn-wrap {
    text-align: center;
}

form input[type="submit"] {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: inline-block;
    width: 150px;
    height: 60px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
}

form input[type="submit"]:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}


/* Payment Options */

.payment-container {
    padding: 20px;
}

.payment-container label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-left: 3px;
}

.payment-container input {
    margin-right: 10px;
    height: 50px;
    border-radius: 5px;
}

#paymentOptionsAccordion .accordion-button {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    font-size: 16px;
    background: #E9E9ED;
    position: relative;
}

#paymentOptionsAccordion .accordion-button::after {
    position: absolute;
    content: "\f126";
    font-family: "Ionicons";
    right: 20px;
}

#paymentOptionsAccordion .accordion-button.collapsed::after {
    content: "\f123";
}


/* Responsive Styles */

@media (max-width: 576px) {
    .checkout-container {
        border-radius: 0;
        box-shadow: none;
    }
    .icon-item {
        width: 33.33%;
    }
}