:root {
    --primary-color: #0d6efd;
    --secondary-color: #00d2ff;
    --dark-bg: #2c3e50;
    --light-bg: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0;
    border-radius: 0 0 80px 80px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.hero-section h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img-top {
    border-radius: 20px 20px 0 0;
    padding: 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, #0d6efd, #00d2ff);
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.btn-outline-primary {
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
}

.navbar-brand {
    font-size: 1.8rem;
    background: linear-gradient(to right, #0d6efd, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Products */
.badge-rx {
    background: #ff4757;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-radius: 50px 50px 0 0;
    padding-top: 80px;
}

.footer h4, .footer h5 {
    color: #fff;
    font-weight: 700;
}

.footer a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer a:hover {
    color: #fff;
    padding-left: 5px;
}

/* AJAX Loader placeholder if needed */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
