.custom-cart-container {
    position: relative;
    display: inline-block;
}

.custom-cart-icon {
    position: relative;
    cursor: pointer;
}

.custom-cart-count {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}

.custom-cart-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 380px;
    padding: 20px;
    z-index: 1000;
}

.custom-cart-dropdown h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.custom-cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.custom-cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.custom-cart-thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

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

.custom-cart-product-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.custom-cart-quantity-price {
    font-size: 14px;
    color: #333;
}

.custom-cart-subtotal {
    font-size: 16px;
    margin-bottom: 20px;
}

.custom-cart-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.custom-cart-link {
    font-size: 14px;
    text-decoration: underline;
    color: #000;
}

.custom-cart-button {
    background: #008c45;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.custom-cart-extra-info {
    font-size: 12px;
    color: #666;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

@media (max-width: 480px) {
    .custom-cart-dropdown {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: auto;
        padding: 16px;
        border-radius: 0;
        z-index: 9999;
    }
}
