/* Marketplace Styles */

/* Grid */
.cedear-product-grid {
    font-family: 'Inter', sans-serif;
}

.cedear-products-list {
    display: grid;
    gap: 20px;
}

.cedear-product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cedear-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cedear-product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cedear-product-info {
    padding: 15px;
}

.cedear-product-info h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.cedear-product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    color: #666;
}

.cedear-price {
    font-weight: 700;
    color: #333;
}

.cedear-add-to-cart-btn {
    width: 100%;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cedear-add-to-cart-btn:hover {
    background: #000;
}

/* Cart Widget */
.cedear-cart-container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    font-family: 'Inter', sans-serif;
}

.cedear-cart-container h3 {
    margin-top: 0;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cedear-cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.cedear-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cedear-cart-item-info strong {
    display: block;
    font-size: 14px;
}

.cedear-cart-item-info span {
    font-size: 12px;
    color: #666;
}

.cedear-remove-item {
    background: none;
    border: none;
    color: #d63638;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.cedear-cart-footer {
    border-top: 2px solid #ddd;
    padding-top: 15px;
}

.cedear-cart-total {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cedear-checkout-btn {
    width: 100%;
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.cedear-checkout-btn:hover {
    background: #005a87;
}

.cedear-checkout-success {
    text-align: center;
    color: #46b450;
    padding: 20px 0;
}