﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans SC', 'Arial', sans-serif;
    background-color: #f9fafb;
}

.body-content {
    flex: 1;
}

.navbar {
    background-color: #343a40;
}

.navbar-brand {
    font-size: 1.1rem;
    font-weight: normal;
}

    .navbar-brand img {
        width: 85px;
        margin-left: 15px;
    }

.nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem !important;
    margin-right: 0.5rem;
}

    .nav-link:hover {
        background-color: #495057;
        border-radius: 0.25rem;
    }

.nav-item {
    text-align: right;
    border-bottom: 1px solid #555;
    text-align: center;
}

.dropdown-menu {
    background-color: #343a40;
}

.dropdown-item {
    color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 4px;
}

    .dropdown-item:hover {
        background-color: #495057;
        color: #fff;
    }

.navbar-toggler-icon {
    color: #fff;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 0.4rem 0 !important;
    font-size: 0.875rem;
}

    footer p {
        margin: 0;
    }

    footer a {
        color: white;
        text-decoration: underline;
    }

        footer a:hover {
            color: #d1d1d1;
        }

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
}

.carousel-item img {
    /*filter: brightness(75%);*/
}

.carousel-caption h5, .carousel-caption p {
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: scale(1.01);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 767px) {
    .card:hover {
        transform: none;
    }
}


