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;
}

/*LAYOUT*/
:root {
    --tipeks-blue: #0056b3;
    --tipeks-dark-blue: #003d80;
    --tipeks-light: #f8f9fa;
}

.top-bar {
    background-color: var(--tipeks-blue);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 2px solid black;
}

    .top-bar a {
        text-decoration: none;
        transition: opacity 0.3s;
    }

        .top-bar a:hover {
            opacity: 0.8;
        }

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

.search-group .form-control:focus {
    border-color: var(--tipeks-blue);
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.25);
}

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

footer {
    margin-top: 50px;
}

/* Mobil arama çubuğu için küçük dokunuş */
@@media (max-width: 991px) {
    .navbar-brand img {
        height: 70px !important;
    }
}
/*LAYOUT*/


/*ÜRÜN*/

/* Kart Stilleri */
.card-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d3436;
}
.product-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 12px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Sepete Ekle Butonu */
.btn-add-to-cart {
    background-color: #ff6a00;
    border-color: #ff6a00;
    color: white;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.2s;
}

    .btn-add-to-cart:hover {
        background-color: #e55f00;
        border-color: #e55f00;
        color: white;
        transform: scale(1.02);
    }
.btn-fav {
    width: 36px;
    height: 36px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-fav:hover {
        transform: scale(1.1);
        background-color: #fff1f1 !important;
    }
/* Görsel Konteynırı */
.img-container {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
}


/*ÜRÜN*/