/* ================================
   PRODUCT LIST – INSTANT CARDS
================================ */

.product-card {
  height: 100%;
  background: linear-gradient(180deg, #0f1b2d, #0b1422);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.7);
}

/* RESİM ALANI */
.product-image {
  height: 220px;
  background: radial-gradient(circle at top, #111e30, #0a1322);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* İÇERİK */
.product-body {
  padding: 22px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-body h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.product-body p {
  color: #226dd0;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.product-body .btn {
  margin-top: 16px;
  border-radius: 30px;
}




/* ================================
   PRODUCT DETAIL – INSTANT STYLE
================================ */

.product-detail {
  background: radial-gradient(circle at top, #0d1624, #050b14);
  padding: 100px 0;
}

.product-image-wrapper {
  background: linear-gradient(180deg, #0f1b2d, #0b1422);
  border-radius: 22px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.product-image-wrapper img {
  max-height: 360px;
  object-fit: contain;
}

.product-detail-content {
  color: #fff;
}

.product-badge {
  display: inline-block;
  background: rgba(255,165,0,0.15);
  color: #ffa500;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

.product-detail-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

.product-description {
  color: #b7c0cc;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.product-features li {
  margin-bottom: 10px;
  color: #d0d6df;
}

.product-features i {
  color: #ffa500;
  margin-right: 8px;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product-actions .btn-primary {
  background: linear-gradient(135deg, #ffa500, #ff7a00);
  border: none;
  border-radius: 40px;
  padding: 14px 36px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255,165,0,0.35);
}

.product-actions .btn-outline-primary {
  border-radius: 40px;
  padding: 14px 30px;
}

.card{
    background-color:#0a1f44 !important;
    color:white;
}
.card{
    height:100%;
    display:flex;
    flex-direction:column;
}
.card-body{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.featured-product-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

/* SADECE Öne Çıkan Ürünler */

#featured-products .col-lg-3 {
    display: flex;
}

#featured-products .featured-product-card {
    background: #000;
    border-radius: 20px;
    padding: 20px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 480px;
}

#featured-products .image-wrapper {
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

#featured-products .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#featured-products .product-info h5 {
    margin-top: 15px;
    min-height: 50px;
}

#featured-products .row {
    align-items: stretch;
}







