/* =========================
   ROLEX STYLE THEME (WHITE & GREEN)
========================= */

/* GLOBAL */
body {
    background-color: #ffffff !important;
    color: #111 !important;
    font-family: 'Poppins', sans-serif;
}

/* HEADER */
header, .navbar {
    background-color: #ffffff !important;
    border-bottom: 2px solid #0f5132;
}

/* PRODUCT CARDS */
.product-card, .product-item {
    background: #fff !important;
    border-radius: 14px;
    padding: 12px;
    transition: 0.3s;
    border: 1px solid rgba(15,81,50,0.2);
}

.product-card:hover {
    transform: translateY(-6px);
    border: 1px solid #0f5132;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* PRICE */
.price {
    color: #0f5132 !important;
    font-weight: bold;
    font-size: 18px;
}

/* BUTTON */
button, .btn {
    background: #0f5132 !important;
    color: #fff !important;
    font-weight: bold;
    border-radius: 8px;
    padding: 12px;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: #0c3d27 !important;
}

/* BADGE */
.sale, .badge {
    background: #0f5132 !important;
    color: #fff !important;
}

/* IMAGE */
.product-image img {
    border-radius: 12px;
    cursor: zoom-in;
    transition: 0.3s;
}

.product-image img:hover {
    transform: scale(1.05);
}

/* WISHLIST */
.wishlist,
.heart,
.add-to-wishlist,
.favorite {
    color: #0f5132 !important;
}

.wishlist.active {
    color: red !important;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #0f5132;
}
