/* =========================================================
   Cart, Checkout & Thank You Page Custom UI/UX Styles
   ========================================================= */

/* --- Cart Page --- */
.cart-main-wrapper {
    padding-bottom: 60px;
}
.cart-table table {
    width: 100%;
    border-collapse: collapse;
}
.cart-table th {
    background-color: #f7f7f7;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    border: 1px solid #e5e5e5;
    color: #333;
}
.cart-table td {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
    border: 1px solid #e5e5e5;
}
.cart-table td.pro-thumbnail img {
    max-width: 80px;
}
.cart-table td.pro-title a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.cart-table td.pro-title a:hover {
    color: #fed700;
}
.cart-table td.pro-price span, .cart-table td.pro-subtotal span {
    font-weight: 600;
    color: #e52e06;
}
.pro-qty input {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.cart-table td.pro-remove a {
    color: #999;
    font-size: 20px;
    transition: 0.3s;
}
.cart-table td.pro-remove a:hover {
    color: #e52e06;
}

.cart-update-option {
    margin-top: 30px;
}

.cart-calculator-wrapper {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 30px;
    margin-top: 40px;
    border-radius: 5px;
}
.cart-calculate-items h3 {
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}
.cart-calculate-items table {
    width: 100%;
}
.cart-calculate-items table td {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}
.cart-calculate-items table tr.total td {
    font-weight: 700;
    font-size: 18px;
    border-bottom: none;
    color: #e52e06;
}
.cart-calculator-wrapper .btn {
    margin-top: 20px;
    background-color: #fed700;
    color: #222;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    transition: 0.3s;
}
.cart-calculator-wrapper .btn:hover {
    background-color: #222;
    color: #fff;
}

/* --- Checkout Page --- */
.checkout-page-wrapper {
    padding-bottom: 80px;
}
.checkout-billing-details-wrap h2, .order-summary-details h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 2px solid #fed700;
    padding-bottom: 10px;
    display: inline-block;
}
.single-input-item {
    margin-bottom: 20px;
}
.single-input-item label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}
.single-input-item label.required::after {
    content: '*';
    color: #e52e06;
    margin-left: 4px;
}
.single-input-item input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 12px 15px;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}
.single-input-item input:focus {
    border-color: #fed700;
    box-shadow: 0 0 5px rgba(254, 215, 0, 0.3);
}

.order-summary-details {
    background: #fdfdfd;
    border: 1px solid #ebebeb;
    padding: 30px;
    border-radius: 8px;
}
.order-summary-table table {
    width: 100%;
}
.order-summary-table th {
    background: #f7f7f7;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.order-summary-table td {
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}
.order-summary-table tfoot td {
    font-weight: 600;
}
.order-summary-table tfoot tr:last-child td {
    font-size: 18px;
    color: #e52e06;
}

.order-payment-method {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ebebeb;
}
.order-payment-method h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.single-payment-method {
    margin-bottom: 15px;
}
.payment-method-details {
    background: #f5f5f5;
    padding: 15px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
}
.summary-footer-area .btn {
    background: #fed700;
    color: #222;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
    border-radius: 4px;
}
.summary-footer-area .btn:hover {
    background: #222;
    color: #fff;
}

/* --- Thank You Page --- */
.thank-you-content {
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-top: 5px solid #28a745;
}
.thank-you-content h2 {
    color: #333;
    font-weight: 700;
}
.thank-you-content .order-info {
    border-left: 4px solid #fed700;
}
.thank-you-content .btn {
    background: #fed700;
    color: #222;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}
.thank-you-content .btn:hover {
    background: #222;
    color: #fff;
}
