@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600&family=Jost:wght@300;400;500&display=swap');

/* Ana Grid Kapsayıcısı */
.hs-new-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 40px 0;
}

/* Premium Kart Yapısı */
.hs-new-card {
    background: #FDFBF7; /* Herstella soft krem arka planı */
    border-radius: 40px; /* Yukaridaki gorseldeki gibi oval soft koseler */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); /* Cok hafif soft golge */
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.hs-new-card:hover {
    transform: translateY(-5px);
}

/* Kartın Üst Resim Alanı */
.hs-card-media {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.hs-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kart İçerik Alanı */
.hs-card-body {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Bitki Başlığı (Cormorant Garamond Italic) */
.hs-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 500;
    color: #2D3120; /* Herstella Koyu Yesili */
    margin: 0;
    line-height: 1.2;
}

/* Per Capsule / Mg Alanı (#D8A967) */
.hs-card-amount {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D8A967; /* Istedigin altin tonu */
    margin-bottom: 5px;
}

/* Açıklama Metni (Jost) */
.hs-card-desc {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #4A4E3D;
    font-weight: 300;
}

/* Mobil Entegrasyonu */
@media (max-width: 768px) {
    .hs-new-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hs-card-body {
        padding: 25px 20px;
    }
}