﻿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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.product-image {
    height: 180px;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 This is the key */
    display: block;
}


.floating-cart-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1050;
    background-color: #0d6efd;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

    .floating-cart-btn:hover {
        background-color: #0b5ed7;
        color: white;
    }

.cart-badge {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-left: 8px;
    min-width: 22px;
    text-align: center;
}


