.navbar-brand img {
    height: 40px;
}

.hero-section {
    background: url('../assets/img/shop-banner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    border-radius: 8px;
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
    position: relative;
    z-index: 1;
}

.product-card {
    transition: transform 0.2s ease-in-out;
    height: 100%;
    /* Ensure cards are same height */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    height: 200px;
    /* Fixed height for product images */
    object-fit: cover;
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-product-img {
    height: 120px;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
}

.modal-header-fibercity {
    background-color: #FF0000;
    color: white;
}

.modal-header-fibercity .btn-close {
    filter: invert(1);
    /* Makes the close button white */
}

.quantity-control .btn {
    width: 38px;
    /* Fixed width for quantity buttons */
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    -moz-appearance: textfield;
    /* Firefox hide arrows */
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    /* Chrome, Safari, Edge hide arrows */
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.brand-badge {
    background-color: #f1f1f1;
    color: #333;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8em;
}

.category-badge {
    background-color: #FF0000;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8em;
}