/* Operox — order.php özel stiller (koyu tema) */

.lt-service-box-btn {
    background: rgba(17, 24, 39, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.lt-service-box-btn:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.lt-service-box-btn.active {
    background: rgba(37, 99, 235, 0.18);
    border-color: #3b82f6;
    border-width: 3px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.lt-service-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #60a5fa;
}

.lt-service-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: #f3f4f6;
    margin-bottom: 4px;
}

.lt-service-desc {
    font-size: 0.85rem;
    color: #9ca3af;
}

.lt-sticky-categories-wrapper {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(11, 15, 25, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: calc(-50vw + 50%);
    width: 100vw;
    backdrop-filter: blur(12px);
}

#lt-category-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#lt-category-nav::-webkit-scrollbar {
    display: none;
}

.lt-cat-pill {
    padding: 12px 18px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6b7280;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.lt-cat-pill:hover {
    color: #d1d5db;
}

.lt-cat-pill.active {
    color: #60a5fa;
    border-bottom-color: #3b82f6;
}

.lt-products-list-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.lt-list-card {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.lt-list-card:hover {
    background: rgba(255, 255, 255, 0.04);
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 8px;
}

.lt-list-card h4,
.lt-list-card .lv-prod-name {
    color: #f3f4f6 !important;
}

.lt-list-card .lv-prod-desc {
    color: #9ca3af !important;
}

.lt-list-card .lv-prod-price {
    color: #60a5fa !important;
}

.lt-list-add-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    padding: 0;
}

.lt-cat-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #f3f4f6 !important;
    padding: 16px 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lt-cat-badge {
    font-size: 0.85rem;
    color: #9ca3af !important;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06) !important;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

@media (min-width: 768px) {
    .lt-products-list-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lt-list-card {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 16px;
        background: rgba(17, 24, 39, 0.75);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 1024px) {
    .lt-products-list-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
