/* cart-page */
.cart-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1A1A1A;
    border: 1px solid #6E6E6E;
    border-radius: 1.125rem;
    margin: 2.5rem 0;
    padding-right: 3.125rem;
    position: relative;
}

.cart-wrap::before {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -1.375rem;
    border-top: 1px solid #CCCCCC;
}

.cart-box {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.cart-box-img {
    border: 1px solid #DCDCDC;
    border-radius: 1.125rem;
    overflow: hidden;
}

.cart-box-img img {
    width: 222px;
    aspect-ratio: 1;
    object-fit: cover;
}

.cart-box-title h4 {
    font-size: 2rem;
    color: var(--white);
    font-family: var(--font-lexend);
}

.cart-box-title h5 {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-lexend);
    margin: 0;
}

.cart-quantity h5 {
    font-size: 1.25rem;
    font-family: var(--font-lexend);
    color: var(--white);
    margin-bottom: 1rem;
}

.numberone {
    max-width: 120px;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: #F7F6FB;
    border: 1px solid #CCCCCC;
    padding: 0.375em 1em;
    border-radius: .5em;
}

.numberone :is(.minus, .plus) {
    font-size: 15px;
    color: #282828;
    cursor: pointer;
}

.numberone input {
    display: block;
    width: 100%;
    border: none;
    font-weight: 600;
    color: #282828;
    outline: none !important;
    user-select: none;
    background: transparent;
    text-align: center;
    padding: 0;
    margin-left: .65rem;
}

.cart-delete-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--white);
    width: 28px;
    aspect-ratio: 1;
    border-radius: 0.25rem;
    display: grid;
    place-items: center;
    background: var(--primary);
}

.cart-total {
    margin-top: 1rem;
}

.cart-total h4 {
    font-size: 0.9375rem;
    text-transform: uppercase;
    color: var(--white);
}

.cart-total h4 span {
    font-size: 1.875rem;
    font-family: var(--font-lexend);
    margin-right: 1.75rem;
}

.cart-total p {
    font-size: 1.125rem;
    font-family: var(--font-lexend);
    color: var(--white);
}

/* product-detail */
.productSlider-img img,
.thumbproductSlider-img img {
    border-radius: 1rem;
}

.thumbproductSlider {
    margin-top: 1rem;
}

.thumbproductSlider-img img {
    width: 110px;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-main h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.product-review,
.review-stars,
.review-content,
.product-btn,
.product-wishlist {
    display: flex;
    align-items: center;
}

.product-review {
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.review-stars {
    gap: 0.25rem;
}

.review-stars li {
    color: #FFB30F;
}

.review-content {
    gap: 1rem;
}

.review-content p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.review-content p:first-child {
    border-right: 1px solid var(--white);
    padding-right: 1rem;
}

.product-main h4 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-content {
    border-block: 1px solid #D0D5DD;
    padding: 1.5rem 0;
}

.product-content p {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
}

.product-content a {
    text-decoration: underline !important;
    color: var(--primary);
}

.product-btn {
    margin: 2.5rem 0;
    gap: 1rem;
}

.product-btn select {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    padding: 0.625em 1.25em;
    border-radius: .5em;
    border: none;
    outline: none !important;
}

.product-btn .numberone {
    padding: 0.625em .75em;
}

.product-btn .themeBtn {
    width: 100%;
    padding: 0.625em 1.5em;
    font-size: 1.125rem;
    text-align: center;
    background: var(--primary);
    color: var(--white);
}

.product-wishlist {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.product-wishlist :is(a, p) {
    font-size: 1.125rem;
    color: var(--white);
}

.product-wishlist a span,
.product-wishlist p span {
    margin-right: .5rem;
}

.product-wishlist p {
    margin: 0;
}

.product-tab-nav {
    background: #2E2E2E;
    border-radius: 3.125rem;
    padding: 0.25em;
    justify-content: space-between;
}

.product-tab-nav .nav-item {
    flex: 0 0 32%;
    max-width: 32%;
}

.product-tab-nav .nav-item .nav-link {
    border: none !important;
    outline: none !important;
    border-radius: 3.125rem;
    width: 100%;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.product-tab-nav .nav-item .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.product-tab-content #accordion .card {
    padding: 1.5rem 0;
    margin: 0;
    border: none;
    background: transparent;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--white);
    border-radius: 0;
}

.product-tab-content #accordion .card .btn-link {
    width: 100%;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
}

.product-tab-content #accordion .card .btn-link i {
    margin-left: auto;
    color: var(--white);
    font-size: 1rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 28px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.product-tab-content #accordion .card .btn-link i::before {
    content: "\f106";
}

