/* Premium Cart Styling */
:root {
    --premium-primary: #ff7e00;
    --premium-secondary: #222222;
    --premium-light: #fff9f2;
    --premium-dark: #111111;
    --premium-accent: #e67300;
    --premium-border: #f0e0d0;
    --premium-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    --premium-gradient: linear-gradient(135deg, #ff9f40 0%, #ff7e00 100%);
    --premium-text: #333333;
    --premium-text-light: #777777;
    --premium-success: #5c8a61;
    --premium-error: #e74c3c;
}

/* Hide footer on cart page for full-screen experience */
footer {
    margin-top: 60px;
}

/* Premium Cart Container */
.premium-cart-container {
    background-color: #ffffff;
    padding: 50px 0;
    min-height: 70vh;
}

/* Empty Cart Styling */
.empty-cart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.empty-cart {
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 60px;
    box-shadow: var(--premium-shadow);
    max-width: 600px;
    width: 100%;
}

.empty-cart-icon {
    font-size: 80px;
    color: var(--premium-primary);
    margin-bottom: 30px;
    opacity: 0.8;
}

.empty-cart h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--premium-dark);
    font-weight: 600;
}

.empty-cart p {
    font-size: 16px;
    color: var(--premium-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Premium Button */
.btn-premium {
    display: inline-block;
    background: var(--premium-gradient);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 126, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 126, 0, 0.4);
    background: linear-gradient(135deg, #ff9f40 0%, #e67300 100%);
    color: #fff;
}

/* Premium Cart Content */
.premium-cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Premium Cart Table */
.premium-cart-table {
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--premium-shadow);
    overflow: hidden;
}

/* Table Header */
.cart-table-header {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(60px, 0.5fr);
    padding: 15px;
    background: var(--premium-primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    align-items: center;
    text-align: center;
}

/* Header cells - Fixed alignment */
.header-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    position: relative;
}

.header-cell.product-column {
    justify-content: flex-start;
    padding-left: 15px;
}

.header-cell.price-column {
    justify-content: center;
}

.header-cell.quantity-column {
    justify-content: center;
}

.header-cell.total-column {
    justify-content: center;
}

.header-cell.action-column {
    justify-content: center;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(120px, 1fr) minmax(60px, 0.5fr);
    padding: 15px;
    border-bottom: 1px solid var(--premium-border);
    align-items: center;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: rgba(255, 126, 0, 0.05);
}

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

/* Item Cell */
.item-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    position: relative;
}

.item-cell.product-column {
    justify-content: flex-start;
    padding-left: 15px;
}

/* Price Display - Centered under FİYAT header */
.item-cell.price-column {
    justify-content: center;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
    width: auto;
    text-align: center;
}

/* Quantity Control - Centered under ADET header */
.item-cell.quantity-column {
    justify-content: center;
}

.quantity-control {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--premium-border);
    border-radius: 4px;
    width: 120px;
    height: 40px;
    overflow: hidden;
    background: #fff;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Total Display */
.total-display {
    font-weight: 700;
    color: var(--premium-dark);
    font-size: 18px;
    text-align: center;
    width: auto;
}

/* Remove Button */
.remove-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--premium-border);
    background: #fff;
    color: var(--premium-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    padding: 0;
}

.remove-btn:hover {
    background: var(--premium-error);
    color: #fff;
    border-color: var(--premium-error);
    transform: rotate(90deg);
}

/* Order Summary */
.order-summary {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--premium-shadow);
    padding: 30px;
    position: sticky;
    top: 20px;
    width: 100%;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--premium-dark);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--premium-border);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.summary-label {
    color: var(--premium-text-light);
}

.summary-value {
    font-weight: 600;
    color: var(--premium-dark);
}

.summary-line.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--premium-border);
}

.summary-line.total .summary-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--premium-dark);
}

.total-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--premium-primary);
}

.summary-separator {
    height: 1px;
    background-color: var(--premium-border);
    margin: 20px 0;
}

.free-shipping {
    color: var(--premium-success);
    font-weight: 600;
}

.free-shipping-notice, 
.shipping-notice {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(92, 138, 97, 0.1);
    color: var(--premium-success);
    border-left: 4px solid var(--premium-success);
}

.free-shipping-notice {
    background-color: rgba(92, 138, 97, 0.1);
    color: var(--premium-success);
    border-left: 4px solid var(--premium-success);
}

.shipping-notice {
    background-color: rgba(201, 164, 92, 0.1);
    color: var(--premium-accent);
    border-left: 4px solid var(--premium-primary);
}

