/* Product Pages Styles */

.product-hero {
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    animation: floatBlob 20s ease-in-out infinite;
}

@keyframes floatBlob {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: white;
    color: #4141A1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 36px !important;
    }
    
    .product-hero p {
        font-size: 16px !important;
    }
    
    section {
        padding: 60px 0 !important;
    }
}
