/* Starter kit iHeart landing page sections */

.sk-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 1.5rem;
}

.sk-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1.5px solid currentColor;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.sk-trust-badge .fa {
    font-size: 0.9rem;
}

.sk-trust-badge--natural {
    color: #1aa84f;
}

.sk-trust-badge--safe {
    color: #c9a000;
}

.sk-trust-badge--bio {
    color: #0d8a8a;
}

.sk-trust-badge--ship {
    color: #2563eb;
}

.sk-trust-badge--guarantee {
    color: #fff;
    background-color: #4a4a4a;
    border-color: #4a4a4a;
}

.sk-section {
    margin-bottom: 2.5rem;
}

.sk-section:last-child {
    margin-bottom: 0;
}

.sk-section-title {
    margin-bottom: 0.75rem;
}

.sk-section-lead {
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 52rem;
}

.sk-odor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.sk-odor-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 5.5rem;
    padding: 1rem 0.75rem;
    border: 1px solid rgba(26, 168, 79, 0.45);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.65);
    color: inherit;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.sk-odor-tile:hover {
    border-color: var(--theme-color);
    background-color: #fff;
    color: inherit;
    transform: translateY(-2px);
}

.sk-odor-tile .fa {
    font-size: 1.35rem;
    color: var(--theme-color);
}

.sk-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sk-spec-col {
    border: 1px solid rgba(26, 168, 79, 0.45);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
}

.sk-spec-col-title {
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--theme-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: rgba(245, 255, 249, 0.9);
}

.sk-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    line-height: 1.4;
}

.sk-spec-row:last-child {
    border-bottom: 0;
}

.sk-spec-label {
    font-weight: 700;
    flex-shrink: 0;
}

.sk-spec-value {
    text-align: right;
    color: #444;
}

.sk-spec-note {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--theme-color);
    background-color: rgba(245, 255, 249, 0.9);
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .sk-odor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .sk-odor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sk-spec-grid {
        grid-template-columns: 1fr;
    }

    .sk-spec-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .sk-spec-value {
        text-align: left;
    }
}

@media (max-width: 479px) {
    .sk-trust-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.65rem;
    }
}
