:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --danger-color: #e74c3c;
    --text-color: #333;
    --light-text: #777;
    --border-color: #ddd;
    --light-bg: #f8f9fa;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Cart Container Styles */
.cart-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.cart-header .heading {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
}

.redee {
    background: #3498db;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
}

.wallet-balance {
    background-color: var(--light-bg);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.wallet-balance h3 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-balance .fa-wallet {
    color: var(--primary-color);
}

.wallet-balance span {
    color: var(--light-text);
}

.wallet-balance b {
    color: var(--text-color);
    margin: 0 10px;
}

.wallet-balance button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.wallet-balance button:hover {
    background-color: #2980b9;
}

/* Cart Items Container */
.cart-items-container {
    margin-bottom: 20px;
}

/* Cart header row removed as requested */

.cart-item-box {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.cart-item-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.cart-item-main {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--light-bg);
    align-items: center;
}

.cart-item-index {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px !important;
    margin: auto;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    background-color: white;
    border: 1px solid var(--border-color);
}

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

.cart-item-details {
    flex: 1;
    margin: auto;
}

.item-name {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--text-color);
    font-weight: 700;
}

.item-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-label {
    color: var(--light-text);
    font-size: 14px;
}

.price-value {
    font-weight: 600;
    color: var(--text-color);
}

.cart-item-details-box {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    position: relative;
}

.details-row .delete-action {
    margin-left: auto;
    align-self: flex-start;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: auto;
    margin-right: 15px;
}

.detail-label {
    color: var(--light-text);
    font-size: 14px;
}

