/* ===============================
   GLOBAL RESET
=============================== */

body {
    margin: 0;
    padding: 0;
}

/* ===============================
   BUTTONS
=============================== */

.btn {
    transition: all 0.2s ease-in-out;
}

    .btn:hover {
        transform: translateY(-2px);
    }

/* ===============================
   CARDS (GLOBAL)
=============================== */

.card {
    border-radius: 16px !important;
}

    .card:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
    }

/* ===============================
   HERO FIXES
=============================== */

.hero-title {
    font-weight: 800;
}

.hero-subtitle {
    opacity: 0.9;
}

/* ===============================
   PRODUCT CARD IMPROVEMENT
=============================== */

.product-card img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* ===============================
   CTA BOX
=============================== */

.quick-cta-box {
    border-radius: 20px;
}

/* ===============================
   FOOTER
=============================== */

.site-footer {
    font-size: 14px;
}

/* ===============================
   RESPONSIVE FIXES
=============================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}
