.aromas-stamp-card {
    max-width: 600px;
}

.aromas-stamp-card__title {
    font-size: 1.4em;
    margin-bottom: 1em;
}

/* Belohnungs-Banner */
.aromas-stamp-card__reward-banner {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #b1dfbb;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 1.5em;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.aromas-stamp-card__reward-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ===== Kundenkarte mit Barcode & QR ===== */
.aromas-stamp-card__card-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1.5em;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.aromas-stamp-card__card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 0.95em;
    color: #374151;
}

.aromas-stamp-card__card-icon {
    width: 20px;
    height: 20px;
    color: #b8860b;
}

.aromas-stamp-card__card-body {
    padding: 20px 16px 16px;
}

.aromas-stamp-card__card-codes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.aromas-stamp-card__barcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.aromas-stamp-card__barcode-img {
    height: 50px;
    width: auto;
    max-width: 220px;
}

.aromas-stamp-card__card-number {
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    font-weight: 700;
    color: #374151;
    letter-spacing: 1.5px;
}

.aromas-stamp-card__qr-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aromas-stamp-card__qr-img {
    width: 90px;
    height: 90px;
}

.aromas-stamp-card__card-hint {
    text-align: center;
    font-size: 0.8em;
    color: #9ca3af;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ===== Stempel ===== */
.aromas-stamp-card__stamps-section {
    background: linear-gradient(135deg, #fdfaf3, #fef7e6);
    border: 1px solid #f0e4c8;
    border-radius: 16px;
    padding: 24px 20px 20px;
    margin-bottom: 1.5em;
}

.aromas-stamp-card__stamps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.aromas-stamp-card__stamp {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px dashed #d4c9a8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.aromas-stamp-card__stamp-num {
    font-size: 13px;
    font-weight: 500;
    color: #c4b896;
}

.aromas-stamp-card__stamp--filled {
    background: linear-gradient(145deg, #d4a017, #b8860b);
    border: 2px solid #a07608;
    color: #fff;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.35);
    transform: scale(1.05);
}

.aromas-stamp-card__stamp-icon {
    width: 24px;
    height: 24px;
    stroke: #fff;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.aromas-stamp-card__stamp--next {
    border: 2px dashed #b8860b;
    background: #fef9ed;
    animation: aromas-pulse 2s ease-in-out infinite;
}

.aromas-stamp-card__stamp--reward:not(.aromas-stamp-card__stamp--filled) {
    border: 2px dashed #b8860b;
    background: #fef9ed;
}

.aromas-stamp-card__stamp-gift {
    width: 22px;
    height: 22px;
    stroke: #b8860b;
    opacity: 0.6;
}

.aromas-stamp-card__stamp--filled .aromas-stamp-card__stamp-gift {
    stroke: #fff;
    opacity: 1;
}

@keyframes aromas-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(184, 134, 11, 0); }
}

/* Fortschrittsbalken */
.aromas-stamp-card__progress-bar {
    height: 6px;
    background: #e8dfca;
    border-radius: 3px;
    overflow: hidden;
}

.aromas-stamp-card__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4a017, #b8860b);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Status */
.aromas-stamp-card__status {
    text-align: center;
    margin-bottom: 1.5em;
}

.aromas-stamp-card__progress {
    font-size: 1.1em;
    margin-bottom: 0.25em;
}

.aromas-stamp-card__next {
    color: #666;
    font-size: 0.95em;
}

/* Statistik-Karten */
.aromas-stamp-card__stats {
    display: flex;
    gap: 12px;
    margin-bottom: 2em;
}

.aromas-stamp-card__stat {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.aromas-stamp-card__stat-value {
    display: block;
    font-size: 1.5em;
    font-weight: 700;
    color: #b8860b;
}

.aromas-stamp-card__stat-label {
    display: block;
    font-size: 0.8em;
    color: #666;
    margin-top: 4px;
}

/* Aktivitäten */
.aromas-stamp-card__section-title {
    font-size: 1.1em;
    margin-bottom: 0.75em;
}

.aromas-stamp-card__activities {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.aromas-stamp-card__activity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.aromas-stamp-card__activity:last-child {
    border-bottom: none;
}

.aromas-stamp-card__activity-info {
    display: flex;
    flex-direction: column;
}

.aromas-stamp-card__activity-type {
    font-weight: 600;
    font-size: 0.95em;
}

.aromas-stamp-card__activity-location {
    font-size: 0.8em;
    color: #888;
}

.aromas-stamp-card__activity-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.aromas-stamp-card__activity-stamps {
    font-weight: 700;
    font-size: 1em;
}

.aromas-stamp-card__activity-stamps--positive {
    color: #28a745;
}

.aromas-stamp-card__activity-stamps--negative {
    color: #dc3545;
}

.aromas-stamp-card__activity-date {
    font-size: 0.8em;
    color: #888;
}

/* Kein Kunde / Fehler */
.aromas-stamp-card__empty,
.aromas-stamp-card__error {
    text-align: center;
    padding: 2em;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
}

.aromas-stamp-card__empty p:first-child {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 480px) {
    .aromas-stamp-card__stamps-section {
        padding: 16px 12px 14px;
    }

    .aromas-stamp-card__stamps {
        gap: 8px;
    }

    .aromas-stamp-card__stamp {
        width: 42px;
        height: 42px;
    }

    .aromas-stamp-card__stamp-icon {
        width: 20px;
        height: 20px;
    }

    .aromas-stamp-card__stamp-gift {
        width: 18px;
        height: 18px;
    }

    .aromas-stamp-card__stamp-num {
        font-size: 11px;
    }

    .aromas-stamp-card__stats {
        flex-direction: column;
    }

    .aromas-stamp-card__card-codes {
        flex-direction: column;
        gap: 16px;
    }

    .aromas-stamp-card__qr-img {
        width: 80px;
        height: 80px;
    }
}
