/* 1. GLOBAL RESPONSIVE RESET */
* { box-sizing: border-box; }

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

/* 2. IMAGES & CONTAINERS */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* 3. CARD STYLES */
.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 15px;
}

/* 4. BUTTONS & UI */
.btn { border-radius: 10px; }

.btn-warning {
    background-color: #ff9900;
    border: none;
    font-weight: 600;
    color: #000;
}

.btn-warning:hover { background-color: #e68a00; }

.btn-success { font-weight: 600; }

.product-title {
    font-size: 15px;
    font-weight: 600;
    min-height: 40px;
}

.price {
    font-size: 18px;
    font-weight: bold;
}

/* 5. NAVBAR & FOOTER */
.navbar { background-color: #131921 !important; }
.navbar a { color: #fff !important; }

footer {
    background: #131921;
    color: #fff;
    padding: 20px 0;
}

/* 6. TYPOGRAPHY & MISC */
h3, h4, h5 { color: #222; }
.table th { font-weight: 600; }