/* Overlay Background */
#arrowUpsellContainer .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#arrowUpsellContainer  .cart-overlay.active {
    display: block;
    opacity: 1;
}

/* Side Cart Panel */
@keyframes slideIn {
    from { width: 0; opacity: 0; }
    to   { width: 100%; opacity: 1; }
}

@keyframes slideOut {
    from { width: 100%; opacity: 1; }
    to   { width: 0; opacity: 0; }
}

#arrowUpsellContainer .side-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    max-width: 500px;
    height: 100%;
    background: white;
    z-index: 2000;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: none;
}

#arrowUpsellContainer .side-cart.active {
    display: flex;
    right: 0;
    width: 100%;
    animation: slideIn 1s ease-out forwards;
}

/* Cart Header */
#arrowUpsellContainer .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
}

#arrowUpsellContainer .cart-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

#arrowUpsellContainer .close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    padding: 5px 10px;
    transition: color 0.2s;
}

#arrowUpsellContainer .close-btn:hover {
    color: #000;
}

/* Cart Content */
.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 25px 10px;
}

/* Cart Item */
#arrowUpsellContainer .cart-item {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

#arrowUpsellContainer .cart-item-content {
    display: flex;
    gap: 15px;
}

#arrowUpsellContainer .item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: white;
    padding: 5px;
}

#arrowUpsellContainer .item-details {
    flex: 1;
    color: white;
}

#arrowUpsellContainer .item-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

#arrowUpsellContainer .item-meta {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 3px;
}

#arrowUpsellContainer .item-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

#arrowUpsellContainer .item-quantity {
    font-size: 14px;
}

#arrowUpsellContainer .item-price {
    font-size: 18px;
    font-weight: 600;
}

#arrowUpsellContainer .remove-item {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

#arrowUpsellContainer .remove-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Subtotal */
#arrowUpsellContainer .cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 16px;
}

/* Recommendations */
#arrowUpsellContainer .recommendations {
    /*background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%); */
    border-radius: 12px;
    padding: 0 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

#arrowUpsellContainer .recommendations h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

#arrowUpsellContainer .recommendation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#arrowUpsellContainer .recommendation-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}

#arrowUpsellContainer .recommendation-item:hover {
    transform: translateY(-4px);
}

#arrowUpsellContainer .rec-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

#arrowUpsellContainer .rec-colors {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
}

#arrowUpsellContainer .color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
}

#arrowUpsellContainer .color-more {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

#arrowUpsellContainer .rec-info {
    padding: 12px;
}

#arrowUpsellContainer .rec-name {
    color: #8e24aa;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

#arrowUpsellContainer .rec-price {
    font-weight: 600;
    margin-bottom: 10px;
}

#arrowUpsellContainer .view-options-btn {
    background: #e0e0e0;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

#arrowUpsellContainer button:disabled  {
    background-color: #6f7681 !important;
}
#arrowUpsellContainer .view-options-btn:hover {
    background: #d0d0d0;
}

/* Cart Footer */
#arrowUpsellContainer .cart-footer {
    padding: 20px 10px;
    border-top: 1px solid #e0e0e0;
    background: white;
}

#arrowUpsellContainer .cart-footer button {
    width: 100%;
    font-size: 15px;
    transition: all 0.2s;
    margin-bottom: 10px;
}

/** **/

#rec-carousel-content::-webkit-scrollbar { display: none; }
#rec-carousel-content { -ms-overflow-style: none; scrollbar-width: none; }