body {
    margin: 0;
}


.main-page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background-color: #001e46;
}

.dropdown-menu {
    overflow: auto;
    max-height: 300px;
}

.list-img {
    width: 150px !important;
    height: auto !important;
}

.supplier-table {
    font-size: 14px;
}

.supplier-table td {
    vertical-align: center;
    align-content: center;
}

.cart-section {
    padding: 2rem 0;
}

.cart-header {
    margin-bottom: 2rem;
}

.cart-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-subtitle {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.cart-container {
    display: flex;
    gap: 2rem;
}

.cart-items {
    flex: 1;
}

.cart-summary {
    flex: 0 0 350px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cart-table th {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #E1E4E8;
    font-weight: 600;
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid #E1E4E8;
    vertical-align: middle;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    min-height: 60px;
    min-width: 60px;
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.checkout-section {
    padding: 2rem 0;
}

.checkout-header {
    margin-bottom: 2rem;
}

.checkout-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E1E4E8;
    z-index: 1;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid #E1E4E8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.step-title {
    font-size: 0.875rem;
    color: #4A4A4A;
    text-align: center;
}

.checkout-step.active .step-number {
    background-color: #4A90E2;
    border-color: #4A90E2;
    color: #FFFFFF;
}

.checkout-step.active .step-title {
    color: #4A90E2;
    font-weight: 600;
}

.checkout-step.completed .step-number {
    background-color: #28A745;
    border-color: #28A745;
    color: #FFFFFF;
}

.checkout-container {
    display: flex;
    gap: 2rem;
}

.order-detail-section {
    padding: 2rem 0;
}

.order-detail-header {
    margin-bottom: 2rem;
}

.order-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.order-detail-subtitle {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.order-detail-container {
    display: flex;
    gap: 2rem;
}

.order-detail-main {
    flex: 1;
}

.order-detail-sidebar {
    flex: 0 0 350px;
}

.order-card {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-card:last-child {
    margin-bottom: 0;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.order-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.order-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.order-status.completed {
    background-color: #E6F4EA;
    color: #28A745;
}

.order-status.processing {
    background-color: #FFF8E6;
    color: #FFC107;
}

.order-status.shipped {
    background-color: #E6F0FF;
    color: #4A90E2;
}

.order-status.cancelled {
    background-color: #FEEBEB;
    color: #DC3545;
}

.order-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-info-item {
    flex: 1;
    min-width: 200px;
}

.order-info-label {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-bottom: 0.25rem;
}

.order-info-value {
    font-weight: 600;
}

.order-progress {
    margin-bottom: 1.5rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E1E4E8;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid #E1E4E8;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.step-title {
    font-size: 0.875rem;
    color: #4A4A4A;
    text-align: center;
}

.progress-step.active .step-icon {
    background-color: #4A90E2;
    border-color: #4A90E2;
    color: #FFFFFF;
}

.progress-step.active .step-title {
    color: #4A90E2;
    font-weight: 600;
}

.progress-step.completed .step-icon {
    background-color: #28A745;
    border-color: #28A745;
    color: #FFFFFF;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #E1E4E8;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    margin-right: 1rem;
}

.order-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.order-item-details {
    flex: 1;
}

.order-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.order-item-subtitle {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-bottom: 0.25rem;
}

.order-item-supplier {
    font-size: 0.875rem;
    color: #4A4A4A;
}

.order-item-price {
    text-align: right;
    min-width: 100px;
}

.order-item-quantity {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-bottom: 0.25rem;
}

.order-item-total {
    font-weight: 600;
}

.order-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-order-action {
    padding: 0.75rem 1.5rem;
    background-color: #FFFFFF;
    color: #4A4A4A;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
}

.btn-order-action i {
    margin-right: 0.5rem;
}

.btn-order-action:hover {
    background-color: #F5F7FA;
}

.btn-order-action.primary {
    background-color: #4A90E2;
    color: #FFFFFF;
    border-color: #4A90E2;
}

.btn-order-action.primary:hover {
    background-color: #1A365D;
}

.address-box {
    padding: 1rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.address-box:last-child {
    margin-bottom: 0;
}

.address-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-content {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.payment-info {
    margin-bottom: 1.5rem;
}

.btn-continue-shopping {
    color: #fff !important;
}

.component-detail-section {
    padding: 2rem 0;
}

.breadcrumb {
    display: flex;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #4A4A4A;
}

.breadcrumb-item a {
    color: #4A4A4A;
}

.breadcrumb-item a:hover {
    color: #4A90E2;
}

.breadcrumb-item.active {
    color: #4A90E2;
}

.component-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.component-title {
    flex: 1;
}

.component-title h1 {
    margin-bottom: 0.5rem;
}

.component-subtitle {
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.component-category {
    font-size: 0.875rem;
    color: #4A4A4A;
}

.component-actions {
    display: flex;
    gap: 1rem;
}

.component-action-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    background-color: transparent;
    color: #4A4A4A;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.component-action-btn i {
    margin-right: 0.5rem;
}

.component-action-btn:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

.component-detail-container {
    display: flex;
    gap: 2rem;
}

.component-gallery {
    flex: 0 0 35%;
}

.breadcrumb-item::before {
    content: "" !important;
}

.breadcrumb-item {
    padding-left: 0 !important;
}

.component-main-image {
    width: 100%;
    height: 300px;
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
}

.component-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.component-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.component-thumbnail {
    width: 80px;
    height: 80px;
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s ease-in-out;
}

.component-thumbnail.active {
    border-color: #4A90E2;
}

.component-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.component-info {
    flex: 1;
}

.component-price-section {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.component-price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.component-price-title {
    font-weight: 600;
    font-size: 1.125rem;
}

.component-price-range {
    font-weight: 700;
    font-size: 1.5rem;
    color: #4A90E2;
}

.component-price-info {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-bottom: 1rem;
}

.component-suppliers {
    margin-top: 1rem;
}

.supplier-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E1E4E8;
}

.supplier-row:last-child {
    border-bottom: none;
}

.supplier-logo {
    flex: 0 0 100px;
    height: 40px;
    display: flex;
    align-items: center;
}

.supplier-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.supplier-price {
    flex: 0 0 100px;
    font-weight: 600;
}

.supplier-stock {
    flex: 1;
    font-size: 0.875rem;
}

.supplier-moq {
    flex: 0 0 100px;
    font-size: 0.875rem;
    color: #4A4A4A;
}

.supplier-action {
    flex: 0 0 120px;
    text-align: right;
}

.component-purchase-section {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quantity-label {
    margin-right: 1rem;
    font-weight: 600;
}

.quantity-input {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F7FA;
    border: 1px solid #E1E4E8;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.quantity-btn:hover {
    background-color: #E1E4E8;
}

.quantity-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.quantity-btn:last-child {
    border-radius: 0 4px 4px 0;
}

.quantity-value {
    width: 60px;
    height: 36px;
    border-top: 1px solid #E1E4E8;
    border-bottom: 1px solid #E1E4E8;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 600;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
}

.btn-add-cart {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    background-color: #FF6B00;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-add-cart i {
    margin-right: 0.5rem;
}

.btn-add-cart:hover {
    background-color: #E65100;
}

.btn-add-wishlist {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-add-wishlist:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

.component-tabs {
    margin-top: 2rem;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #E1E4E8;
    margin-bottom: 1.5rem;
}

.tab-item {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.tab-item.active {
    color: #4A90E2;
    border-bottom-color: #4A90E2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #F5F7FA;
}

.specifications-table th,
.specifications-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E1E4E8;
}

.specifications-table th {
    font-weight: 600;
    width: 40%;
}

.datasheet-section {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #F5F7FA;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.datasheet-icon {
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #4A90E2;
}

.datasheet-info {
    flex: 1;
}

.datasheet-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.datasheet-meta {
    font-size: 0.875rem;
    color: #4A4A4A;
}

.datasheet-action {
    flex: 0 0 120px;
    text-align: right;
}

.alternative-components {
    margin-top: 3rem;
}

.alternative-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.alternative-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.alternative-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    margin: 0 -0.75rem;
}

.alternative-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 0.75rem;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alternative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .component-detail-container {
        flex-direction: column;
    }

    .component-gallery {
        flex: 0 0 auto;
    }

    .alternative-card {
        flex: 0 0 calc(33.333333% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .component-header {
        flex-direction: column;
    }

    .component-actions {
        margin-top: 1rem;
    }

    .alternative-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 576px) {
    .component-main-image {
        height: 200px;
    }

    .component-thumbnails {
        justify-content: center;
    }

    .component-thumbnail {
        width: 60px;
        height: 60px;
    }

    .supplier-row {
        flex-wrap: wrap;
    }

    .supplier-logo {
        flex: 0 0 100px;
        margin-bottom: 0.5rem;
    }

    .supplier-price {
        flex: 1;
    }

    .supplier-stock {
        flex: 0 0 100%;
        margin-bottom: 0.5rem;
    }

    .supplier-moq {
        flex: 1;
    }

    .supplier-action {
        flex: 0 0 100%;
        text-align: left;
        margin-top: 0.5rem;
    }

    .purchase-actions {
        flex-direction: column;
    }

    .btn-add-wishlist {
        width: 100%;
    }

    .alternative-card {
        flex: 0 0 calc(100% - 1.5rem);
    }
}

.payment-method:not(.credit):not(.atdoor):not(.transfer) {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.payment-icon {
    margin-right: 0.5rem;
    color: #4A90E2;
}

.payment-details {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-label {
    color: #4A4A4A;
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid #E1E4E8;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.125rem;
}

.summary-total .summary-value {
    color: #4A90E2;
}

.tracking-info {
    margin-bottom: 1.5rem;
}

.tracking-number {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tracking-number-label {
    margin-right: 0.5rem;
    color: #4A4A4A;
}

.tracking-number-value {
    font-weight: 600;
    margin-right: 0.5rem;
}

.tracking-number-copy {
    color: #4A90E2;
    cursor: pointer;
}

.tracking-timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 1rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12px;
    bottom: -12px;
    width: 2px;
    background-color: #E1E4E8;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #4A90E2;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.75rem;
    color: #4A4A4A;
}

.timeline-description {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-top: 0.25rem;
}

@media (max-width: 992px) {
    .order-detail-container {
        flex-direction: column;
    }

    .order-detail-sidebar {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .progress-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .progress-steps::before {
        display: none;
    }

    .order-info {
        flex-direction: column;
        gap: 1rem;
    }

    .order-info-item {
        min-width: auto;
    }

    .order-item {
        flex-wrap: wrap;
    }

    .order-item-image {
        margin-bottom: 1rem;
    }

    .order-item-price {
        width: 100%;
        text-align: left;
        margin-top: 1rem;
    }

    .order-actions {
        flex-direction: column;
    }

    .btn-order-action {
        width: 100%;
        justify-content: center;
    }
}

.k-button-icontext {
    border: none !important;
}

.k-master-row td {
    padding: 16px !important;
    font-size: 16px !important;
}

.checkout-form {
    flex: 1;
}

.checkout-summary {
    flex: 0 0 350px;
}

.checkout-card {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-card:last-child {
    margin-bottom: 0;
}

.checkout-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkout-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.checkout-card-subtitle {
    color: #4A4A4A;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    transition: border-color 0.2s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease-in-out;
}

.form-select:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-checkbox-input {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.form-checkbox-label {
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.btn-back {
    padding: 0.75rem 1.5rem;
    background-color: #FFFFFF;
    color: #4A4A4A;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-back:hover {
    background-color: #F5F7FA;
}

.btn-continue {
    padding: 0.75rem 1.5rem;
    background-color: #4A90E2;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-continue:hover {
    background-color: #1A365D;
}

.address-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.address-card {
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.address-card:hover {
    border-color: #4A90E2;
}

.address-card.selected {
    border-color: #4A90E2;
    background-color: #F0F7FF;
}

.address-card.selected::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    color: #4A90E2;
}

.address-type {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-name {
    margin-bottom: 0.25rem;
}

.address-details {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-method {
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: all 0.2s ease-in-out;
}

.payment-method:last-child {
    margin-bottom: 0;
}

.payment-method:hover {
    border-color: #4A90E2;
}

.payment-method.selected {
    border-color: #4A90E2;
}

.payment-method-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.payment-method-radio {
    margin-right: 1rem;
}

.payment-method-title {
    flex: 1;
    font-weight: 600;
}

.payment-method-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-method-icon {
    width: 40px;
    height: 24px;
    background-color: #F5F7FA;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-method-content {
    padding: 1rem;
    border-top: 1px solid #E1E4E8;
    display: none;
}

.payment-method.selected .payment-method-content {
    display: block;
}

.card-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 40px;
    height: 24px;
    background-color: #F5F7FA;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.card-icon:hover {
    border-color: #4A90E2;
}

.card-icon.selected {
    border-color: #4A90E2;
    background-color: #F0F7FF;
}

.summary-box {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 1.5rem;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E1E4E8;
}

.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item-details {
    flex: 1;
}

.summary-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.summary-item-subtitle {
    color: #4A4A4A;
    font-size: 0.875rem;
}

.summary-item-price {
    font-weight: 600;
    margin-left: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-label {
    color: #4A4A4A;
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid #E1E4E8;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.125rem;
}

.summary-total .summary-value {
    color: #4A90E2;
}

.btn-place-order {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #FF6B00;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-top: 1.5rem;
}

.btn-place-order:hover {
    background-color: #E65100;
}

.summary-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #4A4A4A;
}

@media (max-width: 992px) {
    .checkout-container {
        flex-direction: column;
    }

    .checkout-summary {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkout-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .checkout-steps::before {
        display: none;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .address-list {
        grid-template-columns: 1fr;
    }
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    max-width: 300px;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-subtitle {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-bottom: 0.25rem;
}

.cart-item-supplier {
    font-size: 0.875rem;
    color: #4A4A4A;
}

.cart-item-price {
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-input {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F7FA;
    border: 1px solid #E1E4E8;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.quantity-btn:hover {
    background-color: #E1E4E8;
}

.quantity-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.quantity-btn:last-child {
    border-radius: 0 4px 4px 0;
}


.quantity-value {
    width: 80px;
    height: 32px;
    border-top: 1px solid #E1E4E8;
    border-bottom: 1px solid #E1E4E8;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    font-weight: 600;
    color: #4A90E2;
}

.cart-item-actions {
    display: flex;
    gap: 0.5rem;
}

.cart-item-action {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.cart-item-action:hover {
    background-color: #F5F7FA;
    color: #4A90E2;
}

.cart-item-action.remove:hover {
    background-color: #FEE2E2;
    color: #DC3545;
    border-color: #DC3545;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.cart-coupon {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    width: 200px;
    padding: 0.5rem;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
}

.btn-apply-coupon {
    padding: 0.5rem 1rem;
    background-color: #FFFFFF;
    color: #4A90E2;
    border: 1px solid #4A90E2;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-apply-coupon:hover {
    background-color: #4A90E2;
    color: #FFFFFF;
}

.btn-update-cart {
    padding: 0.5rem 1rem;
    background-color: #FFFFFF;
    color: #4A4A4A;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-update-cart:hover {
    background-color: #F5F7FA;
}

.cart-summary-box {
    background-color: #FFFFFF;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 1.5rem;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-label {
    color: #4A4A4A;
}

.summary-value {
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid #E1E4E8;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.125rem;
}

.summary-total .summary-value {
    color: #4A90E2;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #FF6B00;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-top: 1.5rem;
}

.btn-checkout:hover {
    background-color: #E65100;
}

.payment-methods {
    margin-top: 1.5rem;
}

.payment-title {
    font-size: 0.875rem;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icon {
    width: 40px;
    height: 24px;
    background-color: #F5F7FA;
    border: 1px solid #E1E4E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty-cart {
    text-align: center;
    padding: 3rem 0;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #E1E4E8;
    margin-bottom: 1.5rem;
}

.empty-cart-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.empty-cart-text {
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.btn-continue-shopping {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4A90E2;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn-continue-shopping:hover {
    background-color: #1A365D;
}

.recommended-products {
    margin-top: 3rem;
}

.recommended-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.recommended-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    margin: 0 -0.75rem;
}

@media (max-width: 992px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-summary {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-table {
        display: block;
        overflow-x: auto;
    }

    .cart-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cart-coupon {
        width: 100%;
    }

    .coupon-input {
        flex: 1;
    }
}

@media (max-width: 576px) {

    .cart-table th:nth-child(4),
    .cart-table td:nth-child(4) {
        display: none;
    }

    .cart-item-details {
        max-width: 200px;
    }
}

input.form-control {
    padding: 12px !important;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 20px 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination strong {
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #f0f0f0;
    color: #000;
}

.pagination strong {
    background-color: #4A90E2;
    color: #fff;
    border-color: #007bff;
    pointer-events: none;
}


footer {
    background-color: #001e46;
    padding-top: 20px;
}

.autocomplete-suggestions {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #999;
    background: #FFF;
    cursor: default;
    overflow: auto;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-no-suggestion {
    padding: 2px 5px;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}

.autocomplete-group {
    padding: 2px 5px;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: block;
    border-bottom: 1px solid #000;
}


.bg-card-header {
    background-color: #4A90E2 !important;
    color: #fff;
}

.btn-white-context:hover {
    color: #4A90E2 !important;
}

.navbar {
    background-color: #001e46;
}

.lang-selection {
    color: #fff;
}

.footer-menu {
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: #fff;
}

.footer-menu li {
    list-style: none;
    padding: 8px 0 !important;
    color: #fff;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #008EBC;
}

.navbar a {
    color: #fff !important;
}

.logo-container {
    width: 60%;
    text-align: center;
}

.main-search {
    padding: 20px;
    width: 100%;
    font-size: 28px;
}

.main-search-mini {
    padding: 5px;
    width: 100%;
    font-size: 20px;
}

.main-search::placeholder {
    font-size: 28px;
}

.spinner {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    border: 2.5px solid #e0e0e0;
    border-top: 2.5px solid #4A90E2;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

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

    100% {
        transform: rotate(360deg);
    }
}