* {
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8f9fa;
    color: #1a1a2e;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--secondary);
}

/* Navbar */
.top-bar {
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    padding: 6px 0;
    font-weight: 500;
}

.navbar-store {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-store.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
}

.nav-link-custom {
    position: relative;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link-custom:hover {
    color: var(--primary);
}

.nav-link-custom:hover::after {
    width: 100%;
}

.search-box-custom {
    background: #f1f3f5;
    border-radius: 30px;
    padding: 6px 18px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.search-box-custom:focus-within {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.nav-action-btn {
    border-radius: 30px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    font-weight: 600;
    text-decoration: none;
    gap: 8px;
    height: 42px;
}

.nav-action-btn:hover {
    background: #fff;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.nav-action-btn.icon-only {
    width: 42px;
    padding: 0;
}

.nav-action-btn-primary {
    background: var(--gradient) !important;
    color: white !important;
    border: none;
}

.nav-action-btn-primary:hover {
    opacity: 0.95;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.badge-indicator {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
}

.btn-primary:hover {
    opacity: .9;
    box-shadow: 0 4px 15px rgba(79, 70, 229, .3);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Product Card */
.product-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    padding: 16px;
}

.product-card .product-name {
    font-weight: 600;
    font-size: .9rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.product-card .product-price {
    font-weight: 700;
    font-size: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card .product-category {
    font-size: .75rem;
    color: #999;
}

/* Hero */
.hero-section {
    background: var(--gradient);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

/* Section */
.section-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #1a1a2e;
}

.section-subtitle {
    color: #999;
    font-size: .9rem;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #555;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.footer a {
    color: #555;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--primary);
}

.footer h6 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Badge */
.badge-featured {
    background: var(--gradient);
    font-size: .65rem;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.group-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.category-card:hover .category-icon-wrap {
    transform: scale(1.15) rotate(5deg);
}

.category-card:hover .category-text {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

/* Footer Nyeni Classes */
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary) !important;
    color: white !important;
    transform: translateY(-3px);
}

.hover-primary:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

.x-small {
    font-size: 0.75rem;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-tight {
    letter-spacing: -0.02em;
}

/* Modern Pagination Styling */
.dataTables_wrapper .pagination,
.pagination {
    justify-content: flex-end;
    margin-top: 1.5rem;
    gap: 6px;
}

.page-item .page-link {
    border: none;
    border-radius: 12px !important;
    padding: 0.5rem 0.9rem;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.page-item.active .page-link {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 15px -4px rgba(var(--primary-rgb, 79, 70, 229), 0.4);
    transform: translateY(-1px);
}

.page-item:not(.active) .page-link:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateY(-1px);
}

.page-item.disabled .page-link {
    background: transparent;
    color: #cbd5e1;
    pointer-events: none;
}