/* shipping method */
.shipping_methods {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.shipping_option {
    flex: 1;
    min-width: 220px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
    background: #fff;
    margin-bottom: 0;
}

.shipping_option:hover {
    border-color: #000;
}

.shipping_option.active {
    border-color: #000;
    background: #f8f9fa;
}

.shipping_option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.shipping_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.shipping_title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}

.shipping_content small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
}

.shipping_price {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.checkout_shipping_methods {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 575px) {
    .checkout_shipping_methods {
        flex-direction: column;
    }

    .shipping_option {
        width: 100%;
    }
}
/* Checkout shipping method */

/* =========================
   ORDER SUCCESS PAGE CSS
========================= */

.os-page-wrapper .order_success_section {
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.os-page-wrapper .order_success_card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Success Icon */

.os-page-wrapper .success_icon {
    text-align: center;
    margin-bottom: 25px;
}

.os-page-wrapper .success_icon i {
    font-size: 80px;
    color: #28a745;
}

/* Success Content */

.os-page-wrapper .success_content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222222;
    line-height: 1.4;
}

.os-page-wrapper .success_text {
    font-size: 20px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 10px;
}

.os-page-wrapper .sub_text {
    color: #666666;
    font-size: 16px;
    line-height: 28px;
    max-width: 600px;
    margin: 0 auto;
}

/* Order Info */

.os-page-wrapper .order_info {
    margin-top: 40px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.os-page-wrapper .single_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 5px 0;
    border-bottom: 1px solid #f1f1f1;
}

.os-page-wrapper .single_info:last-child {
    border-bottom: none;
}

.os-page-wrapper .single_info span {
    font-weight: 600;
    color: #666666;
    font-size: 15px;
}

.os-page-wrapper .single_info strong {
    color: #111111;
    text-align: right;
    max-width: 60%;
    font-size: 15px;
    line-height: 24px;
}

/* Buttons */

.os-page-wrapper .success_btns {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.os-page-wrapper .theme_btn {
    background: #111111;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
    border: none;
}

.os-page-wrapper .theme_btn:hover {
    background: #28a745;
    color: #ffffff;
}

.os-page-wrapper .theme_btn_outline {
    border: 1px solid #111111;
    color: #111111;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
    background: transparent;
}

.os-page-wrapper .theme_btn_outline:hover {
    background: #111111;
    color: #ffffff;
}

/* Responsive */

@media (max-width: 767px) {
    .os-page-wrapper .order_success_card {
        padding: 30px 20px;
    }

    .os-page-wrapper .success_content h2 {
        font-size: 26px;
    }

    .os-page-wrapper .single_info {
        flex-direction: column;
        gap: 8px;
    }

    .os-page-wrapper .single_info strong {
        max-width: 100%;
        text-align: left;
    }

    .os-page-wrapper .success_btns {
        flex-direction: column;
    }

    .os-page-wrapper .theme_btn,
    .os-page-wrapper .theme_btn_outline {
        width: 100%;
        text-align: center;
    }
}
/* Login page */
.login_welcome_box {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    height: 100%;
    border: 1px solid #eee;
}

.login_icon {
    width: 100px;
    height: 100px;
    background: #218cb8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 95px;
    margin: 0px auto 25px auto;
}

.login_welcome_box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.login_welcome_text {
    font-size: 15px;
    line-height: 28px;
    color: #666;
    margin-bottom: 30px;
}

.login_features {
    margin-bottom: 30px;
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #444;
    font-size: 15px;
}

.feature_item i {
    color: #28a745;
    font-size: 18px;
}

.secure_note {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.secure_note i {
    color: #28a745;
    font-size: 18px;
}

.custom_alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 16px 18px;
    border-radius: 8px;

    margin-bottom: 20px;

    font-size: 14px;
    line-height: 24px;
}

.custom_alert i {
    font-size: 18px;
    margin-top: 2px;
}

/* Success Alert */
.success_alert {
    background: #edf9f0;
    border: 1px solid #b7ebc6;
    color: #1e7e34;
}

.success_alert i {
    color: #28a745;
}

/* Error Alert */
.error_alert {
    background: #fff3f3;
    border: 1px solid #f1c0c0;
    color: #c82333;
}

.error_alert i {
    color: #dc3545;
}

/* Registration */
.register_info_box {
    position: relative;
    padding: 50px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 100%;
    color: #fff;
}

/* Background Image */
.register_info_box {
    background: url("/assets/img/register-bg.jpg") no-repeat center center;
    background-size: cover;
}

/* Dark Overlay */
.register_bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content on top */
.register_content {
    position: relative;
    z-index: 2;
}

.register_icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.register_content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.register_text {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.register_benefits {
    margin-bottom: 25px;
}

.benefit_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.benefit_item i {
    color: #28a745;
}

.register_security {
    margin-top: 20px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dashboard Page */
.customer_dashboard_area {
    padding: 60px 0;
}

.dashboard_welcome {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.dashboard_welcome h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dashboard_welcome p {
    margin: 0;
    color: #666;
}

.dashboard_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.dashboard_card:hover {
    transform: translateY(-5px);
}

.dashboard_card_icon {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.dashboard_card h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.dashboard_card h3 {
    font-size: 28px;
    font-weight: 700;
}

.dashboard_banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.dashboard_banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dashboard_banner_content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: #fff;
}

.dashboard_banner_content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.dashboard_banner_content a {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
}

.dashboard_section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
}

.section_title {
    margin-bottom: 20px;
}

.section_title h3 {
    font-size: 22px;
    font-weight: 700;
}

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

.tracking_status,
.order_badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.pending {
    background: #fff3cd;
    color: #856404;
}

.processing {
    background: #d1ecf1;
    color: #0c5460;
}

.completed,
.delivered {
    background: #d4edda;
    color: #155724;
}

.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.dashboard_order_table th {
    font-weight: 600;
}

.view_btn {
    padding: 6px 15px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
}
/* Dashboard Page */

.tracking_item {
    transition: all 0.3s ease;
}

.tracking_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Content Page */
.about_section {
    padding: 20px 0;
    background: #fff;
}

.content_page_area {
    background: #fff;
}

.content_page_header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.content_page_header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.content_page_content {
    font-size: 17px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

.content_float_img {
    width: 420px;
    max-width: 100%;
    float: left;
    margin: 0 30px 20px 0;
    border-radius: 10px;
    object-fit: cover;
}

/* Newspaper style paragraph spacing */
.content_page_content p {
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media only screen and (max-width: 767px) {
    .content_float_img {
        width: 100%;
        float: none;
        margin: 0 0 25px;
    }

    .content_page_header h1 {
        font-size: 28px;
    }

    .content_page_content {
        font-size: 16px;
        line-height: 1.9;
    }
}

/* Cancel Page */
.order_cancel_section {
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cancel_content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.cancel_content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.cancel_icon i {
    font-size: 90px;
    color: #dc3545;
}

.btn {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .cancel_content {
        padding: 60px 30px;
    }

    .cancel_content h2 {
        font-size: 28px;
    }
}
/* Cancel Page */

.cart_product_title {
    display: block;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.is-invalid {
    border: 1px solid #dc3545 !important;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.25);
    transition: 0.2s ease;
}

.product_variant {
    font-size: large;
}

.product_d_right .price_box {
    margin-bottom: 14px;
    margin-top: 14px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

.content_page_content ul {
    list-style: disc !important;
    padding-left: 20px !important;
    line-height: 1.5 !important;
}

.content_page_content h2 {
    font-size: 25px !important;
    line-height: 1.5;
    font-weight: bold;
}

.content_page_content h3 {
    font-size: 20px !important;
    line-height: 1.5;
    font-weight: bold;
}

.content_page_content p {
    font-size: 18px;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
}
