/* Cart summary styles */
.nav-cart-item {
    position: relative;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
    border-left: 4px solid #dc3545;
    margin: 5px 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-cart-item:hover {
    background-color: #f8f9fa;
}

.nav-cart-item-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    flex: 1;
}

.nav-cart-item-image {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-cart-item-desc {
    flex: 1;
}

.nav-cart-item-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.nav-cart-item-price {
    display: block;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.nav-cart-item-remove {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    color: #dc3545;
    padding: 5px;
    cursor: pointer;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.nav-cart-item-remove:hover {
    background-color: #dc3545;
    color: white;
    opacity: 1;
}

.nav-cart-item-remove i {
    font-size: 12px;
}

.cart-dropdown-item-wraper {
    min-width: 350px;
    padding: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    max-height: 80vh;
}

.nav-cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 80vh;
}

.nav-cart-items-wrapper {
    flex: 1;
    overflow-y: auto;
    max-height: calc(80vh - 130px); /* Subtract footer height */
    padding: 10px;
}

.nav-cart-items {
    height: 100%;
}

.nav-cart-footer {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid #eee;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

.nav-cart-title {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 0;
}

.nav-cart-action {
    padding: 15px;
    background-color: #fff;
    margin: 0;
}

.nav-cart-action .site-button {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    border-radius: 4px;
}

/* Empty cart message */
.empty-cart-message {
    text-align: center;
    padding: 30px 15px;
    color: #666;
}

.empty-cart-message i {
    display: block;
    margin-bottom: 10px;
    color: #999;
}

.empty-cart-message p {
    font-size: 14px;
    margin: 0;
} 