:root {
    --emerald: #059669;
    --emerald-light: #d1fae5;
    --emerald-dark: #065f46;
    --teal: #0d9488;
    --surface: #f8faf9;
    --white: #ffffff;
    --text: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
}

* {
    font-family: 'Inter', sans-serif;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Service Card */
.service-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: white;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card.list-view {
    display: flex;
    flex-direction: row;
}

.service-card.list-view .service-image {
    width: 200px;
    height: auto;
}

/* Badge */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-top {
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
}

.badge-new {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
}

.badge-popular {
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
    color: white;
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #ef4444;
}

.wishlist-btn.active svg {
    fill: #ef4444;
}

/* Filter Checkbox/Radio Custom */
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: var(--emerald);
    border-color: var(--emerald);
}

/* Mobile Filter Drawer */
#mobileFilterContent.open {
    transform: translateX(0);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 16px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Toast Notifications */
.toast {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

/* Pagination */
.pagination-btn.active {
    background-color: var(--emerald);
    color: white;
    border-color: var(--emerald);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
