.cbs-strains {
    --cbs-deep: #103c2b;
    --cbs-green: #2f7d4b;
    --cbs-green-strong: #1f6840;
    --cbs-accent: #72a943;
    --cbs-sage: #edf5ef;
    --cbs-sage-strong: #dceade;
    --cbs-gold: #b89a4b;
    --cbs-moon: #66746c;
    --cbs-soft: #f7faf7;
    --cbs-line: #dce9df;
    --cbs-text: #223128;
    width: 100%;
    color: var(--cbs-text);
    font-family: inherit;
}

.cbs-strains-shell {
    position: relative;
    padding: 26px;
    border: 1px solid #e2ece4;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(114, 169, 67, .07), transparent 24%),
        linear-gradient(180deg, #fbfdfb 0%, #ffffff 100%);
    box-shadow: 0 18px 50px rgba(21, 60, 42, .08);
}

.cbs-strains-header {
    position: relative;
    margin: 0 0 20px;
    padding-left: 15px;
}

.cbs-strains-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 1px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cbs-gold), var(--cbs-accent));
}

.cbs-strains-kicker {
    display: inline-block;
    margin-bottom: 6px;
    color: #69756d;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 750;
}

.cbs-strains-title {
    margin: 0;
    color: var(--cbs-deep);
    font-size: clamp(28px, 4.6vw, 40px);
    line-height: 1.02;
    letter-spacing: -.02em;
    font-weight: 700;
    font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", Georgia, serif;
}

.cbs-strains-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.cbs-strain-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--cbs-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(21, 60, 42, .055);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cbs-strain-card[open] {
    border-color: #c8dccd;
    box-shadow: 0 14px 32px rgba(21, 60, 42, .10);
}

.cbs-strain-summary {
    position: relative;
    display: block;
    min-height: 164px;
    padding: 18px 18px 14px;
    cursor: pointer;
    list-style: none;
    outline: none;
    background:
        linear-gradient(180deg, rgba(244, 248, 244, .72) 0%, rgba(255,255,255,0) 58%),
        #fff;
}

.cbs-strain-summary::-webkit-details-marker {
    display: none;
}

.cbs-strain-summary::marker {
    display: none;
    content: "";
}

.cbs-strain-summary:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(47, 125, 75, .20);
    border-radius: 16px;
}

.cbs-strain-name {
    display: block;
    min-height: 48px;
    padding-right: 14px;
    color: var(--cbs-deep);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
    overflow-wrap: anywhere;
    text-shadow: 0 1px 0 rgba(255,255,255,.75);
}

.cbs-strain-name::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(196, 118, 72, .95), rgba(214, 146, 90, .95));
    opacity: .96;
}

.cbs-strain-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
}

.cbs-stat {
    min-width: 0;
    padding: 8px 7px;
    border: 1px solid #e1eae3;
    border-radius: 10px;
    background: #f8fbf8;
    text-align: center;
}

.cbs-stat--thc {
    background: linear-gradient(135deg, rgba(47, 125, 75, .10), rgba(114, 169, 67, .07));
    border-color: rgba(47, 125, 75, .18);
}

.cbs-stat-label {
    display: block;
    margin-bottom: 3px;
    color: #6b786f;
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

.cbs-stat:nth-child(2) .cbs-stat-label span {
    color: var(--cbs-gold);
}

.cbs-stat:nth-child(3) .cbs-stat-label span {
    color: var(--cbs-moon);
}

.cbs-stat strong,
.cbs-stat--thc strong {
    display: block;
    min-width: 0;
    color: var(--cbs-green-strong);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.cbs-expand-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
    padding: 9px 11px;
    border: 1px solid #d2e1d5;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(198, 118, 72, .10), rgba(214, 146, 90, .07));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.cbs-expand-copy {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.cbs-expand-icon {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 999px;
    background: rgba(198, 118, 72, .10);
    color: #a15d33;
    border: 1px solid rgba(198, 118, 72, .20);
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.cbs-expand-label {
    color: #486050;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.cbs-expand-label--open {
    display: none;
}

.cbs-chevron {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    margin-right: 3px;
    border-right: 2px solid #5d7565;
    border-bottom: 2px solid #5d7565;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    transition: transform .2s ease;
}

.cbs-strain-card[open] .cbs-expand-hint {
    background: linear-gradient(135deg, rgba(198, 118, 72, .14), rgba(214, 146, 90, .10));
    border-color: rgba(198, 118, 72, .24);
    box-shadow: inset 3px 0 0 rgba(198, 118, 72, .52);
}

.cbs-strain-card[open] .cbs-expand-icon {
    transform: rotate(45deg);
    background: rgba(198, 118, 72, .88);
    color: #fff;
    border-color: rgba(198, 118, 72, .88);
}

.cbs-strain-card[open] .cbs-expand-label--closed {
    display: none;
}

.cbs-strain-card[open] .cbs-expand-label--open {
    display: inline;
}

.cbs-strain-card[open] .cbs-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.cbs-strain-detail {
    padding: 15px 18px 18px;
    border-top: 2px solid rgba(198, 118, 72, .24);
    background: linear-gradient(180deg, rgba(198, 118, 72, .06) 0%, #ffffff 100%);
}

.cbs-detail-label {
    display: block;
    margin-bottom: 7px;
    color: var(--cbs-green-strong);
    font-size: 10px;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
}

.cbs-genetics {
    color: #34443a;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

@media (hover: hover) {
    .cbs-strain-card:not([open]):hover {
        border-color: #c9dccd;
        box-shadow: 0 13px 30px rgba(21, 60, 42, .085);
        transform: translateY(-2px);
    }

    .cbs-strain-card:not([open]):hover .cbs-expand-hint {
        border-color: rgba(198, 118, 72, .22);
        background: linear-gradient(135deg, rgba(198, 118, 72, .11), rgba(214, 146, 90, .08));
        box-shadow: inset 3px 0 0 rgba(198, 118, 72, .42);
    }
}

@media (max-width: 980px) {
    .cbs-strains-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .cbs-strains-shell {
        padding: 17px;
        border-radius: 18px;
    }

    .cbs-strains-header {
        margin-bottom: 15px;
    }

    .cbs-strains-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .cbs-strain-summary {
        min-height: 0;
        padding: 16px;
    }

    .cbs-strain-name {
        min-height: 0;
        font-size: 21px;
    }

    .cbs-strain-stats {
        margin-top: 13px;
    }
}
