/* Drip Wholesalers - Main Styles */

/* Hero gradient */
.hero-parallax {
    position: relative;
    background: url('/assets/img/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}
.hero-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 29, 51, 0.85) 0%, rgba(30, 58, 95, 0.8) 30%, rgba(29, 78, 216, 0.75) 60%, rgba(59, 130, 246, 0.7) 100%);
    z-index: 1;
}
.hero-parallax > * {
    position: relative;
    z-index: 2;
}

/* Product card hover */
.product-card {
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Category pill animations */
.category-pill {
    transition: all 0.2s ease;
}
.category-pill:hover, .category-pill.active {
    transform: scale(1.05);
}

/* Smooth scroll offset for sticky nav */
[id] {
    scroll-margin-top: 80px;
}

/* Form inputs */
.form-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Table styles */
.price-table th {
    background-color: #f8fafc;
    font-weight: 600;
    text-align: left;
}
.price-table td, .price-table th {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}
.price-table tr:hover td {
    background-color: #f8fafc;
}
