:root {
    --bg-main: #F8F9FA;
    --brand-dark: #0F172A;
    --accent-teal: #0D9488;
    --accent-teal-hover: #0F766E;
    --accent-teal-rgb: 13, 148, 136; /* Ajoutez cette ligne */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: #334155;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Navbar */
.navbar-custom {
    background-color: var(--brand-dark);
}

/* Buttons */
.btn-teal {
    background-color: var(--accent-teal);
    color: #FFFFFF;
    border: none;
}

.btn-teal:hover {
    background-color: var(--accent-teal-hover);
    color: #FFFFFF;
}

.bg-teal{
    --bs-bg-opacity:1;
    background-color: rgba(var(--accent-teal-rgb), var(--bs-bg-opacity)) !important;
}

.btn-outline-teal {
    border: 1.5px solid var(--accent-teal);
    color: var(--accent-teal);
}

.btn-outline-teal:hover {
    background-color: var(--accent-teal);
    color: #FFFFFF;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    border-radius: 1rem;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    height: 200px;
    background-color: #F1F5F9;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
}

.cart-badge {
    font-size: 0.75rem;
    top: -2px;
    right: -2px;
}

/* Couleur personnalisée Teal (si vous utilisez cette teinte) */
.text-teal {
    color: #20c997 !important;
}

/* Animations au survol des liens du footer */
footer a.hover-white:hover {
    color: #ffffff !important;
    padding-left: 3px;
    transition: all 0.2s ease-in-out;
}

footer a.hover-teal:hover {
    color: #20c997 !important;
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
}
