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%;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Kart boyutlandırma */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

/* Görsellerin orantılı görünmesi */
.card-img-top {
    width: 100%;
    height: 220px; /* masaüstü için ideal yükseklik */
    object-fit: contain; /* ürün kesilmez */
    padding: 10px;
}

/* Başlık düzeni */
.card-body h5 {
    font-size: 1rem;
    min-height: 40px; /* isimler farklı uzun olsa da hizalı durur */
}

/* Fiyat */
.card-body .text-center {
    font-size: 1rem;
    font-weight: 500;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .card-img-top {
        height: 160px; /* mobilde resim küçülür */
    }

    .card-body h5 {
        font-size: 0.9rem;
        min-height: auto;
    }

    .btn {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}
/*indirim bandı*/
.discount-banner {
    background: linear-gradient(90deg, #ff6f61, #ff9966);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
}

    .discount-banner strong {
        font-size: 1.1rem;
    }

@media (max-width: 768px) {
    .discount-banner {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}
@media (max-width: 768px) {
    .top-actions {
        display: none !important;
    }
}
/*albihediye logosu*/
/* Logo stil ayarları */
.logo-custom {
    font-weight: 700; /* Kalın yazı */
    color: #FFB199 !important; /* Bootstrap mavi (primary) */
    font-size: 1.5rem; /* Daha büyük istersen artırabilirsin */
    text-decoration: none; /* Alt çizgi olmasın */
}

    /* Hover efekti isteğe bağlı */
    .logo-custom:hover {
        color: #0b5ed7;
    }


    /*font — storefront.css overrides headings */
h1, h3, .card-body h5 {
    font-weight: 700;
}

/* -------------------- */
/* İletişim Sayfası CSS */
/* -------------------- */
#contact-page .text-theme {
    color: #FF7F50 !important;
}

#contact-page .btn-theme {
    background-color: #FF7F50;
    border: none;
    color: #fff;
}

    #contact-page .btn-theme:hover {
        background-color: #e66f45;
        color: #fff;
    }

/* Input focus coral kenarlık */
#contact-page input:focus,
#contact-page textarea:focus {
    border-color: #FF7F50 !important;
    box-shadow: 0 0 5px rgba(255, 127, 80, 0.5) !important;
}

