/* Custom CSS for SME Store */

body {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

strong, b {
    font-weight: 600;
}

.small-text {
    font-weight: 300;
}

/* Base UI Elements */
button, .btn {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

input, textarea, select {
    font-family: 'Rubik', sans-serif;
}

/* Hover Lift Effect for Cards & Buttons */
.hover-lift {
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15) !important;
}

.hover-shadow {
    transition: box-shadow 0.2s ease;
}

.hover-shadow:hover {
    box-shadow: 0 .5rem 1rem rgba(13,110,253,.3);
}

.hover-white:hover {
    color: #fff !important;
}

/* Category Cards styling */
.category-card {
    cursor: pointer;
    border: 1px solid rgba(0,0,0,.04) !important;
}

.category-card:hover {
    background-color: #fff !important;
    border-color: rgba(0,0,0,.08) !important;
}

/* Product Cards */
.product-card .card-title {
    font-size: 1.15rem;
    letter-spacing: -0.2px;
}

/* Text Shadow for Hero */
.text-shadow-sm {
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Utility classes */
.z-index-1 {
    z-index: 1;
}

/* Modern Nav links */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}