.product-tab-content #accordion .card .btn-link.collapsed i::before {
    content: "\f107";
}

.product-tab-content #accordion .card+.card {
    margin-top: 0;
}

.product-tab-content #accordion .card .card-body {
    padding: 0;
}

.product-tab-content #accordion .card .card-body p {
    color: var(--white);
    font-size: 1rem;
    margin: .75rem 0 0;
    line-height: 24px;
    padding-right: 3.75rem;
}

/* checkout */
.checkout-form-box,
.checkout-item {
    background: #3E3E3E;
    border-radius: 1.5rem;
    padding: 1rem 1.5rem 1.875rem;
    margin: 0 0 2.8125rem;
}

.checkout-form-box h3,
.checkout-item h3 {
    font-size: 1.875rem;
    font-family: var(--font-lexend);
    color: var(--white);
    border-bottom: 1px solid var(--white);
    padding-bottom: 1rem;
    margin: 0;
}

.checkout-form-box input {
    display: block;
    width: 100%;
    background: #8E8D8C;
    border-radius: 1.875rem;
    border: none;
    outline: none !important;
    font-size: 1.25rem;
    color: var(--white);
    padding: .6em 1.5em;
    margin-top: 1.625rem;
}

.checkout-form-box input::placeholder {
    color: var(--white);
}

.input-radio {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.input-radio label {
    margin: 0;
    cursor: pointer;
}

.input-radio input[type="radio"] {
    display: inline-block;
    width: fit-content;
    margin: 0;
    cursor: pointer;
}

.input-radio span {
    font-size: 1.25rem;
    color: var(--white);
}

.checkout-item {
    background: var(--primary);
    position: sticky;
    top: 2%;
}

.checkout-item h3 {
    color: var(--black);
    border-color: var(--black);
    margin-bottom: 1.625rem;
}

.item-box-card,
.item-subtotal ul,
.item-total ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.checkout-item .item-box-card:nth-of-type(1) {
    margin-bottom: 2.5rem;
}

.product-add {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.product-add figure {
    position: relative;
}

.product-add figure img {
    border-radius: 1.25rem;
    width: 110px;
    max-width: 110px;
    height: 84px;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-add figure span {
    position: absolute;
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #404040;
    color: var(--white);
    font-size: 15px;
    top: -12px;
    right: 0;
    display: grid;
    place-items: center;
}

.product-add-content h5 {
    font-size: 1.125rem;
}

.product-add-content a {
    font-size: 15px;
    color: #404040;
}

.item-box-card h4 {
    font-size: 1.25rem;
    font-family: var(--font-lexend);
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.item-box-card:nth-of-type(2) {
    margin-bottom: 1.625rem;
}

.item-subtotal {
    border-block: 1px solid var(--black);
    padding: 1.625rem 0;
}

.item-subtotal ul:not(:last-child) {
    margin-bottom: 1rem;
}

.item-subtotal ul li {
    font-size: 1.25rem;
    color: #404040;
}

.item-subtotal ul:nth-of-type(1) li:last-child {
    font-weight: 600;
    color: var(--black);
}

.item-total {
    padding: 1.625rem 0;
}

.item-total ul li {
    font-size: 1.5rem;
    font-weight: 700;
    color: #404040;
}

.checkout-item-btn .themeBtn {
    width: 100%;
    text-align: center;
    border-radius: 1.875rem;
    background: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

/* loginModal */
.loginModal,
.signupModal {
    background: var(--black);
}

.popupimg img {
    height: 100vh;
    object-fit: unset;
}

.popupcontent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 2.5em 7.5em;
}

.popupcontent h3 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
}

.popupcontent h6 {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0;
}

.popupcontent h6 a {
    color: var(--primary);
}

.popupform {
    margin-top: 2.5rem;
}

.popupform-field {
    margin-bottom: 1rem;
}

.popupform-field label {
    font-size: 0.875rem;
    color: var(--white);
}

.popupform-field input {
    display: block;
    width: 100%;
    border: 1px solid var(--white);
    border-radius: 0.625rem;
    background: var(--black);
    font-size: 1rem;
    color: var(--white);
    padding: 0.5em 1em;
}

.popupform-field input::placeholder {
    color: var(--white);
}

.popupform-btn .themeBtn {
    width: 100%;
    text-align: center;
    background: var(--primary);
    outline: none !important;
    font-size: 1rem;
}

.popupform-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.125rem;
}

.popupform-forgot label {
    margin: 0;
}

.popupform-forgot label span {
    font-size: 1rem;
    color: var(--white);
}

.popupform-forgot a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
}

.popuporlogin {
    margin-top: 2.5rem;
}

.popuporlogin p {
    font-size: 1rem;
    color: var(--white);
}

.popuporlogin ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.popuporlogin li {
    flex: 0 0 32%;
    max-width: 32%;
}

.popuporlogin li a {
    border: 1px solid var(--white);
    border-radius: 0.25rem;
    display: block;
    text-align: center;
    padding: .75em 1em;
}

.loginModal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 999;
}

