/*
Theme Name: Twenty Twenty-Five Archive Child
Theme URI: https://schmuckarchiv.web-fischer.de/
Description: Ein Child-Theme für Twenty Twenty-Five
Author: Ihr Name
Author URI: https://web-fischer.de/
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-archiv
*/

/* Hier kommen Ihre CSS-Anpassungen */

/* Fügen Sie dieses CSS in WordPress unter Design > Customizer > Zusätzliches CSS ein */

/* Detail-Block Styles */
.wp-block-schmuck-blocks-detail {
    margin: 2rem 0;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .wp-block-schmuck-blocks-detail .schmuck-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.wp-block-schmuck-blocks-detail .schmuck-gallery-main {
    margin-bottom: 1rem;
}

.wp-block-schmuck-blocks-detail .schmuck-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

.wp-block-schmuck-blocks-detail .schmuck-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.wp-block-schmuck-blocks-detail .schmuck-gallery-thumb {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.wp-block-schmuck-blocks-detail .schmuck-gallery-thumb.active,
.wp-block-schmuck-blocks-detail .schmuck-gallery-thumb:hover {
    opacity: 1;
    border-color: #333;
}

.wp-block-schmuck-blocks-detail .schmuck-gallery-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-info > div {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-info > div:last-child {
    border-bottom: none;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-info span {
    display: inline-block;
    min-width: 120px;
    color: #666;
    font-weight: 500;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-info strong {
    color: #333;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-price strong {
    font-size: 1.5rem;
    color: #5cb85c;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-availability .in-stock {
    color: #25d17f;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-availability .reservable {
    color: #f0ad4e;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-shop-button {
    margin-top: 2rem;
    border-bottom: none;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-shop-button .button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-shop-button .button:hover {
    background-color: #555;
    color: #fff;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-description {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.wp-block-schmuck-blocks-detail .schmuck-detail-description p {
    line-height: 1.6;
    color: #555;
}

