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;
}
.card {
    border-radius: 10px;
}

    .card img {
        object-fit: cover;
    }
/* HEADER */
header {
    background: #1f2937;
}

/* logo */
.navbar-brand {
    font-size: 22px;
    font-weight: 600;
}

/* menu */
.navbar-nav .nav-link {
    font-size: 15px;
    margin-right: 10px;
    transition: 0.2s;
}

    /* hover */
    .navbar-nav .nav-link:hover {
        color: #ffc107 !important;
    }

/* dropdown */
.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* search */
form input {
    width: 220px;
    border-radius: 20px;
}

form button {
    border-radius: 20px;
}

/* cart icon */
.fa-shopping-cart {
    font-size: 20px;
}

/* user */
.navbar span {
    font-size: 14px;
}
/* user dropdown */

.navbar .dropdown-toggle {
    color: white;
}

    .navbar .dropdown-toggle:hover {
        color: #ffc107;
    }

.dropdown-menu {
    border-radius: 10px;
    padding: 10px;
    min-width: 180px;
}

.dropdown-item {
    border-radius: 6px;
}

    .dropdown-item:hover {
        background: #f3f4f6;
    }
.pagination a {
    padding: 8px 14px;
    border: 1px solid #007bff;
    margin: 4px;
    text-decoration: none;
    color: #007bff;
}

    .pagination a.active {
        background: #007bff;
        color: white;
    }
.pagination {
    text-align: center;
    margin-top: 20px;
}

.page-btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 3px;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    text-decoration: none;
}

    .page-btn:hover {
        background: #0d6efd;
        color: white;
    }

    .page-btn.active {
        background: #0d6efd;
        color: white;
    }