/* FipDr Custom Premium Stylesheet - Light Theme */

/* Background grid mesh */
.bg-grid-mesh {
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(37, 99, 235, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37, 99, 235, 0.015) 1px, transparent 1px);
}

/* Custom Soft Shadows - Stripe / Apple style */
.fip-shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01), 0 4px 16px rgba(0, 0, 0, 0.01);
}

.fip-shadow-md {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
}

.fip-shadow-lg {
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.04), 0 2px 10px rgba(0, 0, 0, 0.015);
}

/* Custom Ambient Glow */
.glow-orb-teal {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    filter: blur(80px);
}

.glow-orb-emerald {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    filter: blur(80px);
}

/* Custom Organic Blob Shapes for Pet-Friendly Touches */
.pet-blob {
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    transition: border-radius 0.4s ease;
}

.pet-card-blob {
    border-radius: 36px 16px 36px 16px !important;
}

/* Paw print micro-animations */
.paw-hover-effect {
    position: relative;
}

.paw-hover-effect:hover .ti-paw {
    transform: scale(1.25) rotate(15deg);
    color: #0284c7 !important;
}

.ti-paw {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

/* Diagnostic Dashboard Panel */
.fip-dashboard-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.fip-dashboard-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.06);
}

/* Asymmetric Product Card */
.fip-product-card {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fip-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 132, 199, 0.4);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08);
}

/* Timeline vertical line */
.fip-timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #2563eb 0%, #1e3a8a 100%);
    z-index: 0;
}

/* Dosing range slider styling */
input[type="range"].fip-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 9999px;
    outline: none;
}

input[type="range"].fip-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
    transition: transform 0.1s ease;
}

input[type="range"].fip-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Dosing Select styles */
.fip-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25em;
}

/* Image graphic highlights */
.fip-img-glow {
    position: relative;
}

.fip-img-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}
