/* ================= CSS VARIABLES ================= */
:root {
    --primary-green: #7cb342;
    --primary-green-dark: #689f38;
    --text-dark: #2c3e50;
    --bg-light: #f4f6f9;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* ================= UTILITIES & OVERRIDES ================= */
.bg-brand { background-color: var(--primary-green) !important; }
.text-brand { color: var(--primary-green) !important; }

.btn-brand {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transition: all 0.3s ease;
}
.btn-brand:hover {
    background-color: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(124, 179, 66, 0.3);
}

.btn-outline-brand {
    color: var(--primary-green);
    border-color: var(--primary-green);
}
.btn-outline-brand:hover {
    background-color: var(--primary-green);
    color: white;
}

.hover-brand:hover { color: var(--primary-green) !important; transition: color 0.2s;}
.hover-opacity:hover { opacity: 0.8; }

.object-fit-cover { object-fit: cover; }

/* Scrollbar styling */
.custom-scrollbar::-webkit-scrollbar { height: 6px; }
.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }

/* ================= PRODUCT CARDS ================= */
.product-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.product-card img {
    transition: transform 0.4s ease;
    border-radius: 8px;
}
.product-card:hover img {
    transform: scale(1.08);
}

.wishlist-btn {
    background: white !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.wishlist-btn:hover i {
    color: #e74c3c;
    font-weight: 900; 
}

/* ================= FOOTER ================= */
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* ================= PRODUCT ZOOM (AI-Style) ================= */
.product-image-container {
    overflow: hidden;
    cursor: crosshair;
    position: relative;
}

.zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    background-repeat: no-repeat;
    background-size: 250%; /* Zoom magnification level */
    border-radius: 10px;
    z-index: 10;
    background-color: white; /* Hides the original image underneath while zooming */
}