/* Floating Cart Button */
#floating-cart-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #0073aa;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
}
#floating-cart-button:hover {
    background: #005a8c;
}
.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: red;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
}

/* Mini Cart Panel */
#floating-mini-cart-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 99999999999;
}
#floating-mini-cart-panel.open {
    right: 0;
}

/* Header */
#mini-cart-header {
    padding: 12px 16px;
    background: #0073aa;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}
#mini-cart-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Items container */
#mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 16px;
}
#mini-cart-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each item */
#mini-cart-items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.thumbnail img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
}
.details {
    flex: 1;
    margin-left: 8px;
    display: flex;
    flex-direction: column;
}
.product-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #333;
}
.qty-price {
    font-size: 12px;
    color: #666;
}
.remove-item {
    color: red;
    font-size: 16px;
    text-decoration: none;
    margin-left: 8px;
    cursor: pointer;
}

/* Subtotal */
#mini-cart-subtotal {
    padding: 10px 16px;
    font-weight: bold;
    font-size: 15px;
    border-top: 1px solid #ddd;
}

/* Footer buttons */
#mini-cart-footer {
    padding: 10px 16px;
    border-top: 1px solid #ccc;
}
.mini-cart-buttons {
    display: flex;
    gap: 8px;
}
.mini-cart-buttons a {
    flex: 1;
    text-align: center;
    background: #0073aa;
    color: #fff;
    padding: 8px 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    transition: background 0.3s;
}
.mini-cart-buttons a:hover {
    background: #005a8c;
}

.product-addons {
    margin: 4px 0 0 0;
    padding-left: 12px;
    font-size: 12px;
    color: #555;
}
.product-addons li {
    list-style: disc;
}

