@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f172a;
    color: #e2e8f0;
    font-family: "Montserrat", sans-serif;
}

.navbar-brand span {
    color: #22d3ee;
}

.card {
    background: #111827;
    border-color: #1f2937;
}

.card-title {
    color: #e5e7eb;
}

.card-text {
    color: #cbd5e1;
}

.form-label {
    color: #cbd5e1;
}

.badge {
    background: #0ea5e9;
}


.btn-outline-light {
    border-color: #475569;
    color: #cbd5e1;
}

.btn-outline-light:hover {
    background: #1f2937;
    color: #e2e8f0;
}

.product-img {
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #1f2937;
}

.sticky-controls {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #1f2937;
}

.form-control,
.form-select {
    background: #0b1220;
    color: #e2e8f0;
    border: 1px solid #334155;
}

.form-control::placeholder {
    color: #64748b;
}

.no-results {
    color: #94a3b8;
    border: 1px dashed #334155;
    background: #0b1220;
}

.price {
    font-weight: 700;
    color: #22c55e;
}