:root {
    --primary-color: rgb(0, 168, 255);
    --secondary-color: #1a1a1a;
    --accent-color: #0052a3;
    --danger-color: #d32f2f;
    --text-color: #2c2c2c;
    --light-text: #666666;
    --border-color: #e0e0e0;
    --light-bg: #f5f5f5;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Brand Font Family */
body {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

/* 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: 2px solid var(--primary-color);
    margin-bottom: 20px;
}

.cart-header .heading {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.redee {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.wallet-balance {
    background-color: var(--light-bg);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.wallet-balance h3 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
}

.wallet-balance .fa-wallet {
    color: var(--primary-color);
}

.wallet-balance span {
    color: var(--light-text);
}

.wallet-balance b {
    color: var(--secondary-color);
    margin: 0 10px;
    font-weight: 700;
}

.wallet-balance button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.wallet-balance button:hover {
    background-color: #0098d7;
}

/* Cart Items Container */
.cart-items-container {
    margin-bottom: 20px;
}

.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, 61, 122, 0.15);
    border-color: var(--primary-color);
}

.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: 35px;
    height: 35px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px !important;
    margin: auto;
    font-family: 'Roboto', sans-serif;
}

.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(--secondary-color);
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.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;
    font-family: 'Roboto', sans-serif;
}

.price-value {
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.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;
    font-family: 'Roboto', sans-serif;
}

.detail-value {
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.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;
    font-family: 'Roboto', sans-serif;
}

/* 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: var(--primary-color);
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.view-more-btn:hover {
    color: var(--accent-color);
    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 var(--border-color);
    border-radius: 8px;
    background-color: var(--light-bg);
}

.coupon-box h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.coupon-input input[type="text"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.coupon-btn {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.coupon-btn:hover {
    background-color: #0098d7;
}

/* Action Buttons Styling */
.addmore-btn {
    background-color: white !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !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;
    font-weight: 600 !important;
    font-family: 'Roboto', sans-serif !important;
}

.addmore-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Make Payment Button - More Prominent */
.btn-primary, .payment-btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !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(0, 61, 122, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif !important;
}

.btn-primary:hover, .payment-btn:hover {
    background-color: #0098d7 !important;
    border-color: #0098d7 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(0, 61, 122, 0.4) !important;
}

.total-amount {
    display: flex;
    align-items: center;
    gap: 10px;
}

.total-label {
    color: var(--light-text);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.total-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
}

.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: #b71c1c;
}

/* 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);
    font-family: 'Roboto', sans-serif;
}

.product-details p {
    margin: 0;
    color: var(--light-text);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

/* 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(--accent-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;
    font-family: 'Roboto', sans-serif;
}

/* Price and Total */
.price-text,
.total-text {
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.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(--secondary-color);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.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);
    font-family: 'Roboto', sans-serif;
}

.coupon-input input[type="text"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 61, 122, 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;
    font-family: 'Roboto', sans-serif;
}

.coupon-btn:hover {
    background-color: #0098d7;
}

.coupon-message {
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.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(--secondary-color);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.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;
    font-family: 'Roboto', sans-serif;
}

.criteria-item p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.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: 2px solid var(--primary-color);
    color: var(--secondary-color);
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.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);
    font-family: 'Roboto', sans-serif;
}

.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(--primary-color);
    border-bottom: none;
    font-weight: bold;
    color: var(--secondary-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);
    font-family: 'Roboto', sans-serif;
}

.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(--secondary-color);
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.item-number {
    background-color: rgb(0 0 0);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.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;
    font-family: 'Roboto', sans-serif;
}

