/* Sticky Buy Now Bar for Product Pages */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #394f70 0%, #38c9ab 100%);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-buy-bar.visible {
    transform: translateY(0);
}

.sticky-buy-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-buy-bar .product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
}

.sticky-buy-bar .buy-button {
    display: inline-block;
    background-color: #feca5d;
    color: #394f70;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sticky-buy-bar .buy-button:hover {
    background-color: #ff7959;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .sticky-buy-bar .product-name {
        font-size: 0.95rem;
    }
    
    .sticky-buy-bar .buy-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sticky-buy-bar .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .sticky-buy-bar .product-name {
        font-size: 0.9rem;
    }
    
    .sticky-buy-bar .buy-button {
        width: 100%;
        max-width: 300px;
    }
}