.dropdown-menu {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.btn-details-index {
    background-color: #627d98;
    color: #FFFFFF !important;
    padding: 7px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .btn-details-index:hover {
        background-color: rgba(46, 76, 109, 0.9);
        color: white;
    }

    .btn-details-index i {
        margin-right: 8px;
    }

.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 100;
}

    .ribbon::before, .ribbon::after {
        position: absolute;
        z-index: -1;
        content: '';
        display: block;
        border: 5px solid #28a745; /* Green color */
    }

    .ribbon::before {
        top: 0;
        left: 0;
        border-top-color: transparent;
        border-left-color: transparent;
    }

    .ribbon::after {
        bottom: 0;
        right: 0;
        border-bottom-color: transparent;
        border-right-color: transparent;
    }

    .ribbon span {
        position: absolute;
        display: block;
        width: 225px;
        padding: 15px 0;
        background-color: #28a745; /* Green color */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        color: #fff;
        font: 700 18px/1 'Lato', sans-serif;
        text-transform: uppercase;
        text-align: center;
        left: -25px;
        top: 30px;
        transform: rotate(45deg);
    }


.button-deep-blue {
    background-color: #627d98;
    border: 1px solid #ddd;
    color: #FFFFFF !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .button-deep-blue:hover {
        background-color: rgba(46, 76, 109, 0.9) !important;
    }

    .button-deep-blue:disabled {
        background-color: #ddd !important;
    }

.center-box {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    position: relative;
    margin: 10px;
    height: max-content;
}

    .center-box .form-control {
        height: 50px;
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #333;
        border-radius: 5px;
        padding-left: 45px;
    }

        .center-box .form-control:focus {
            background: #f9f9f9;
            box-shadow: none;
            border-color: #007bff;
            color: #333;
        }



    .center-box .form-group {
        position: relative;
        margin-bottom: 30px;
    }

        .center-box .form-group .prefix-fa {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #333;
        }

        .center-box .form-group .suffix-fa {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            color: #333;
        }

        .center-box .form-group .show-password {
            left: auto;
            right: 15px;
        }

    .center-box input::placeholder {
        color: #aaa;
    }

    .center-box .send-code-btn {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        padding: 5px 10px;
        background: rgba(46, 76, 109, 0.7);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .center-box .send-code-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

.error-message {
    color: red;
    margin-bottom: 20px;
}

.center-box h2 {
    margin-bottom: 30px;
}

.login-link-group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

    .login-link-group a {
        color: #666;
        text-decoration: none;
        font-weight: normal;
    }

        .login-link-group a:hover {
            color: #333;
            text-decoration: underline;
        }

.input-length {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #aaa;
}

.pointer {
    cursor: pointer;
}

.back-link {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .back-link:hover {
        text-decoration: underline;
    }

.custom-checkbox .form-check-input:checked {
    background-color: #627d98;
    border-color: #627d98;
    transform: scale(1.3);
}

.cart-table {
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 5px; /* 表格整体圆角 */
    overflow: hidden; /* 确保圆角生效 */
    box-shadow: 0 0 0 1px #ddd;
}

    .cart-table img {
        width: 120px;
        height: 120px;
        /*object-fit: cover;*/
    }

    .cart-table thead th {
        text-align: center;
    }

.cart-price, .cart-subtotal {
    text-align: right;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
}

.cart-total-price {
    font-weight: bold;
    font-size: 18px;
    color: #DC3545;
}

    .cart-total-price span,
    .cart-subtotal span,
    .cart-price span {
        margin-left: 0px;
    }

.cart-product-info p {
    margin: 0.25rem 0;
}

.cart-product-count input {
    padding-left: 4px !important;
    padding-right: 1px !important;
}

.cart-table-action-cell {
    text-align: right;
}

    .cart-table-action-cell > .delete-icon {
        color: #bfbfbf;
        cursor: pointer;
        font-size: 1.5em;
    }


.thumbnails-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px !important;
}

.thumbnail-control-prev,
.thumbnail-control-next {
    background-color: #eee;
    border: none;
    color: white;
    font-size: 18px;
    padding: 26px 4px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.thumbnail-control-prev {
    margin: 0 10px 0 0;
}

.thumbnail-control-next {
    margin: 0 0 0 10px;
}

    .thumbnail-control-prev:hover,
    .thumbnail-control-next:hover {
        background-color: #627d98; /* Blue color on hover */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .thumbnail-control-prev i,
    .thumbnail-control-next i {
        display: inline-block;
        font-size: 20px;
    }


.thumbnails {
    display: flex;
    overflow-x: auto;
}




.thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.thumbnails-container {
    overflow-x: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-left: 29px;
    margin-right: 24px;
}

.thumbnail-control-prev {
    position: absolute;
    left: 0;
}

.thumbnail-control-next {
    position: absolute;
    right: 0;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 5px 3px;
    cursor: pointer;
    border: 2px solid transparent;
    flex: 0 0 auto;
    transition: border-color 0.3s ease;
    border-radius: 5px;
}

    .thumbnail.active {
        transform: scale(1.1);
        border: 2px solid #28a745;
    }

    .thumbnail img {
        width: 100%;
        border-radius: 4px;
    }

.btn-add-to-cart {
    background: linear-gradient(to right, #f4ca36, #f6962f);
    color: white;
    border-radius: 30px 0 0 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

    .btn-add-to-cart:hover {
        background: linear-gradient(to right, #f4ca36, #f6962f);
        color: white;
    }

    .btn-add-to-cart i {
        margin-right: 8px;
    }

    .btn-add-to-cart:disabled {
        background: #bbb;
        color: #ddd !important;
        color: black;
        cursor: not-allowed !important;
    }


.btn-add-to-checkout {
    background: linear-gradient(to right, #ff5733, #ff5733);
    color: white;
    border-radius: 0 30px 30px 0;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

    .btn-add-to-checkout:hover {
        background: linear-gradient(to right, #ff5733, #ff5733);
        color: white;
    }

    .btn-add-to-checkout i {
        margin-right: 8px;
    }

    .btn-add-to-checkout:disabled {
        background: #aaaaab;
        color: #ddd !important;
        color: black;
        cursor: not-allowed !important;
    }

.product-details {
    padding: 20px;
}

.product-detail-product-price {
    color: #DC3545;
    font-size: 1.5rem;
    margin-top: 10px;
}



.rmb::before {
    content: '¥ ';
    margin-right: 0.2em;
}

.product-detail-presale-info {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.presale-badge {
    background-color: #ffc107;
    color: #212529;
    font-size: 0.8rem;
    padding: 3px 6px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 5px;
}

.presale-badge-big {
    background-color: #ffc107;
    color: #212529;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 5px;
}
.product-detail-presale-info > .presale-totalcount {
    color: #856404;
    margin-top: 10px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.product-detail-presale-info > .presale-dates {
    font-size: 0.9rem;
    color: #856404;
    margin-top: 10px;
    margin-bottom:0;
}
.product-detail-presale-info > .presale-description {
    font-size: 0.9rem;
    color: #856404;
    margin-top: 7px;
    margin-bottom: 0;
}

.product-detail-description {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
}

    .product-detail-description h5 {
        margin-bottom: 1rem;
    }

    .product-detail-description p {
        margin: 0;
    }

/* 瀑布流容器样式 */
.product-image-waterfall {
    position: relative; /* 允许绝对定位的子元素 */
}

.product-image-container {
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
    float: left;
    width: calc(33.33% - 20px); /* 计算宽度，并考虑 margin */
    height: 420px;
    box-sizing: border-box; /* 确保 padding 和 border 不会影响宽度计算 */
}

@media (max-width: 768px) { /* Bootstrap's sm breakpoint is 576px */
    .product-image-container {
        width: 100%; /* 当屏幕宽度小于 576px 时，宽度设置为 100% */
        float: none; /* 取消浮动效果 */
    }
}

.product-image {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

    .product-image.loaded {
        opacity: 1;
    }

    .product-image:hover {
        transform: scale(1.05);
    }

.product-image-loader {
    /*  position: absolute;
      top: 50%;
      left: 50%;*/
    transform: translate(100%, 100%);
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(100%, 100%) rotate(0deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(360deg);
    }
}

/* 模态窗口样式 */
.product-image-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.product-image-modal-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    display: none; /* 默认隐藏 */
}

.product-image-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.product-image-modal-content, .product-image-caption {
    animation-name: zoom;
    animation-duration: 1.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.product-image-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .product-image-close:hover,
    .product-image-close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

.product-image-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

@media only screen and (max-width: 700px) {
    .product-image-modal-content {
        width: 100%;
    }
}

.product-detail-quantity-container {
    justify-content: flex-start;
    margin-top: 1.5rem;
}

    .product-detail-quantity-container .form-label {
        margin-right: 0.5rem;
    }


.checkout-totalPrice,
.checkout-shippingFee {
    font-size: 1rem;
    text-align: right;
}



.checkout-grandTotal {
    color: #DC3545;
    font-size: 1.2rem;
    text-align: right;
}



.address-card {
    position: relative;
    flex: 1 1 200px;
    margin: 10px 0;
    padding: 15px;
    border: 1px dashed #627d98;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s;
}



.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.3s;
    margin: 5px;
}

    .payment-option:hover, .payment-option.selected {
        border-color: #007bff;
        background-color: #e7f3ff;
    }

.btn-address {
    padding: 10px 10px 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: #627d98;
    text-underline-offset: 4px;
}

    .btn-address:hover {
        background-color: #f8f9fa;
        color: #627d98;
    }

.attribute-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .attribute-list li {
        font-size: 0.875rem;
        margin-bottom: 3px;
        color: #555;
        float: left;
        margin-right: 12px;
    }

.attribute-key {
    font-weight: normal;
    font-size: 12px;
    color: #666;
}

.attribute-value {
    color: #666;
    font-size: 14px;
}

.input-group.cart-product-count {
    max-width: 110px;
}

    .input-group.cart-product-count .form-control {
        text-align: center;
        padding: 0.175rem 0rem;
    }

.input-group.product-cart-product-count {
    max-width: 140px;
}

.btn-quantity {
    width: 22px;
    --bs-btn-padding-y: 0rem;
    --bs-btn-padding-x: 0rem;
    --bs-btn-font-size: 1rem;
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #495057;
}

    .btn-quantity:hover {
        background-color: #e2e6ea;
        border-color: #dae0e5;
        color: #495057;
    }

.cart-current-stock {
    margin-top: 8px;
    color: #999;
    font-size: 12px;
}

.product-btn-quantity {
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #495057;
}

    .product-btn-quantity:hover {
        background-color: #e2e6ea;
        border-color: #dae0e5;
        color: #495057;
    }


.shipping-fee:before {
    content: '运费: ¥ ';
    margin-right: 0.2em;
}

.unit-price:before {
    content: '单价: ¥ ';
    margin-right: 0.2em;
}

.sub-total {
}

    .sub-total:before {
        content: '小计: ¥ ';
        margin-right: 0.2em;
    }

.total-price {
    color: #DC3545;
    font-weight: bold;
}

    .total-price:before {
        content: '订单总额: ¥ ';
        margin-right: 0.2em;
        color: #DC3545;
    }

.product-name {
    font-size: 1rem;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

    .product-name a {
        font-size: 1rem;
        text-decoration: none;
        color: #000;
        font-weight: 500;
    }

.cart-icon-fixed {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #343a40;
    color: white;
    padding-top: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1060;
    height: 50px;
    width: 50px;
}

    .cart-icon-fixed .fas {
        font-size: 20px;
    }

    .cart-icon-fixed .cart-count {
        position: absolute;
        top: -4px;
        right: -1px;
        background-color: red;
        color: white;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 12px;
    }
.cs-icon-fixed {
    position: fixed;
    top: 80px;
    left: 15px;
    background-color: #fff;
    color: #343a40;
    padding-top: 6px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1060;
    height: 50px;
    width: 50px;
    text-decoration: none;
}
    .cs-icon-fixed .fa-solid {
        color: #343a40;
        font-size: 20px;
    }
.cs-icon-fixed-content {
    font-size: 12px;
    text-decoration: none;
}
.history-order-summary {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    padding-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.history-order-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

    .history-order-item:last-child {
        border-bottom: none;
    }

.history-ribbon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: -7px;
    right: -7px;
}

    .history-ribbon span {
        position: absolute;
        display: block;
        width: 140px;
        padding: 7px 0;
        color: #fff;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
        top: 22px;
        right: -30px;
    }

.history-ribbon-complete span {
    background-color: #28a745;
}

.history-ribbon-shipped span {
    background-color: #ffc107;
}

.history-ribbon-partiallyshipped span {
    background-color: #ffc107;
}

.history-ribbon-awaitingpayment span {
    background-color: #17a2b8;
}

.history-ribbon-delivered span {
    background-color: #007bff;
}

.history-ribbon-canceled span {
    background-color: #dc3545;
}

.history-ribbon-returned span {
    background-color: #dc3545;
}

.history-ribbon-refunded span {
    background-color: #dc3545;
}

.history-ribbon-processing span {
    background-color: #f2b259;
}

.history-ribbon-refundprocessing span {
    background-color: #e8d509;
}

.history-ribbon-returnedprocessing span {
    background-color: #e8d509;
}
.history-ribbon-exchangeprocessing span {
    background-color: #e8d509;
}
.history-ribbon-closed span {
    background-color: #999;
}

.no-items-container {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.no-items-icon {
    font-size: 64px;
    color: #ddd;
}

.no-items-message {
    font-size: 24px;
    color: #555;
    margin-top: 20px;
}

.no-items-suggestion {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
}

.swal-cancel-button-width {
    min-width: 120px;
}

.swal-confirm-button-width {
    min-width: 120px;
}

.swal2-html-container {
}

.swal2-title {
    font-size: 1.8em
}

@media (max-width: 767px) {
    .swal2-title {
        font-size: 1.5em
    }
}

.top-title-container {
    position: relative;
}

    .top-title-container button {
        position: absolute;
        z-index: 2;
        left: 0;
    }

    .top-title-container h2 {
        margin: 0 auto;
        text-align: center;
        width: 100%;
        position: relative;
        z-index: 1;
    }

.product-productName {
    font-size: 1.5em
}

@media (max-width: 767px) {
    .product-productName {
        font-size: 1.3em
    }
}

.tradeNo {
    font-size: 1em;
}

@media (max-width: 767px) {
    .tradeNo {
        font-size: 0.75em
    }
}

.productdetail-tabs {
    border-bottom: 0;
}

    .productdetail-tabs .nav-item {
        margin-left: 12px;
        margin-right: 10px;
    }

@media (max-width: 767px) {
    .productdetail-tabs .nav-item {
        margin-left: 0px;
        margin-right: 2px;
        font-size: 0.9rem;
    }
}



.productdetail-tabs .productdetail-nav-link {
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-bottom: none;
    border-radius: 0.25rem 0.25rem 0 0;
    padding: 10px 20px;
    margin-right: 2px;
    transition: background-color 0.3s, color 0.3s;
}

    .productdetail-tabs .productdetail-nav-link.active {
        color: #fff;
        background-color: #212529;
        border-color: #007bff #007bff transparent;
        font-weight: bold;
    }

    .productdetail-tabs .productdetail-nav-link:hover {
        background-color: #212529;
        color: #ddd;
    }

.productdetail-tab-content {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.productdetail-tab-content {
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 0 0 0.25rem 0.25rem;
}


    .productdetail-tab-content h5 {
        color: #007bff;
        font-weight: bold;
    }

    .productdetail-tab-content p {
        font-size: 16px;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 0;
    }

.product-info h3 {
    font-size: 1rem;
    margin-top: 1.6rem;
}

.orderdetail-statusinfo {
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    background: #f6f6f6;
    color: #856404;
    height: 38px;
}

    .orderdetail-statusinfo > div > div > i {
        padding-top: 10px;
        font-size: 14px;
    }

    .orderdetail-statusinfo .orderDetailStatusDisplay {
        padding-top: 10px;
        font-size: 16px;
    }

    .orderdetail-statusinfo > div > .buttons {
    }

@media (max-width: 767px) {
    .orderdetail-statusinfo {
    }

        .orderdetail-statusinfo > div > div > i {
            font-size: 12px;
        }

        .orderdetail-statusinfo .orderDetailStatusDisplay {
            font-size: 14px;
        }

        .orderdetail-statusinfo > div > .buttons {
        }
}

.orderdetail-shipment-trackingNumber {
    color: #000;
    font-size: 16px;
    margin-top:20px;
    margin-bottom: 5px;
    text-align:left;
}

@media (max-width: 767px) {
    .orderdetail-shipment-trackingNumber {
        font-size: 16px;
    }
}

.modal-productinfo {
    font-size: 16px;
}

@media (max-width: 767px) {
    .modal-productinfo {
        font-size: 16px;
    }
}

.attributevalue-option {
    display: inline-block;
    margin-right: 0.5em;
    cursor: pointer;
    position: relative;
    margin-bottom: 12px;
}

    .attributevalue-option input {
        display: none;
    }

    .attributevalue-option label {
        border: 1px solid #ddd;
        padding: 0.25em 0.5em;
        border-radius: 4px;
        user-select: none;
        display: inline-block;
        cursor: pointer;
    }

    .attributevalue-option input:checked + label {
        border-color: #28a745;
        background-color: #28a745;
        color: white;
    }

    .attributevalue-option input:disabled + label {
        border-color: #ddd;
        background-color: #f8f9fa;
        color: #ddd;
        cursor: not-allowed;
    }

.sku-info {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .sku-info {
        display: flex;
        align-items: center;
        font-size: 0.8rem;
    }
}

.sku-info-image {
    margin-right: 15px;
}

.sku-thumbnail {
    width: 100px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sku-info-details p {
    margin: 0;
    padding: 0;
}

    .sku-info-details p + p {
        margin-top: 5px;
    }

.payment-remaintime {
    font-size: 12px;
}

.orderdetailstatus-span {
    float: right;
    font-size: 14px;
    color: #fff;
    padding: 3px 7px;
    border-radius: 5px;
}

.orderdetailstatus-AwaitingPayment {
    background-color: #17a2b8;
}

.orderdetailstatus-Canceled {
    background-color: #dc3545;
}

.orderdetailstatus-Closed {
    background-color: #999;
}

.orderdetailstatus-Preparing {
    background-color: #ffc107;
}

.orderdetailstatus-AwaitingShipment {
    background-color: #ffc107;
}

.orderdetailstatus-RefundProcessing {
    background-color: #f2b259;
}

.orderdetailstatus-Refunded {
    background-color: #dc3545;
}

.orderdetailstatus-InTransit {
    background-color: #17a2b8;
}

.orderdetailstatus-Delivered {
    background-color: #007bff;
}

.orderdetailstatus-Signed {
    background-color: #28a745;
}

.orderdetailstatus-ReturnedProcessing {
    background-color: #e8d509;
}

.orderdetailstatus-Returned {
    background-color: #dc3545;
}

#navbarNavDropdown .dropdown-menu-end > li {
    border-bottom: 1px solid #000;
}

@media (max-width: 767px) {
    #navbarNavDropdown .dropdown-menu-end > li > a {
        text-align: center;
    }

    #navbarNavDropdown .dropdown-menu-end {
        margin-bottom: 10px;
    }
}