.price-item .value {
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.price-item .value.discount {
    color: var(--accent-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(--primary-color);
    font-weight: bold;
    color: var(--secondary-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);
    font-family: 'Roboto', sans-serif;
}

.view-more-btn:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.view-more-btn:focus {
    outline: none;
    color: var(--accent-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;
    font-family: 'Roboto', sans-serif;
}

/* 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: var(--light-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Button Variants */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0098d7;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #000000;
    color: white;
}

.btn-success {
    background-color: #2e7d32;
    color: white;
}

.btn-success:hover {
    background-color: #1b5e20;
    color: white;
}

.btn-warning {
    background-color: var(--accent-color);
    color: white;
}

.btn-warning:hover {
    background-color: #e68900;
    color: white;
}

.paymentbtn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.paymentbtn:hover {
    background-color: #0098d7;
}

.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: #0098d7;
}

.fa-plus.lala {
    margin-left: 5px;
}

/* Empty Cart Styling */
.cart-empty {
    padding: 0px!important;
    text-align: center;
}

.cart-empty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.empty-cart-message {
    max-width: 100%!important;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.empty-cart-icon {
    margin-bottom: 30px;
    position: relative;
}

.empty-cart-icon i {
    font-size: 100px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.empty-cart-message h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Roboto', sans-serif;
}

.empty-cart-subtitle {
    color: var(--light-text);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.empty-cart-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 61, 122, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-item span {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.empty-cart-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-start-shopping, .btn-browse-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    vertical-align: middle;
    font-family: 'Roboto', sans-serif;
}

.btn-start-shopping {
    background: linear-gradient(135deg, #47c9ff 0%, #0098d7 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 61, 122, 0.4);
    border: 2px solid transparent;
}

.btn-browse-products {
    background: rgba(0, 61, 122, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-browse-products i {
    color: var(--primary-color);
}

.btn-start-shopping:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 61, 122, 0.5);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #0098d7 0%, #0088c2 100%);
}

.btn-browse-products:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px) scale(1.02);
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0, 61, 122, 0.4);
    border-color: var(--primary-color);
}

.btn-browse-products:hover i {
    color: white;
}

.btn-start-shopping i {
    color: white;
}

.btn-start-shopping i, .btn-browse-products i {
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .cart-empty {
        padding: 40px 15px;
        min-height: 500px;
    }
    
    .empty-cart-message {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .empty-cart-message h2 {
        font-size: 26px;
    }
    
    .empty-cart-subtitle {
        font-size: 16px;
    }
    
    .empty-cart-icon i {
        font-size: 80px;
    }
    
    .empty-cart-features {
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 8px;
    }
    
    .feature-item i {
        font-size: 24px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .empty-cart-actions {
        flex-direction: column;
        gap: 20px;
        margin-top: 15px;
    }
    
    .btn-start-shopping, .btn-browse-products {
        padding: 16px 32px;
        font-size: 15px;
        min-width: 200px;
        border-radius: 10px;
        gap: 10px;
        line-height: 1;
    }
    
    .btn-start-shopping i, .btn-browse-products i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .empty-cart-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .empty-cart-message h2 {
        font-size: 22px;
    }
    
    .empty-cart-subtitle {
        font-size: 15px;
    }
    
    .btn-start-shopping, .btn-browse-products {
        gap: 8px;
        font-size: 14px;
        padding: 14px 28px;
    }
    
    .btn-start-shopping i, .btn-browse-products i {
        font-size: 14px;
    }
}

/* 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);
    font-family: 'Roboto', sans-serif;
}

.secondary-cart-link:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 61, 122, 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;
    font-family: 'Roboto', sans-serif;
}

.summary-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.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;
    font-family: 'Roboto', sans-serif;
}

.footer-inquiry-btn {
    background: #f8f9fa;
    color: rgb(0 0 0);
    border: 1px solid rgb(0 0 0);
}

.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: #0098d7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 61, 122, 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: 100%;
    }
    
    body {
        padding-bottom: 120px;
    }
}

.logoprint{
    display: none!important;
}

.retailerlistbtn a {
    display: block;
    color: #ffffff;
    text-align: center;
    margin-bottom: 5px;
    padding: 8px 17px;
    border: 1px solid #ddd;
    border-radius: 29px;
    font-size: 14px;
    font-weight: 500;
    background: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

.retailerimgicon img {
    width: 60%;
}