.free-shipping-notice i,
.shipping-notice i {
    font-size: 16px;
}

/* Checkout Actions */
.checkout-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-button, 
.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.checkout-button {
    background: var(--premium-gradient);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 126, 0, 0.3);
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 126, 0, 0.4);
    background: linear-gradient(135deg, #ff9f40 0%, #e67300 100%);
}

.continue-shopping {
    color: #fff;
    background: var(--premium-secondary);
}

.continue-shopping:hover {
    background: #333;
    transform: translateY(-2px);
}

.login-notice {
    text-align: center;
    margin-top: 10px;
    color: var(--premium-text-light);
    font-style: italic;
}

/* Improved Variant Properties Styling */
.variant-properties-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid var(--premium-primary);
}

.variant-properties-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--premium-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.variant-properties-label:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    color: var(--premium-primary);
}

.variant-properties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-property {
    font-size: 12px;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.property-name {
    font-weight: 600;
    margin-right: 4px;
    color: var(--premium-text);
}

.property-value {
    color: var(--premium-primary);
    font-weight: 500;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Page Title Container */
.page-title-container {
    margin-bottom: 30px;
    text-align: center;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--premium-gradient);
}

/* Breadcrumb */
.breadcrumb-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

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

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--premium-text-light);
}

.breadcrumb li a {
    color: var(--premium-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: var(--premium-accent);
}

.breadcrumb li.active {
    color: var(--premium-text-light);
}

/* Secure Payment Info */
.secure-payment-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--premium-border);
}

.secure-payment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--premium-dark);
    font-weight: 600;
}

.secure-payment-header i {
    color: var(--premium-primary);
    font-size: 18px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.payment-methods img {
    height: 36px;
    object-fit: contain;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.payment-methods img:hover {
    transform: translateY(-2px);
}

.payment-methods i.fab {
    font-size: 36px;
    color: #003087;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.payment-methods i.fab:hover {
    transform: translateY(-2px);
}

/* Recommended Products */
.recommended-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--premium-border);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--premium-gradient);
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Cart Item Updating Animation */
.cart-item.updating {
    position: relative;
}

.cart-item.updating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.cart-item.updating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(255, 126, 0, 0.3);
    border-top-color: var(--premium-primary);
    border-radius: 50%;
    z-index: 2;
    animation: spin 1s linear infinite;
}

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

/* SweetAlert Customization */
.swal2-popup {
    border-radius: 8px !important;
    padding: 30px !important;
}

.swal2-title {
    color: var(--premium-dark) !important;
    font-size: 24px !important;
}

.swal2-html-container {
    color: var(--premium-text) !important;
}

.swal2-confirm {
    background: var(--premium-gradient) !important;
}

.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.3) !important;
}

