html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.object-fit-cover {
    object-fit: cover;
}

/* custom gold button */
.btn-gold {
    background-color: #D99E00;
    border-color: #D99E00;
    color: #fff;
}

    /* hover/focus state */
    .btn-gold:hover,
    .btn-gold:focus {
        background-color: #C88D00;
        border-color: #C88D00;
    }


html, body {
    background-color: #000;
    color: #fff;
}


/* Products grid: limit card width and force images to fill */
.product-card {
    max-width: 250px; /* or whatever width you prefer */
    margin: auto; /* center the card in its column */
}

    .product-card .card-img-top {
        height: 180px; /* image display height */
        object-fit: cover; /* crop-to-fill */
    }
