/* General */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

/* Hero banner */
.p-5.bg-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border-radius: 12px !important;
}

/* Buttons */
.btn-dark {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
}

    .btn-dark:hover {
        background-color: #16213e;
        border-color: #16213e;
    }

/* Product card title */
.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Badge */
.badge {
    font-size: 0.75rem;
}

/* List group active */
.list-group-item.active {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
}

/* Footer */
footer {
    background-color: #1a1a2e !important;
}

/* Alert */
.alert {
    border-radius: 8px;
}

/* Pagination */
.page-item.active .page-link {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
}

.page-link {
    color: #1a1a2e;
}

/* Form controls */
.form-control:focus,
.form-select:focus {
    border-color: #1a1a2e;
    box-shadow: 0 0 0 0.2rem rgba(26,26,46,0.15);
}

/* Checkout card */
#card-element {
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
}

/* Order status badges */
.badge.bg-warning {
    color: #000;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .card-footer {
        flex-direction: column;
    }

        .card-footer .btn {
            width: 100% !important;
        }
}