/* Responsive Adjustments for New Elements */
@media (max-width: 992px) {
    .premium-cart-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        width: 100%;
        max-width: 100%;
    }
    
    .products-carousel {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .premium-cart-container {
        padding: 30px 0;
    }
    
    .cart-table-header {
        display: none;
    }
    
    .cart-item {
        display: grid;
        grid-template-columns: 1fr;
        padding: 20px 15px;
        position: relative;
        gap: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .item-cell {
        justify-content: flex-start;
        padding: 0;
        width: 100%;
    }
    
    .item-cell.product-column {
        padding-left: 0;
        padding-right: 40px; /* Make room for remove button */
    }
    
    .product-info {
        width: 100%;
    }
    
    .product-image {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }
    
    .product-details {
        width: calc(100% - 90px);
    }
    
    /* Price display responsive design */
    .price-display {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin: 5px 0;
        width: 100%;
        justify-content: flex-start;
    }
    
    .old-price {
        text-decoration: line-through;
        font-size: 14px;
    }
    
    /* Fix for the remove button on mobile */
    .item-cell.action-column {
        position: absolute;
        top: 20px;
        right: 15px;
        width: auto;
        height: auto;
        justify-content: flex-end;
    }
    
    /* Add labels for mobile view */
    .item-cell.price-column::before,
    .item-cell.quantity-column::before,
    .item-cell.total-column::before {
        content: attr(data-label);
        font-weight: 600;
        width: 90px;
        min-width: 90px;
        margin-right: 10px;
        font-size: 14px;
        color: var(--premium-text-light);
        display: inline-block !important;
    }
    
    /* Stack the price, quantity, and total columns */
    .item-cell.price-column,
    .item-cell.quantity-column,
    .item-cell.total-column {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
    }
    
    /* Ensure quantity column is always visible */
    .item-cell.quantity-column {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 50px;
    }
    
    /* Improved tablet quantity controls */
    .quantity-control {
        width: 120px;
        height: 36px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        background: #f8f8f8;
        border-radius: 18px;
        padding: 0 5px;
        border: 1px solid #e0e0e0;
        margin-left: auto;
        visibility: visible !important;
        opacity: 1 !important;
    
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        font-size: 14px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .quantity-input {
        width: 32px;
        font-size: 15px;
        font-weight: 700;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .products-carousel {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .premium-cart-container {
        padding: 20px 0;
        background-color: #ffffff;
    }
    
    .order-summary {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .checkout-button, 
    .continue-shopping {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .product-image {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .summary-line.total .summary-label {
        font-size: 16px;
    }
    
    .total-price {
        font-size: 18px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .products-carousel {
        margin-top: 25px;
    }
    
    .payment-methods {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    /* Mobile quantity controls */
    .quantity-control {
        width: 105px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f8f8f8;
        border-radius: 17px;
        padding: 0 5px;
        border: 1px solid #e0e0e0;
        margin-left: auto;
        right: 138px;
    }
    
    .quantity-btn {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: white;
        color: var(--premium-text);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
    }
    
    .quantity-btn.plus {
        background: var(--premium-primary);
        color: white;
    }
    
    .quantity-input {
        width: 28px;
        font-size: 14px;
        font-weight: 700;
        border: none;
        background: transparent;
        text-align: center;
    }
    
    /* Fix for the item cells on mobile */
    .item-cell.price-column::before,
    .item-cell.quantity-column::before,
    .item-cell.total-column::before {
        width: 70px;
        min-width: 70px;
        font-size: 13px;
    }
    
    /* Better layout for total display on mobile */
    .total-display {
        font-size: 16px;
        font-weight: 700;
        color: var(--premium-primary);
    }
}

/* Product Info */
.product-info {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Product Image - Made rectangular */
.product-image {
    width: 100%;;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--premium-border);
    background: #fff;
    position: relative;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.1);
}

/* Product Details */
.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 15px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}

.product-title a {
    color: var(--premium-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--premium-primary);
}

/* Hide category display as requested */
.product-category {
    display: none;
}

/* Old price and current price */
.old-price {
    text-decoration: line-through;
    color: var(--premium-text-light);
    font-size: 14px;
}

.current-price {
    font-weight: 700;
    color: var(--premium-dark);
    font-size: 18px;
}

/* Quantity buttons */
.quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #f5f5f5;
    color: var(--premium-text);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    border-radius: 4px;
    margin: 0 4px;
}

.quantity-btn:hover {
    background: var(--premium-primary);
    color: white;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--premium-text);
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Premium Order Complete Styling */
.order-completed {
    background-color: #f9f7f5;
    min-height: 60vh;
}

.check-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    position: relative;
    animation: scale 0.5s ease-in-out;
}

.check-circle i {
    color: var(--premium-success);
    background: rgba(92, 159, 125, 0.1);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    font-size: 48px !important;
    animation: fadeIn 0.5s ease-in-out 0.3s both;
    box-shadow: 0 5px 20px rgba(92, 159, 125, 0.3);
}

.order-completed h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--premium-secondary);
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease-in-out 0.5s both;
}

.order-completed .lead {
    font-size: 18px;
    color: var(--premium-text-light);
    animation: fadeIn 0.5s ease-in-out 0.7s both;
}

.order-info-box {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 15px;
    border: 1px solid var(--premium-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: fadeIn 0.5s ease-in-out 0.9s both;
    transition: transform 0.3s ease;
}

.order-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.order-info-box .text-muted {
    color: var(--premium-text-light) !important;
    font-size: 15px;
}

.order-info-box .fw-bold {
    color: var(--premium-secondary);
    font-size: 17px;
}

.order-info-box .text-primary {
    color: var(--premium-primary) !important;
    font-weight: 700;
        font-size: 20px;
}

.card.shadow-sm {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07) !important;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out 1.1s both;
}

.card.shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.card.shadow-sm .card-header {
    background: var(--premium-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 18px 25px;
}

.card.shadow-sm .card-header h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--premium-secondary);
    margin: 0;
}

.card-body.p-4 {
    padding: 25px !important;
}

.table {
    margin-bottom: 0;
}

.table-hover tbody tr:hover {
    background-color: rgba(204, 154, 102, 0.05);
}

.table > :not(caption) > * > * {
    padding: 16px 12px;
    vertical-align: middle;
    border-bottom-color: rgba(0,0,0,0.05);
}

.table thead.table-light {
    background-color: #f8f9fa;
}

.table thead th {
    font-weight: 600;
    color: var(--premium-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tfoot.table-light {
    background-color: #f8f9fa;
}

.table tfoot td {
    font-weight: 500;
    color: var(--premium-text);
}

.table tfoot td.fw-bold {
    font-weight: 700 !important;
    color: var(--premium-secondary);
}

/* Product Display */
.table .d-flex.align-items-center img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.table .d-flex.align-items-center img:hover {
    transform: scale(1.05);
}

.table .d-flex.align-items-center .bg-light {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: #f8f9fa !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.table h6.mb-0 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px !important;
    color: var(--premium-secondary);
}

.table small.text-muted {
    font-size: 13px;
    color: var(--premium-text-light) !important;
}

.small.text-primary {
    color: var(--premium-primary) !important;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    transition: all 0.2s ease;
}

.small.text-primary:hover {
    transform: translateX(3px);
}

.small.text-primary i {
    font-size: 11px;
    margin-right: 4px;
}

.badge.bg-light {
    background-color: #f5f5f5 !important;
    font-weight: 500;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 5px;
    color: var(--premium-text) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.color-dot {
    border: 1px solid #e0e0e0 !important;
}

/* Address Cards */
.card.address-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out 1.3s both;
}

.card.address-card .card-header {
    background: linear-gradient(90deg, var(--premium-secondary) 0%, #2d3035 100%);
    color: white;
    padding: 15px 20px;
}

.card.address-card .card-header i {
    color: var(--premium-accent);
    margin-right: 8px;
    font-size: 18px;
}

.card.address-card .card-header h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.card.address-card .card-body {
    padding: 20px;
}

address {
    font-style: normal;
    color: var(--premium-text);
    line-height: 1.6;
}

address strong {
    color: var(--premium-secondary);
    font-weight: 600;
    font-size: 16px;
}

address abbr {
    text-decoration: none;
    font-weight: 600;
}

/* Payment Info */
.badge.bg-warning {
    background-color: #ffc107 !important;
}

.badge.bg-success {
    background-color: var(--premium-success) !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
}

.fw-medium {
    font-weight: 500;
}

/* Bottom Buttons */
.mt-4.text-center {
    margin-top: 30px !important;
    animation: fadeIn 0.5s ease-in-out 1.5s both;
}

.btn.btn-primary, 
.btn.btn-outline-secondary {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn.btn-primary {
    background: var(--premium-gradient);
    border-color: var(--premium-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(204, 154, 102, 0.3);
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(204, 154, 102, 0.4);
    background: linear-gradient(135deg, #d5ac82 10%, #ba8c5e 100%);
}

.btn.btn-outline-secondary {
    color: var(--premium-secondary);
    border: 1px solid #ced4da;
    background: white;
}

.btn.btn-outline-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.btn.btn-primary i,
.btn.btn-outline-secondary i {
    margin-right: 8px;
}

/* Success Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .order-completed h2 {
        font-size: 28px;
    }
    
    .order-completed .lead {
        font-size: 16px;
    }
    
    .order-info-box {
        padding: 15px !important;
    }
    
    .card.shadow-sm .card-header h5 {
        font-size: 16px;
    }
    
    .card-body.p-4 {
        padding: 20px !important;
    }
    
    .table h6.mb-0 {
        font-size: 15px;
    }
    
    .btn.btn-primary, 
    .btn.btn-outline-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .check-circle {
        width: 90px;
        height: 90px;
    }
    
    .check-circle i {
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 40px !important;
    }
    
    .order-completed h2 {
        font-size: 24px;
    }
    
    .table thead {
        display: none;
    }
    
    .table tbody tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid var(--premium-border);
    }
    
    .table tbody td {
        display: block;
        text-align: right;
        padding: 10px 15px;
        position: relative;
        border-bottom: 1px dotted rgba(0,0,0,0.05);
    }
    
    .table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: var(--premium-secondary);
    }
    
    .table tbody td .d-flex.align-items-center {
        justify-content: flex-end;
    }
    
    .card.address-card {
        margin-bottom: 15px;
    }
    
    .btn.btn-primary, 
    .btn.btn-outline-secondary {
        width: 100%;
        margin-bottom: 10px !important;
    }
} 