/* Google Fonts - Inter */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Custom Colors */
.bg-primary {
    background-color: #0D8ABC !important;
}

.text-primary {
    color: #0D8ABC !important;
}

.btn-primary {
    background-color: #0D8ABC;
    border-color: #0D8ABC;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #0b739e;
    border-color: #0b739e;
}

.btn-outline-primary {
    color: #0D8ABC;
    border-color: #0D8ABC;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #0D8ABC;
    color: white;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 16.666667%; /* Setara dengan col-md-2 */
    z-index: 100;
    top: 0;
    left: 0;
}

.hover-bg-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
}

/* Utils */
.hover-white:hover {
    color: white !important;
}

.hover-primary:hover {
    color: #0D8ABC !important;
}

/* Card Enhancements */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: #0D8ABC !important;
    color: white !important;
}

.feature-card:hover h4, .feature-card:hover p {
    color: white !important;
}

.feature-card:hover i {
    color: white !important;
}

/* Tables */
.table> :not(caption)>*>* {
    padding: 1rem 1rem;
}

/* Image Hover Zoom & Overlay */
.img-hover-zoom {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.3s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.04);
}

.img-hover-zoom .hover-overlay {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.img-hover-zoom:hover .hover-overlay {
    opacity: 1 !important;
}