.loginModal-close a {
    font-size: 1.125rem;
    color: var(--white);
}

.signupModal .popupform {
    margin-top: 1.5rem;
}

.signupModal .popupform-field {
    margin-bottom: 1.5rem;
}

/* payment */
.payment-section {
    height: 100%;
    display: grid;
    place-items: center;
}

.payment-section * {
    font-family: var(--font-lexend);
    color: var(--white);
}

.payment-title {
    border-bottom: 1px solid rgb(255, 255, 255, 16%);
    padding-bottom: 2.5rem;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.payment-title h4 {
    font-size: 2.125rem;
}

.payment-title p {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgb(255, 255, 255, 72%);
    margin: 0;
}

.payment-total {
    padding: 2.5rem 0;
    text-align: center;
}

.payment-total h6 {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgb(255, 255, 255, 72%);
}

.payment-total h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.payment-detail {
    border: 1px solid rgb(255, 255, 255, 16%);
    border-radius: 0.625rem;
    padding: 1.25em;
}

.payment-detail h6 {
    font-size: 1.25rem;
    font-weight: 200;
    color: rgb(255, 255, 255, 72%);
    margin-bottom: 0.375rem;
}

.payment-detail h5 {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.payment-pdfbtn a {
    margin-top: 2.5rem;
    font-size: 1.5rem;
    text-align: center;
    display: block;
}

.about-inner .recoveryImage>img {
    width: 620px !important;
    height: 514px !important;
    border-radius: 3.75rem 0 0 0 !important;
    object-fit: cover !important;
}

/* Parent dropdown */
.locations-dropdown {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
    min-width: 400px;
    /* dropdown ki width fix karne k liye */
}

/* Each item */
.locations-dropdown li {
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

/* Remove border from last elements */
.locations-dropdown li:nth-last-child(-n+2) {
    border-bottom: none;
}

/* Link style */
.locations-dropdown a {
    text-decoration: none;
    color: #000;
    display: block;
}

.locations-dropdown a.active {
    color: #00aaff;
    font-weight: bold;
}

.service-inner__content ul {
    color: #C1C1C1 !important;
    list-style: disc !important;
}