.detail-value {
    font-weight: 500;
    color: var(--text-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    gap: 10px;
    min-width: 200px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.quantity-label {
    color: var(--light-text);
    font-size: 14px;
    margin-right: 10px;
    white-space: nowrap;
}

/* Order Summary Background */
.order-summary {
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

/* View More Link Styles */
.view-more-section {
    margin-top: 15px;
    text-align: center;
}

.view-more-btn {
    background: none;
    border: none;
    color: #007bff;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.view-more-btn:hover {
    color: #0056b3;
    text-decoration: none;
}

.view-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Collapsible Details */
.order-details-collapse {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.order-details-collapse table {
    width: 100%;
}

/* Coupon Box Styling - positioned under order summary */
.coupon-box {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.coupon-box h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.coupon-input input[type="text"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.coupon-btn {
    padding: 8px 16px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-btn:hover {
    background-color: #c82333;
}

/* Action Buttons Styling */
.addmore-btn {
    background-color: white !important;
    color: #007bff !important;
    border: 1px solid #007bff !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.addmore-btn:hover {
    background-color: #007bff !important;
    color: white !important;
}

/* Make Payment Button - More Prominent */
.btn-primary, .payment-btn {
    background-color: #007bff !important;
    border-color: #007bff !important;
    color: white !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.btn-primary:hover, .payment-btn:hover {
    background-color: #c82333 !important;
    border-color: #c82333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.4) !important;
}

.total-amount {
    display: flex;
    align-items: center;
    gap: 10px;
}

.total-label {
    color: var(--light-text);
    font-size: 14px;
}

.total-value {
    font-weight: 700;
    color: #3498db;
    font-size: 17px;
}

.delete-action {
    margin-left: auto;
}

.delete-btn {
    background-color: var(--danger-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.delete-btn:hover {
    transform: scale(1.1);
    background-color: #c0392b;
}

/* Product Info */
.product-info {
    display: flex;
    align-items: center;
}

.product-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
}

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

.product-details h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: var(--text-color);
}

.product-details p {
    margin: 0;
    color: var(--light-text);
    font-size: 14px;
}

/* Quantity Controls */
.quantity-box,
.quantitymanage {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    position: relative;
}

.qty-wrapper .cartquantitybox {
    position: relative;
    z-index: 1;
    background-color: white;
}

.qtyminusbtn,
.qtyplusbtn {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-weight: bold;
}

.qtyminusbtn:hover,
.qtyplusbtn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.qty,
.cartquantitybox {
    height: 38px;
    width: 120px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 5px;
}

/* Price and Total */
.price-text,
.total-text {
    font-weight: 600;
    color: var(--text-color);
}

.fa-rupee-sign {
    color: var(--primary-color);
    margin-right: 2px;
    font-size: 0.85em;
}

/* Delete Button */
.action-btn a,
.cartprototal a {
    color: var(--danger-color);
    font-size: 18px;
    transition: var(--transition);
    display: inline-block;
}

.action-btn a:hover,
.cartprototal a:hover {
    transform: scale(1.2);
}

/* Coupon Section */
.cart-footer {
    margin-top: 20px;
}

.coupon-box {
    margin-bottom: 15px;
    padding: 12px 15px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.coupon-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 14px;
}

.coupon-input {
    display: flex;
    max-width: 100%;
    margin-bottom: 10px;
}

.coupon-input input[type="text"] {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 13px;
    transition: var(--transition);
}

.coupon-input input[type="text"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.coupon-btn {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 13px;
}

.coupon-btn:hover {
    background-color: #2980b9;
}

.coupon-message {
    margin-top: 10px;
    font-size: 14px;
}

.coupon-criteria {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.coupon-criteria h5 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.criteria-item {
    margin-bottom: 10px;
}

.criteria-item label {
    display: block;
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 5px;
}

.criteria-item p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}

.full-width {
    grid-column: 1 / -1;
}

/* Order Summary */
.cart-summary-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.order-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 20px;
}

.order-summary h4 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
}

.order-summary table,
.summary-table {
    width: 100%;
    border-collapse: collapse;
}

.order-summary table td,
.summary-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-summary table td:first-child,
.summary-table td:first-child,
.summary-label {
    color: var(--light-text);
}

.order-summary table td:last-child,
.summary-table td:last-child,
.summary-value {
    text-align: right;
    font-weight: 500;
}

.order-summary table tr:last-child td,
.summary-table tr:last-child td,
.total-row td {
    padding-top: 12px;
    border-top: 2px solid var(--border-color);
    border-bottom: none;
    font-weight: bold;
    color: var(--text-color);
}

.summary-value.total {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
}

/* Collapsible Details */
.collapse-content {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

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

.details-table td {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.detail-label {
    color: var(--light-text);
    font-size: 14px;
}

.detail-value {
    text-align: right;
    font-weight: 500;
    color: var(--text-color);
}

/* Cart Item Content Styles */
.cart-item-content {
    display: flex;
    padding: 15px;
    gap: 15px;
}

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

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.item-number {
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 120px;
}

.price-item .label {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
}

.price-item .value {
    font-weight: 600;
    color: var(--text-color);
}

.price-item .value.discount {
    color: var(--secondary-color);
}

.price-item .value.quantity {
    background-color: var(--light-bg);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.cart-item-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.per-unit-price,
.total-amount {
    display: flex;
    align-items: center;
    gap: 5px;
}

.total-amount .value.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item-actions {
    margin-top: 10px;
    text-align: right;
}

.quantity-controls {
    margin-top: 10px;
}

/* Cart Summary Section */
.cart-summary-section {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.total-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--border-color);
    font-weight: bold;
    color: var(--text-color);
}

/* View More Button */
.view-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    padding: 5px 0;
    margin-top: 10px;
    transition: var(--transition);
}

.view-more-btn:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.view-more-btn:focus {
    outline: none;
    color: var(--secondary-color);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}



.action-buttons a,
.action-buttons input[type="submit"],
.action-buttons button {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    border: none;
}

/* Two-Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .col-md-8, .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .order-summary {
        margin-top: 20px;
    }
}

/* Cart Items Container */
.cart-items-container {
    padding-right: 20px;
}

/* Order Summary Sticky Positioning */
.col-md-4 .order-summary {
    position: sticky;
    top: 20px;
    margin-bottom: 20px;
}

/* Shipping and Coupon Sections */
.shipping-section, .coupon-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Button Variants */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
    color: white;
}

.btn-warning {
    background-color: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background-color: #e0a800;
    color: #212529;
}

.paymentbtn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.paymentbtn:hover {
    background-color: #27ae60;
}

.addmore-btn,
.action-buttons [id*="LinkButton2"] {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.addmore-btn:hover,
.action-buttons [id*="LinkButton2"]:hover {
    background-color: #2980b9;
}

.fa-plus.lala {
    margin-left: 5px;
}

/* Empty Cart Styling */
.cart-empty {
    padding: 50px 20px;
    text-align: center;
}

.empty-cart-message {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
}

.empty-cart-message i {
    font-size: 60px;
    color: var(--light-text);
    margin-bottom: 20px;
    display: block;
}

.empty-cart-message h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.empty-cart-message p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-shop {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-shop:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .wallet-balance {
        margin-top: 15px;
        width: 100%;
    }

    .cart-header-row,
    .cart-item-row {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .cart-header-cell:nth-child(4),
    .cart-header-cell:nth-child(5),
    .cart-header-cell:nth-child(7),
    .cart-header-cell:nth-child(8),
    .cart-header-cell:nth-child(9),
    .cart-header-cell:nth-child(10),
    .cart-header-cell:nth-child(11),
    .cart-header-cell:nth-child(12),
    .cart-item-cell:nth-child(4),
    .cart-item-cell:nth-child(5),
    .cart-item-cell:nth-child(7),
    .cart-item-cell:nth-child(8),
    .cart-item-cell:nth-child(9),
    .cart-item-cell:nth-child(10),
    .cart-item-cell:nth-child(11),
    .cart-item-cell:nth-child(12) {
        display: none;
    }

    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cart-header-row,
    .cart-item-row {
        font-size: 12px;
    }

    .cart-header-cell,
    .cart-item-cell {
        padding: 0 5px;
    }

    .product-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .product-details h3 {
        font-size: 14px;
    }

    .product-details p {
        font-size: 12px;
    }
    
    .cart-item-main {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .quantity-control, .total-amount {
         margin-bottom: 10px;
     }
     
     .details-row .delete-action {
          margin-left: 0;
          margin-top: 10px;
          width: 100%;
          display: flex;
          justify-content: flex-end;
      }

    .action-buttons a,
    .action-buttons input[type="submit"],
    .action-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Secondary Cart Message Section */
.secondary-cart-message {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    text-align: center;
}

.secondary-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    background-color: white;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.secondary-cart-link:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.secondary-cart-link i {
    font-size: 18px;
}

/* Fixed Cart Footer */
.fixed-cart-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 15px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.cart-summary-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.summary-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.summary-value.total-pay {
    color: var(--primary-color);
    font-size: 18px;
}

.footer-action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-inquiry-btn,
.footer-checkout-btn {
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
    justify-content: center;
}

.footer-inquiry-btn {
    background: #f8f9fa;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.footer-inquiry-btn:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.footer-checkout-btn {
    background: var(--primary-color);
    color: white;
}

.footer-checkout-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    color:white;
}

/* Add bottom padding to body to prevent content overlap */
body {
    padding-bottom: 80px;
}

/* Responsive Design for Fixed Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .cart-summary-info {
        gap: 15px;
        width: 100%;
        justify-content: space-around;
    }
    
    .footer-action-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .footer-inquiry-btn,
    .footer-checkout-btn {
        flex: 1;
        max-width: 150px;
    }
    
    body {
        padding-bottom: 120px;
    }
}