.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.close-btn {
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.header-center {
    text-align: center;
}

.header-center h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cart-count {
    font-size: 12px;
    color: #666;
}

.cart-content {
    padding: 10px;
    min-height: calc(100vh - 100px);
}

/* Empty Cart Styles */
.empty-cart {
    text-align: center;
    padding: 0px 15px;
}

.empty-cart-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

.empty-cart-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-shop-now, .btn-signin, .btn-checkout {
    flex: 1;
    /*max-width: 150px;*/
    padding: 7px 8px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-shop-now {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.btn-signin, .btn-checkout {
    background: #000;
    color: white;
}

.btn-shop-now:hover {
    background: #f5f5f5;
}

.btn-signin:hover, .btn-checkout:hover {
    background: #333;
}

/* Cart Items */
.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: #333;
}

.item-price {
    margin-bottom: 10px;
}

.current-price {
    font-weight: 600;
    color: #333;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

.item-actions {
    margin-left: 15px;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff4757;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

/* Cart Summary */
.cart-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: 600;
    font-size: 16px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.shipping {
    color: #27ae60;
}

/* Checkout Section */
.checkout-section {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

/* Suggestions */
.suggestions-section {
    margin-top: 40px;
}

.suggestions-section h3 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.suggestion-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    text-decoration: none;
}

.suggestion-image {
    position: relative;
    /*height: 120px;*/
    overflow: hidden;
}

.suggestion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.suggestion-info {
    padding: 12px;
}

.suggestion-title {
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.3;
}

.suggestion-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.stars {
    color: #ffc107;
    font-size: 10px;
}

.rating-count {
    font-size: 10px;
    color: #666;
}

.suggestion-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.suggestion-price .current-price {
    font-size: 14px;
    font-weight: 600;
}

.suggestion-price .original-price {
    font-size: 10px;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #333;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-btn.disabled {
    background-color: #f0f0f0;
    transform: scale(0.95);
    transition: all 0.2s ease;
}

.btn-checkout {
    background: #27ae60 !important;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-checkout:hover {
    background: #219a52 !important;
}

.btn-signin {
    background: #000;
    color: white;
}

.btn-signin:hover {
    background: #333;
}