/**
 * Fragrance Guide Styling - Compact Accordion Version
 * Styling för doftguiden på produktsidor
 */

/* Accordion Wrapper */
.aroma-fragrance-guide-accordion {
    margin: 25px 0;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

/* Toggle Button */
.fragrance-guide-toggle {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'sunblock_probold', sans-serif;
    text-transform: uppercase;
}

.fragrance-guide-toggle:hover {
    background: #f9f9f9;
}

.fragrance-guide-toggle.active {
    background: #f5f5f5;
    border-bottom: 1px solid #ebebeb;
}

.info-icon {
    color: #000;
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

.toggle-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    flex-grow: 1;
}

.toggle-icon {
    color: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Content Area */
.fragrance-guide-content {
    background: #fafafa;
    max-height: 500px;
    overflow-y: auto;
    border-top: 1px solid #ebebeb;
}

.fragrance-list {
    padding: 15px;
}

/* Compact Fragrance Item */
.fragrance-item-compact {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    transition: all 0.2s ease;
}

.fragrance-item-compact:hover {
    border-color: #d9f89f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fragrance-item-compact:last-child {
    margin-bottom: 0;
}

/* Header */
.fragrance-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.fragrance-name {
    font-family: 'sunblock_probold', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0;
    color: #000;
}

.intensity-badge {
    background: #d9f89f;
    color: #000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.intensity-label {
    font-weight: 500;
    opacity: 0.8;
}

/* Description */
.fragrance-desc-compact {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 12px 0;
}

/* Notes Compact */
.notes-compact {
    margin-bottom: 12px;
}

.note-row {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.4;
}

.note-row:last-child {
    margin-bottom: 0;
}

.note-row strong {
    color: #000;
    font-weight: 600;
    min-width: 60px;
    display: inline-block;
}

/* Characteristics Compact */
.chars-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.char-tag-compact {
    display: inline-block;
    padding: 4px 10px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Scrollbar Styling */
.fragrance-guide-content::-webkit-scrollbar {
    width: 8px;
}

.fragrance-guide-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.fragrance-guide-content::-webkit-scrollbar-thumb {
    background: #d9f89f;
    border-radius: 4px;
}

.fragrance-guide-content::-webkit-scrollbar-thumb:hover {
    background: #a8e063;
}

/* Responsiv design */
@media (max-width: 768px) {
    .fragrance-guide-toggle {
        padding: 15px;
    }

    .toggle-text {
        font-size: 1rem;
    }

    .fragrance-guide-content {
        max-height: 400px;
    }

    .fragrance-list {
        padding: 10px;
    }

    .fragrance-item-compact {
        padding: 12px;
    }

    .fragrance-name {
        font-size: 0.95rem;
    }

    .fragrance-desc-compact {
        font-size: 0.85rem;
    }

    .note-row {
        font-size: 0.8rem;
    }

    .char-tag-compact {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

