/* shop page css */

:root {
    --primary-color: #ecb520;
    --secondary-color: #261720;

    --primary-background-linear-gradient: linear-gradient(135deg, #000, #66465b);
    --secondary-background-linear-gradient: linear-gradient(180deg, #FFFFFF 38%, #E4E4E4 61%);
    --tertiary-background-linear-gradient: linear-gradient(135deg, #c2eeb9, #39e20e);
    --danger-background-linear-gradient: linear-gradient(135deg, #ef7a7a, #e20e0e);
}

.shop-page {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

.shop-heading {
    text-align: start;
    margin: 40px 0 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Scrollable category bar */
.category-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px 0;
    margin-bottom: 25px;
}

.category-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.category-btn {
    border: 1px solid #ddd;
    background: var(--secondary-background-linear-gradient);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.category-btn.active,
.category-btn:hover {
    /* background: linear-gradient(135deg, #007bff, #00c6ff); */
    /* color: #fff; */
    background: var(--primary-background-linear-gradient);
    color: #ecb520;
}

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.product-image img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.price-section {
    display: flex;
    justify-content: center;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 15px;
    font-size: 15px;
    color: var(--secondary-color);
}

.order-info {
    font-size: 14px;
    color: #003399;
    padding: 8px 0;
    border-top: 1px solid #eaeaea;
    font-weight: 500;
}

/* Sidebar Filters */
.filter-sidebar h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.filter-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}

.filter-link:hover {
    /* background: linear-gradient(135deg, #007bff, #00c6ff); */
    /* color: #022770; */
    background: linear-gradient(135deg, rgb(102, 70, 91), rgba(38, 23, 32, 1));
    color: #ecb520;
}

.filter-link.active {
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
    font-weight: 600;
}

/* Circle radio style */
.filter-link::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid linear-gradient(135deg, #007bff, #00c6ff);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.filter-link.active::before {
    background: var(--secondary-color);
    box-shadow: inset 0 0 0 4px var(--primary-color);
}

/* Tags smaller */
.filter-badge {
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-badge:hover {
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
    border-color: none;
}

.filter-badge.active {
    background: var(--primary-background-linear-gradient) !important;
    color: var(--primary-color) !important;
    border-color: none !important;
}

/* Sorting dropdown */
.sort-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--secondary-color);
}

.product-name a:hover {
    color: var(--secondary-color);
}

.action-buttons .action-icon {
    background: var(--secondary-background-linear-gradient);
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 10px;
    /* width: 36px;
    height: 36px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.action-buttons .action-icon:hover {
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.action-buttons .action-icon.remove-from-cart {
    background: var(--danger-background-linear-gradient);
    color: #fff;
}

.action-buttons .action-icon.buy-now {
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
}

.action-buttons i {
    font-size: 16px;
    margin-right: 2px;
}

/* ---------------------- Product details page --------------------- */

.product-container {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
}

/* Thumbnail Gallery Styles */
.thumbnail-gallery-col {
    padding: 0 15px;
}

.thumbnail-gallery {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.thumbnail-gallery li {
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 3px;
    display: block;
}

.thumbnail-gallery li:hover,
.thumbnail-gallery li.active {
    border-color: #cfcfcf;
}

.thumbnail-gallery img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

/* Scrollbar styling */
.thumbnail-gallery::-webkit-scrollbar {
    width: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Main Product Image */
.main-product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-details {
    padding: 25px;
    transition: all 0.3s ease;
}

.product-details .category {
    background: #007bff;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-details h2 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-details p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.product-details h5 {
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.product-details label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.product-details .input-group {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.product-details .btn-number {
    background: #f8f9fa;
    border: none;
    font-size: 16px;
    transition: 0.2s;
}

.product-details .btn-number:hover {
    background: #007bff;
    color: #fff;
}

.product-details input.form-control {
    border: none;
    box-shadow: none;
    font-weight: 600;
    color: #111;
}

.product-details .add-to-cart-btn {
    width: 100%;
    background: var(--secondary-background-linear-gradient);
    color: var(--secondary-color);
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.product-details .add-to-cart-btn:hover {
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
}

.product-details .buy-now {
    width: 100%;
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.product-details .buy-now:hover {
    background: var(--secondary-background-linear-gradient);
    color: var(--secondary-color);
}

.product-details .remove-from-cart-btn {
    width: 100%;
    background: var(--danger-background-linear-gradient);
    color: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.buy-now-btn {
    width: 100%;
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
}

.buy-now-btn:hover {
    background: var(--secondary-background-linear-gradient);
    color: var(--secondary-color);
}

.product-details .shipping-info {
    margin-top: 15px;
    font-size: 14px;
    color: #007bff;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.product-details .shipping-info .bi {
    font-size: 18px;
    margin-right: 8px;
}

/* Buttons and Form */
.add-to-cart-btn {
    background-color: #212529;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 16px;
    width: auto;
}

.add-to-cart-btn:hover {
    background-color: #343a40;
    color: #fff;
}

.shipping-info {
    color: #007bff;
    font-size: 13px;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.shipping-info .bi {
    font-size: 16px;
    margin-right: 5px;
}

/* Thumbnail Horizontal Scroll for Mobile */
@media (max-width: 767px) {
    .thumbnail-wrapper {
        width: 100%;
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        margin-bottom: 20px;
        margin-top: 10px;
        padding-bottom: 5px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .thumbnail-gallery {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
    }

    .thumbnail-gallery li {
        flex: 0 0 auto;
        width: 100px;
        margin-right: 10px;
    }

    .thumbnail-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .thumbnail-wrapper::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

    .thumbnail-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
}

/* Product Usage Section */
.product-usage-section-wrapper {
    padding: 50px 0;
}

.product-usage-box {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.usage-icon-container {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #00aaff;
    font-size: 20px;
}

.usage-heading {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.usage-heading span {
    color: #00aaff;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Certificate Section */
.responsive-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.responsive-section .left-img {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 20px;
}

.responsive-section .left-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.responsive-section .right-content {
    flex: 0 0 60%;
    max-width: 60%;
}

.btn-certificate {
    background-color: transparent;
    color: #1F99CE;
    border: 1px solid #1F99CE;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    margin-top: 15px;
}

.btn-certificate:hover {
    background-color: #1F99CE;
    color: #fff;
}

@media (max-width: 767px) {
    .responsive-section {
        flex-direction: column;
        padding: 30px 15px;
    }

    .responsive-section .left-img,
    .responsive-section .right-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .responsive-section .right-content h2 {
        font-size: 24px;
        margin-top: 20px;
    }
}

/* ---------------------- Order success Page ------------------- */

.success-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    animation: pop 1s ease;
}

@keyframes pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.success-section h2 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 10px;
}

.success-section p {
    color: #555;
    font-size: 1.1rem;
}

.road-scene {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 10px;
    overflow: hidden;
    background: linear-gradient(to top, #dfe9f3 0%, #ffffff 100%);
}

/* Road */
.road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 80px;
    background: #2e2e2e;
    animation: moveRoad 3s linear infinite;
}

.road::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(to right, #fff 0 40px, transparent 40px 80px);
    transform: translateY(-50%);
    animation: dashMove 1s linear infinite;
}

@keyframes moveRoad {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes dashMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 80px 0;
    }
}

/* Van */
.van {
    position: absolute;
    bottom: 80px;
    left: -250px;
    width: 200px;
    height: 100px;
    background: #007bff;
    border-radius: 15px 15px 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation:
        driveIn 3s ease-out forwards,
        waitAtBox 2s ease 3s forwards,
        driveOut 3s ease-in 5s forwards;
}

.van::before {
    content: '';
    position: absolute;
    right: -45px;
    bottom: 0;
    width: 65px;
    height: 70px;
    background: #0056b3;
    border-radius: 5px 10px 5px 5px;
}

.window {
    position: absolute;
    top: 10px;
    right: -30px;
    width: 35px;
    height: 25px;
    background: #cce5ff;
    border-radius: 4px;
}

.headlight {
    position: absolute;
    top: 40px;
    left: 0;
    width: 12px;
    height: 10px;
    background: #ffeb3b;
    border-radius: 2px;
    box-shadow: 0 0 10px #ffeb3b;
}

.wheel {
    position: absolute;
    bottom: -20px;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    border: 3px solid #555;
    animation: spin 1s linear infinite;
}

.wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.wheel.back {
    left: 25px;
}

.wheel.front {
    right: 25px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Van movement */
@keyframes driveIn {
    0% {
        left: -250px;
    }

    100% {
        left: 35%;
    }
}

@keyframes waitAtBox {
    from {
        left: 35%;
    }

    to {
        left: 35%;
    }
}

@keyframes driveOut {
    0% {
        left: 35%;
    }

    100% {
        left: 120%;
    }
}

/* Box (package) – synced with van */
.box {
    position: absolute;
    bottom: 230px;
    /* start above van */
    left: 43%;
    /* just above van center */
    width: 50px;
    height: 50px;
    background: #f0ad4e;
    border-radius: 5px;
    opacity: 0;
    animation:
        dropBox 1s ease 3s forwards,
        /* appears & drops when van stops */
        loadBox 1s ease 4s forwards;
    /* moves into van */
}

@keyframes dropBox {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadBox {
    0% {
        opacity: 1;
        bottom: 230px;
    }

    100% {
        opacity: 0;
        bottom: 160px;
    }
}

.btn-track {
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-track:hover {
    background: var(--primary-background-linear-gradient);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* -------------------- My orders ------------------------- */
.order-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-3px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.order-id {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.order-date {
    font-size: 0.9rem;
    color: #777;
}

/* ===== Product Styling ===== */
.product-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fafafa;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s ease;
    height: 100%;
}

.product-item:hover {
    background: #f1f1f1;
}

.product-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

.product-price {
    font-weight: 500;
    color: #000;
    font-size: 0.9rem;
}

.product-qty {
    font-size: 0.85rem;
    color: #777;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
}

.status {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}

.status.delivered {
    background-color: #d1e7dd;
    color: #0f5132;
}

.status.cancelled {
    background-color: #f8d7da;
    color: #842029;
}

.btn-action {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-invoice {
    background: var(--primary-background-linear-gradient);
    color: #fff;
}

.btn-invoice:hover {
    opacity: 0.9;
}

.btn-cancel {
    background: #e6e6e6;
    color: #333;
}

.btn-cancel:hover {
    background: #000;
    color: #fff;
}

.badge-payment-method {
    background: var(--secondary-background-linear-gradient);
    color: var(--secondary-color);
    border: 1px solid #ddd;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}

.badge-order-status {
    background: var(--tertiary-background-linear-gradient);
    color: var(--secondary-color);
    border: 1px solid #ddd;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .order-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* -------------- order details ------------------- */

.order-details-page .card {
    border: none;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.order-details-page .card-header {
    background: var(--secondary-background-linear-gradient);
    border: none;
    padding: 1.8rem;
}

.order-details-page .card-header h4 {
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 1.25rem;
}

.order-details-page .section-title {
    font-size: .9rem;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: .75rem;
}

.order-details-page .info-box {
    background: #fff;
    border-radius: .85rem;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    transition: transform .2s ease;
}

.order-details-page .info-box:hover {
    transform: translateY(-2px);
}

.order-details-page .order-summary {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.order-details-page .table {
    border-radius: .75rem;
    overflow: hidden;
}

.order-details-page .table thead {
    background: #f8faff;
    font-weight: 600;
}

.order-details-page .table tbody tr:hover {
    background: #f1f5ff;
    transition: background .3s ease;
}

.order-details-page .badge-status-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    font-weight: 500;
    font-size: .8rem;
    padding: .5em .9em;
    border-radius: .65rem;
    text-transform: capitalize;
}

.order-details-page .badge-status-danger {
    background: linear-gradient(135deg, #ff4f4fc9, #c92020);
    color: #fff;
    font-weight: 500;
    font-size: .8rem;
    padding: .5em .9em;
    border-radius: .65rem;
}

.order-details-page .btn-modern {
    background: var(--secondary-background-linear-gradient);
    color: var(--secondary-color);
    border: 1px solid #ddd;
    border-radius: .65rem;
    font-weight: 600;
    padding: .75rem;
    transition: all .3s ease;
}

.order-details-page .btn-modern:hover {
    opacity: .95;
    transform: translateY(-2px);
    color: #fff;
}

.order-details-page .icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
    word-break: break-word;
}

.order-details-page .product-card {
    background: #fff;
    border-radius: .75rem;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.order-details-page .product-thumb img {
    border-radius: .6rem;
}

@media (max-width: 767.98px) {
    .order-details-page .table-responsive {
        display: none;
    }

    .order-details-page .product-card h6 {
        font-size: 1rem;
        font-weight: 600;
    }

    .order-details-page .product-card p {
        margin: .25rem 0;
    }
}

@media print {
    .order-details-page body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .order-details-page #invoice {
        width: 210mm !important;
        min-height: 297mm;
        margin: 0 auto !important;
        background: #fff;
        padding: 20px;
        box-sizing: border-box;
    }

    .order-details-page .info-box,
    .order-details-page .order-summary,
    .order-details-page table,
    .order-details-page tr,
    .order-details-page td {
        page-break-inside: avoid !important;
    }

    .order-details-page .page-break {
        page-break-before: always !important;
    }
}

/* banner section */