/* =====================================================
   Aurora-Garten – Product Detail
   (identisch zu Seed Detail)
===================================================== */

/* ================================
   Detail-Karte
================================ */

.detail-card {
    position: relative;
    display: flex;
    gap: 60px;
    background: #FAFBF8;
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 900px;
}

/* ================================
   Bildbereich
================================ */

.detail-image {
    flex: 0 0 400px;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* ================================
   Inhaltsbereich
================================ */

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.detail-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ================================
   Preis
================================ */

.detail-price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
}

.price-new {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1em;
}

.price-note {
    margin-top: 6px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* ================================
   Lagerstatus
================================ */

.detail-stock {
    margin-bottom: 25px;
    font-weight: 500;
}

/* ================================
   Beschreibung
================================ */

.detail-description {
    font-size: 16px;
    line-height: 1.7;
}

/* ================================
   SKU
================================ */

.detail-sku {
    font-size: 13px;
    color: #777;
    margin-top: -8px;
    margin-bottom: 12px;
}

/* ================================
   Rabatt-Badge
================================ */

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #d32f2f;
    color: white;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

/* ================================
   Ribbon (optional – falls du es nutzt)
================================ */

.ribbon {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 150px;
    height: 30px;
    transform: rotate(-45deg);
}

.ribbon-out {
    background: #d32f2f;
}

.ribbon-available {
    background: #2e7d32;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    background: #f3f4f6;
}