

/* Additional styles for the carousel layout */
.dpf-product-forge-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#storeCarousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollbar-hide {
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Smooth transitions */
.group {
    transition: all 0.3s ease;
}

.group:hover {
    transform: translateY(-5px);
}

/* Cart item styles */
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #1f2937;
}

.cart-item-price {
    font-size: 13px;
    color: #6b7280;
}

.cart-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.cart-actions button {
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-actions button:hover {
    background: #f3f4f6;
}

.cart-actions .remove-item {
    background: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
}

.cart-actions .remove-item:hover {
    background: #fecaca;
}

/* Loading animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}