/* ================================
   MODERN CLEAN CART TABLE (STYLE C)
================================ */
.cart-wrapper {
    padding: 0;
}

.cart-table-container {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

/* Modern Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead th {
    background: #f3f6fb;
    padding: 12px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #e2e8f0;
}

.cart-table tbody td {
    padding: 12px;
    vertical-align: middle;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
}

/* Product thumbnail */
.cart-thumb img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

/* Quantity dropdown */
.cartQtyDropdown {
    border: 1px solid #ccc;
    padding: 6px;
    border-radius: 6px;
    width: 70px;
}

/* Delete icon */
.delete-btn {
    background: #ffe5e5;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    color: #c00;
    cursor: pointer;
}

.delete-btn:hover {
    background: #ffcdcd;
}

/* Summary box */
.summary-box {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.summary-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row span:last-child {
    font-weight: 500;
}

.total-row {
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 10px;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.checkout-btn {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    background: #007bff;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: #fff !important;
}

.back-link {
    margin-top: 15px;
    display: inline-block;
    text-decoration: underline;
    color: #007bff;
}

/* Full page loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
    font-size: 0.95rem;
    color: #374151;
}

/* Spinner */
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #e14337;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 12px;
}

.apply-btn {
    color: blue;
    cursor: pointer;
    font-weight: 600;
}

.remove-btn {
    color: red;
    cursor: pointer;
    font-weight: 600;
}

.old-postage-price {
  text-decoration: line-through;
  color: red;
  margin-right: 10px;
}

/* ================================
MODERN CLEAN CART TABLE (STYLE C)
================================ */