/* Mobile First: Wrapper (alles untereinander) */
.cph-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.cph-image-col, .cph-details-col {
    width: 100%;
}

/* Bild-Spalte: Rahmen wie in deinem Layout */
.cph-image-col {
    border: 1px solid #4a5c40; /* Dünner grüner Rahmen */
    padding: 3rem; /* Etwas Luft für den Freisteller-Look */
    display: flex;
    align-items: center;
    justify-content: center;
}

#cph-main-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Typografie & Abstände (Basic) */
.cph-title {
    font-size: 2rem; /* Hier kannst du später deine Graffiti-Font hinterlegen */
    margin-bottom: 1rem;
}

.cph-price, .cph-description {
    margin-bottom: 1.5rem;
}

.cph-extra-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cph-link {
    color: #333;
    text-decoration: none;
}

.cph-link:hover {
    text-decoration: underline;
}

/* Desktop: Nebeneinander (50/50 Split) */
@media (min-width: 768px) {
    .cph-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .cph-image-col {
        flex: 1;
    }
    
    .cph-details-col {
        flex: 1;
        padding-left: 3vw;
    }
}