/* Grundfarben */
:root {
    --brown: #3b2f2f;
    --brown-dark: #2a2222;
    --gold: #d4af37;
    --creme: #f8f5f0;
    --discount-red: #c62828;
    --red: #c62828;
}

/* Hintergrund */
body.bg-creme {
    background-color: var(--creme) !important;
}

/* Header & Footer */
.bg-brown {
    background-color: var(--brown) !important;
}

header, footer {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Navigation */
header a {
    font-weight: 500;
    transition: opacity .2s;
}
header a:hover {
    opacity: .7;
}

.category-description {
    font-size: 0.95rem;
    color: #6c6c6c;
    margin-bottom: 6px;
}

.category-description-long {
    font-size: 0.95rem;
    color: #6c6c6c;
}
.category-link {
    color: var(--brown);
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.category-link:hover {
    opacity: 0.7;
}



/* Cards */
.card {
    border: none;
    border-radius: 14px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform .2s, box-shadow .2s;
}

.card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.card-title-fixed {
    min-height: 3.6em; /* Platz für 3 Zeilen */
    line-height: 1.2em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 500;

}

.card-gold-left {
    border-left: 4px solid var(--gold);
    border-radius: 14px;
}

/* Produktbild */
.product-img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Rabatt-Badge */
.discount-badge {
    background-color: var(--discount-red);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Buttons */
.btn-row {
    display: flex;
    gap: 12px;
}

.btn-row .btn-equal {
    flex: 1;                /* beide gleich breit */
    text-align: center;     /* Text mittig */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-brown {
    background-color: var(--brown);
    color: white;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 500;
    transition: background .2s;
}
.btn-brown:hover {
    background-color: var(--gold);
    color: var(--brown) !important;
}

.btn-red {
    background-color: var(--red); 
    color: white !important;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    transition: background .2s, color .2s;
    text-decoration: none !important;
    display: inline-block;
}

.btn-red:hover {
    background-color: var(--gold);
    color: var(--brown) !important;
}


/* Preis */
.price-current {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2e7d32;
}

.price-old {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Filter-Box */
.filter-box {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold);
}

/* Details */
.details-textbox {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Goldener Zierstreifen links */
.details-textbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--gold);
    border-radius: 12px 0 0 12px;
}

.details-card-wrapper .card {
    max-width: 100%;
    margin: 0 auto;
}

.details-card-wrapper .card img {
    max-height: 360px;
    object-fit: contain;
}


/* Überschriften */
h1, h2, h3, h4 {
    color: var(--brown);
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}
