/**
 * Scent Profile CSS
 */

/* Scent Profile Wrapper */
.iscents-scent-wrapper {
    margin: 20px 0 30px;
}

.iscents-scent-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #24262e;
}

.iscents-scent-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Grid Layout */
.iscents-scent-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Row Layout */
.iscents-scent-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
}

/* Label Column */
.iscents-scent-label {
    width: 30%;
    font-weight: 600;
    color: #24262e;
    padding-right: 15px;
}

/* Value Column */
.iscents-scent-value {
    width: 70%;
    color: #555;
}

/* Note Tags */
.iscents-note-tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 2px 4px 2px 0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .iscents-scent-label,
    .iscents-scent-value {
        width: 100%;
    }
    .iscents-scent-label {
        margin-bottom: 5px;
    }
}