
/* ==========================================================================
    Checkout SECTION Start
    ========================================================================== */
.checkout-summary {
    position: relative;
}

.checkout-summary-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    border-radius: 20px;
}

.checkout-loader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid #e5e5e5;
    border-top-color: #000;
    border-radius: 50%;
    animation: checkoutSpin .7s linear infinite;
}

@keyframes checkoutSpin {

    to {
        transform: rotate(360deg);
    }

}

.checkout-section {
    padding: 110px 0 100px;
    background: #fff;
}

/* CONTAINER */

.checkout-container {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding-inline: 60px;
}

.checkout-title {
    text-align: center;
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    letter-spacing: 2px;
    margin-bottom: 38px;
}

.shiping-info-title {
    font-size: 1.25rem;
    font-weight: 500;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 500;
}

.checkout-wizard {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9a9a9a;
}

.wizard-step.active {
    color: #111;
}

.wizard-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wizard-step.active .wizard-number {
    background: #2d6f08;
    color: #fff;
}

.wizard-line {
    width: 48px;
    height: 1px;
    background: #dcdcdc;
}

.checkout-card {
    border: 1px solid #e5e5e5;
    padding: 34px;
}

/* HEADER */

.checkout-card-header {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.checkout-card-header svg {
    color: #2d6f08;
}

/* FORM */

.checkout-form label {
    display: block;
    font-size: .875rem;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}

.checkout-form .form-control,
.checkout-form .form-select {
    height: 50px;
    border-radius: 0;
    border: 1px solid #dddddd;
    box-shadow: none !important;
    font-size: 17px;
    padding: 0px 10px !important;
}

/* BUTTON */

.checkout-primary-btn {
    width: 100%;
    height: 62px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.checkout-secondary-btn {
    width: 100%;
    height: 62px;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    font-size: 18px;
    font-weight: 500;
}

/* NOTICE */

.payment-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f7f7;
    padding: 18px;
    margin-bottom: 28px;
}

.payment-notice svg {
    color: #2d6f08;
    min-width: 18px;
}

.payment-notice span {
    color: #777;
    font-size: 15px;
}

/* ACTIONS */

.payment-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.checkout-summary {
    border: 1px solid #e5e5e5;
    padding: 34px;
    position: sticky;
    top: 120px;
}

/* TITLE */

.summary-heading {
    font-size: 42px;
    font-weight: 600;
    color: #111;
    margin-bottom: 34px;
}

/* PRODUCT */

.summary-product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.summary-product h4 {
    font-size: .875rem;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    margin-bottom: 6px;
}

.summary-product p {
    font-size: .75rem;
    color: #777;
    margin: 0;
}

.summary-product span {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111;
}

/* DIVIDER */

.summary-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 28px 0;
}

/* ROW */

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.summary-row span {
    font-size: .875rem;
    ;
    color: #666;
}

.summary-row-sub {
    color: #000 !important;
}

/* TOTAL */

.summary-row.total {
    margin-bottom: 0;
}

.summary-row.total span {
    font-size: 1.125;
    font-weight: 500;
    color: #111;
}

/* FOOTER */

.summary-footer {
    margin-top: 34px;
    background: #fafafa;
    padding: 22px;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.summary-footer p {
    font-size: .75rem;
}

@media(max-width:1199px) {

    .checkout-title {
        font-size: 58px;
    }

    .checkout-card-header h2 {
        font-size: 32px;
    }

    .summary-heading {
        font-size: 32px;
    }

}

@media(max-width:991px) {

    .checkout-container {
        padding-inline: 24px;
    }

    .checkout-summary {
        position: relative;
        top: 0;
    }

}

@media(max-width:767px) {

    .checkout-section {
        padding: 90px 0 70px;
    }

    .checkout-container {
        padding-inline: 16px;
    }

    .checkout-title {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .checkout-wizard {
        margin-bottom: 40px;
    }

    .checkout-card {
        padding: 24px;
    }

    .checkout-card-header h2 {
        font-size: 24px;
    }

    .checkout-form .form-control,
    .checkout-form .form-select {
        height: 52px;
        font-size: 16px;
    }

    .payment-actions {
        grid-template-columns: 1fr;
    }

    .summary-heading {
        font-size: 28px;
    }

    .summary-product h4 {
        font-size: 18px;
    }

    .summary-product span {
        font-size: 18px;
    }

    .summary-row span {
        font-size: 18px;
    }

    .summary-row.total span {
        font-size: 24px;
    }

}

.stripe-card-element {
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    min-height: 52px;
}

.secure-payment-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* ==========================================================================
    Checkout SECTION End
    ========================================================================== */

/* ==========================================================================
    Strip SECTION  END
========================================================================== */

/* ==========================================================================
    Support PAGE START
========================================================================== */

.support-section {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.support-heading {
    font-size: clamp(2rem, 5vw, 1.7rem);
    line-height: 1.2;
    font-weight: 400 !important;
    color: #000;
    margin-bottom: 12px;
}

.support-subheading {
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 0;
}

.support-card {
    background: #ffffff;
    text-align: center;
    padding: 20px 30px;
    height: 100%;
    transition: 0.4s;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.support-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e4e7de;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: 0.4s;
}

.support-icon i {
    color: #3d7b12;
    font-size: 28px;
    transition: 0.4s;
}

.support-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.support-card p {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 0;
    line-height: 1.6;
}

.support-card:hover .support-icon {
    background: #dce8d2;
}

.support-card:hover .support-icon i {
    transform: scale(1.1);
}

@media(max-width:991px) {

    .support-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .support-subheading {
        font-size: 1rem;
    }

    .support-card {
        padding: 40px 25px;
    }

    .support-card h4 {
        font-size: 1.5rem;
    }

    .support-card p {
        font-size: 1rem;
    }

}

.mini-cart-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .4);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

}

.mini-cart-overlay.active {

    opacity: 1;
    visibility: visible;

}

.mini-cart-drawer {

    position: fixed;

    top: 0;
    right: 0;

    width: 420px;
    max-width: 100%;

    height: 100vh;

    background: #fff;

    z-index: 9999;

    transform: translateX(100%);

    transition: .35s ease;

    display: flex;
    flex-direction: column;

}

.mini-cart-drawer.active {

    transform: translateX(0);

}

.mini-cart-header {

    padding: 24px;

    border-bottom: 1px solid #eee;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.mini-cart-close {

    border: none;
    background: none;

    font-size: 2rem;

    line-height: 1;

}

.mini-cart-body {

    flex: 1;

    overflow-y: auto;

    padding: 24px;

}

.mini-cart-footer {

    border-top: 1px solid #eee;

    padding: 24px;

}

.mini-cart-subtotal {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

}

.mini-cart-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 54px;

    border-radius: 999px;

    border: 1px solid #111;

    color: #111;

    text-decoration: none;

    margin-bottom: 12px;

    font-weight: 600;

}

.mini-cart-btn.dark {

    background: #111;
    color: #fff;

}

.mini-cart-item {

    display: flex;

    gap: 16px;

    margin-bottom: 24px;

}

.mini-cart-item img {

    width: 90px;
    height: 110px;

    object-fit: cover;

    border-radius: 14px;

}

.mini-cart-item-title {

    font-size: .95rem;
    font-weight: 600;

    margin-bottom: 8px;

}

.mini-cart-remove {

    border: none;
    background: none;

    padding: 0;

    color: red;

    font-size: .85rem;

}

.wishlist-count-badge {
    position: absolute;
    top: 2px;
    right: 38px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 0 5px;
    z-index: 10;
}

/* ==========================================================================
    Support PAGE  END
========================================================================== */

