/* ============================================================
   STRAINS PAGE - Specific Styles
   Reusable for: indica-strains.html, sativa-strains.html, hybrid-strains.html
   ============================================================ */

/* ============================================================
   BREADCRUMB
   ============================================================ */
.str-breadcrumb {
    background: var(--forest-authority);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
}

/* ============================================================
   SHARED BUTTON STYLES
   ============================================================ */
.str-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    padding: 11px 22px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.str-btn i {
    font-size: 17px;
}

.str-btn-primary {
    background: var(--insight-highlight);
    color: var(--forest-authority);
    border-color: var(--insight-highlight);
}

.str-btn-primary:hover {
    background: #c49a30;
    color: var(--forest-authority);
    border-color: #c49a30;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 168, 67, 0.35);
}

.str-btn-outline-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}

.str-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.str-btn-text-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-color: transparent;
}

.str-btn-text-light:hover {
    color: var(--insight-highlight);
}

.str-btn-lg {
    font-size: 15px;
    padding: 13px 26px;
}

/* ============================================================
   HERO
   ============================================================ */
.str-hero {
    background: var(--forest-authority);
    padding: 64px 24px 80px;
    position: relative;
    overflow: hidden;
}

.str-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(212, 168, 67, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.str-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.3), transparent);
}

.str-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Hero Eyebrow */
.str-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 100px;
    padding: 5px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--insight-highlight);
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--insight-highlight);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Hero H1 */
.str-hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 46px);
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.str-hero-intro {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 14px;
}

/* Hero Meta */
.str-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.str-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.str-meta-item i {
    font-size: 14px;
    color: var(--botanical-calm);
}

/* Quick Facts Card */
.str-hero-card-wrap {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.str-quick-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.str-quick-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    background: rgba(0, 0, 0, 0.15);
}

.str-quick-card-header i {
    font-size: 18px;
    color: var(--insight-highlight);
}

.str-quick-facts {
    padding: 8px 0;
}

.str-quick-fact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 12px;
}

.str-quick-fact:last-child {
    border-bottom: none;
}

.str-quick-label {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.str-quick-value {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
}

/* ============================================================
   TABLE OF CONTENTS BAR
   ============================================================ */
.str-toc-bar {
    background: var(--neutral-card);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 12px rgba(11, 59, 47, 0.06);
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
}

.str-toc-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.str-toc-inner::-webkit-scrollbar {
    display: none;
}

.str-toc-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--subtle-ui);
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 12px;
    border-right: 1px solid var(--card-border);
}

.str-toc-label i {
    font-size: 14px;
    color: var(--botanical-calm);
}

.str-toc-links {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

.str-toc-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--subtle-ui);
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
    flex-shrink: 0;
}

.str-toc-links a:hover,
.str-toc-links a.active {
    color: var(--forest-authority);
    background: rgba(11, 59, 47, 0.06);
}

/* ============================================================
   ARTICLE BODY
   ============================================================ */
.str-article {
    background: var(--neutral-card);
    padding: 0;
}

.str-article-inner {
    padding: 64px 24px;
}

/* Content Section */
.str-content-section {
    margin-bottom: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--card-border);
}

.str-content-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Section H2 */
.str-content-section h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.8vw, 32px);
    color: var(--forest-authority);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--card-border);
}

.str-content-section h2 i {
    font-size: 26px;
    color: var(--botanical-calm);
    flex-shrink: 0;
}

/* Section H3 */
.str-content-section h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--readable-ink);
    letter-spacing: -0.01em;
    margin: 28px 0 12px;
    line-height: 1.3;
}

/* Body text */
.str-content-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--subtle-ui);
    margin-bottom: 18px;
}

.str-content-section p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.str-image-placeholder {
    margin: 28px 0;
    border-radius: 8px;
    overflow: hidden;
}

.str-image-frame {
    background: linear-gradient(135deg, rgba(11, 59, 47, 0.04) 0%, rgba(107, 142, 123, 0.08) 100%);
    border: 2px dashed var(--card-border);
    border-radius: 8px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    min-height: 200px;
    transition: border-color var(--transition), background var(--transition);
}

.str-image-frame:hover {
    border-color: var(--botanical-calm);
    background: rgba(107, 142, 123, 0.06);
}

.str-image-frame i {
    font-size: 36px;
    color: var(--botanical-calm);
    opacity: 0.5;
}

.str-image-frame span {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: var(--subtle-ui);
    opacity: 0.7;
    max-width: 400px;
    line-height: 1.5;
}

/* When actual image is placed inside */
.str-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* ============================================================
   FEATURE GRID (Botany section)
   ============================================================ */
.str-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-feature-card {
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 59, 47, 0.08);
}

.str-feature-icon {
    font-size: 24px;
    color: var(--botanical-calm);
    margin-bottom: 10px;
}

.str-feature-card h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    margin-bottom: 8px;
}

.str-feature-card p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   TERPENE GRID
   ============================================================ */
.str-terpene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-terpene-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-terpene-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(11, 59, 47, 0.12);
}

.str-terpene-header {
    padding: 18px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.str-terpene-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.01em;
}

.str-terpene-badge {
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    border-radius: 100px;
    align-self: flex-start;
}

.str-terpene-body {
    padding: 14px 18px 18px;
    background: var(--neutral-card);
}

.str-terpene-aroma {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    color: var(--botanical-calm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.str-terpene-aroma i {
    font-size: 13px;
}

.str-terpene-body p {
    font-size: 12.5px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   CALLOUTS
   ============================================================ */
.str-callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-radius: var(--card-radius);
    padding: 16px 20px;
    margin: 20px 0;
}

.str-callout-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.str-callout-copy {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.str-callout-copy strong {
    font-weight: 700;
}

.str-callout-info {
    background: rgba(107, 142, 123, 0.08);
    border: 1px solid rgba(107, 142, 123, 0.2);
}

.str-callout-info .str-callout-icon {
    color: var(--botanical-calm);
}

.str-callout-info .str-callout-copy {
    color: var(--readable-ink);
}

.str-callout-warning {
    background: rgba(133, 100, 4, 0.07);
    border: 1px solid rgba(133, 100, 4, 0.18);
}

.str-callout-warning .str-callout-icon {
    color: #856404;
}

.str-callout-warning .str-callout-copy {
    color: var(--readable-ink);
}

/* ============================================================
   DATA TABLE
   ============================================================ */
.str-table-wrap {
    margin: 24px 0;
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    overflow-x: auto;
}

.str-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    min-width: 560px;
}

.str-data-table thead {
    background: var(--forest-authority);
}

.str-data-table thead th {
    padding: 13px 18px;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.str-data-table tbody tr {
    border-bottom: 1px solid var(--card-border);
    transition: background var(--transition);
}

.str-data-table tbody tr:last-child {
    border-bottom: none;
}

.str-data-table tbody tr:nth-child(even) {
    background: rgba(249, 249, 246, 0.6);
}

.str-data-table tbody tr:hover {
    background: rgba(107, 142, 123, 0.06);
}

.str-data-table tbody td {
    padding: 13px 18px;
    color: var(--subtle-ui);
    line-height: 1.5;
    vertical-align: middle;
}

.str-data-table tbody td strong {
    color: var(--readable-ink);
    font-weight: 600;
}

/* Comparison table - first column bold label */
.str-comparison-table tbody td:first-child strong {
    color: var(--forest-authority);
}

/* ============================================================
   STRAIN SHOWCASE (Strongest section)
   ============================================================ */
.str-strain-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-showcase-card {
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-top: 4px solid var(--insight-highlight);
    border-radius: var(--card-radius);
    padding: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11, 59, 47, 0.1);
}

.str-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.str-showcase-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--readable-ink);
}

.str-showcase-thc {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--forest-authority);
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.str-showcase-card p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EXPERIENCE TIMELINE (Body High section)
   ============================================================ */
.str-experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0;
    position: relative;
}

.str-experience-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--insight-highlight), var(--botanical-calm));
}

.str-exp-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px 0;
    position: relative;
}

.str-exp-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--forest-authority);
    color: var(--insight-highlight);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 3px solid var(--neutral-card);
}

.str-exp-copy {
    padding-top: 8px;
    flex: 1;
}

.str-exp-copy h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    margin-bottom: 5px;
}

.str-exp-copy p {
    font-size: 13.5px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   BENEFIT GRID (Medical section)
   ============================================================ */
.str-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-benefit-card {
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 59, 47, 0.08);
}

.str-benefit-icon {
    font-size: 26px;
    color: var(--botanical-calm);
    margin-bottom: 12px;
}

.str-benefit-card h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    margin-bottom: 8px;
}

.str-benefit-card p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   TIP BOX (Growing section)
   ============================================================ */
.str-tip-box {
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 20px 22px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.str-tip-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--subtle-ui);
    line-height: 1.65;
}

.str-tip-item i {
    font-size: 20px;
    color: var(--botanical-calm);
    flex-shrink: 0;
    margin-top: 2px;
}

.str-tip-item strong {
    color: var(--readable-ink);
    font-weight: 600;
}

/* ============================================================
   LANDRACE GRID
   ============================================================ */
.str-landrace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-landrace-card {
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-landrace-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 59, 47, 0.08);
}

.str-landrace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
    background: var(--forest-authority);
    flex-wrap: wrap;
}

.str-landrace-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
}

.str-landrace-origin {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    color: var(--insight-highlight);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.str-landrace-origin i {
    font-size: 12px;
}

.str-landrace-card p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.65;
    padding: 14px 18px;
    margin-bottom: 0;
}

/* ============================================================
   TREND CARDS (2026 Trends section)
   ============================================================ */
.str-trend-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-trend-card {
    background: var(--neutral-card);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-trend-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11, 59, 47, 0.1);
}

.str-trend-color {
    height: 8px;
    width: 100%;
}

.str-trend-card h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    padding: 16px 18px 6px;
    margin: 0;
}

.str-trend-card p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.65;
    padding: 0 18px 18px;
    margin-bottom: 0;
}

/* ============================================================
   SHOPPING STEPS
   ============================================================ */
.str-shopping-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.str-shop-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 20px;
}

.str-shop-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest-authority);
    color: var(--insight-highlight);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.str-shop-copy {
    flex: 1;
}

.str-shop-copy h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--readable-ink);
    margin-bottom: 8px;
}

.str-shop-copy p {
    font-size: 13.5px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Smell Guide */
.str-smell-guide {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.str-smell-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: var(--neutral-card);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    gap: 12px;
    flex-wrap: wrap;
}

.str-smell-type {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--readable-ink);
    flex-shrink: 0;
}

.str-smell-result {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: var(--botanical-calm);
    font-weight: 500;
}

/* ============================================================
   SAFETY GRID
   ============================================================ */
.str-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-safety-card {
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-safety-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 59, 47, 0.08);
}

.str-safety-card > i {
    font-size: 28px;
    color: var(--botanical-calm);
    margin-bottom: 12px;
}

.str-safety-card h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    margin-bottom: 8px;
}

.str-safety-card p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
    text-align: left;
}

/* ============================================================
   CHEMISTRY GRID
   ============================================================ */
.str-chem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-chem-card {
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-chem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 59, 47, 0.08);
}

.str-chem-header {
    background: var(--forest-authority);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.str-chem-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
}

.str-chem-badge {
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--insight-highlight);
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.25);
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.str-chem-body {
    padding: 18px;
    background: var(--data-clarity);
}

.str-chem-body h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--readable-ink);
    margin-bottom: 6px;
    margin-top: 14px;
}

.str-chem-body h4:first-child {
    margin-top: 0;
}

.str-chem-body p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   TOP 10 GRID
   ============================================================ */
.str-top10-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
}

.str-top10-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 16px 20px;
    transition: transform var(--transition), border-color var(--transition);
}

.str-top10-card:hover {
    transform: translateX(4px);
    border-color: rgba(107, 142, 123, 0.3);
}

.str-top10-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--forest-authority);
    color: var(--insight-highlight);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.str-top10-info {
    flex: 1;
}

.str-top10-info strong {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    display: block;
    margin-bottom: 3px;
}

.str-top10-info p {
    font-size: 12.5px;
    color: var(--subtle-ui);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================================
   VERSUS GRID (Soil vs Hydroponics)
   ============================================================ */
.str-versus-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin: 24px 0;
    align-items: stretch;
}

.str-versus-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.str-versus-soil {
    border-top: 4px solid var(--forest-authority);
}

.str-versus-hydro {
    border-top: 4px solid var(--botanical-calm);
}

.str-versus-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--card-border);
    background: var(--data-clarity);
}

.str-versus-header i {
    font-size: 20px;
    color: var(--botanical-calm);
}

.str-versus-header h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    margin: 0;
}

.str-versus-list {
    list-style: none;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.str-versus-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.55;
}

.str-versus-list li i {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.str-versus-list li i.ph-check-circle {
    color: #1A7340;
}

.str-versus-list li i.ph-star {
    color: var(--insight-highlight);
}

.str-versus-list li i.ph-warning {
    color: #856404;
}

.str-versus-list li strong {
    color: var(--readable-ink);
    font-weight: 600;
}

.str-versus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    flex-shrink: 0;
}

.str-versus-divider span {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--subtle-ui);
    background: var(--neutral-card);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   LIFESTYLE GRID
   ============================================================ */
.str-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.str-lifestyle-card {
    background: var(--data-clarity);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.str-lifestyle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 59, 47, 0.08);
}

.str-lifestyle-icon {
    font-size: 26px;
    color: var(--botanical-calm);
    margin-bottom: 12px;
}

.str-lifestyle-card h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--readable-ink);
    margin-bottom: 8px;
}

.str-lifestyle-card p {
    font-size: 13px;
    color: var(--subtle-ui);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   CONCLUSION
   ============================================================ */
.str-conclusion h2 {
    color: var(--forest-authority);
}

.str-final-takeaway {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--forest-authority);
    border-radius: var(--card-radius);
    padding: 18px 22px;
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.str-final-takeaway i {
    font-size: 22px;
    color: var(--insight-highlight);
    flex-shrink: 0;
}

/* ============================================================
   FINAL CTA - Uses global .final-cta from style.css
   Only strain-specific overrides here
   ============================================================ */
.str-cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.str-cta-copy h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 38px);
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.str-cta-copy p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 0;
}

.str-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

/* ============================================================
   DISCLAIMER - Uses global .disclaimer from style.css
   No additional overrides needed
   ============================================================ */

/* ============================================================
   RESPONSIVE - Strains Page
   ============================================================ */
@media (max-width: 960px) {
    .str-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .str-hero-card-wrap {
        position: static;
    }

    .str-quick-card {
        max-width: 500px;
    }

    .str-terpene-grid {
        grid-template-columns: 1fr 1fr;
    }

    .str-strain-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .str-landrace-grid {
        grid-template-columns: 1fr 1fr;
    }

    .str-trend-cards {
        grid-template-columns: 1fr 1fr;
    }

    .str-safety-grid {
        grid-template-columns: 1fr 1fr;
    }

    .str-lifestyle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .str-cta-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .str-hero {
        padding: 40px 20px 56px;
    }

    .str-hero-h1 {
        font-size: 28px;
    }

    .str-toc-bar {
        top: var(--nav-height-mobile);
    }

    .str-article-inner {
        padding: 40px 20px;
    }

    .str-content-section {
        margin-bottom: 52px;
        padding-bottom: 52px;
    }

    .str-content-section h2 {
        font-size: 22px;
        gap: 10px;
    }

    .str-content-section h2 i {
        font-size: 22px;
    }

    .str-feature-grid {
        grid-template-columns: 1fr;
    }

    .str-terpene-grid {
        grid-template-columns: 1fr;
    }

    .str-strain-showcase {
        grid-template-columns: 1fr;
    }

    .str-benefit-grid {
        grid-template-columns: 1fr;
    }

    .str-landrace-grid {
        grid-template-columns: 1fr;
    }

    .str-trend-cards {
        grid-template-columns: 1fr;
    }

    .str-safety-grid {
        grid-template-columns: 1fr;
    }

    .str-chem-grid {
        grid-template-columns: 1fr;
    }

    .str-lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .str-versus-grid {
        grid-template-columns: 1fr;
    }

    .str-versus-divider {
        padding: 12px 0;
        justify-content: flex-start;
    }

    .str-shop-step {
        flex-direction: column;
    }

    .str-smell-item {
        flex-direction: column;
        gap: 4px;
    }

    .str-cta-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .str-cta-actions {
        width: 100%;
        align-items: stretch;
    }

    .str-cta-actions .str-btn {
        justify-content: center;
    }

    .str-experience-timeline::before {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .str-hero-h1 {
        font-size: 24px;
    }

    .str-hero-meta {
        flex-direction: column;
        gap: 8px;
    }

    .str-article-inner {
        padding: 32px 16px;
    }

    .str-content-section h2 {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .str-image-frame {
        min-height: 140px;
        padding: 28px 16px;
    }

    .str-showcase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .str-top10-card {
        padding: 14px 16px;
    }
}

@media (max-width: 360px) {
    .str-hero {
        padding: 32px 16px 48px;
    }

    .str-hero-eyebrow {
        font-size: 9px;
        padding: 4px 10px;
    }

    .str-toc-inner {
        padding: 10px 16px;
    }
}

/* ============================================================
   SIDE BY SIDE IMAGE LAYOUTS
   ============================================================ */

/* ── 2-column side by side ── */
.str-img-row {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.str-img-row-2 {
    grid-template-columns: 1fr 1fr;
}

.str-img-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Wide + Narrow split (60/40) */
.str-img-row-wide-narrow {
    grid-template-columns: 1.5fr 1fr;
}

/* Narrow + Wide split (40/60) */
.str-img-row-narrow-wide {
    grid-template-columns: 1fr 1.5fr;
}

/* ── Individual image block ── */
.str-img-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* The image container */
.str-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg,
        rgba(11, 59, 47, 0.04) 0%,
        rgba(107, 142, 123, 0.08) 100%);
    border: 1px solid var(--card-border);
}

/* Actual image inside */
.str-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.str-img-wrap:hover img {
    transform: scale(1.03);
}

/* Fixed aspect ratios */
.str-img-wrap-square {
    aspect-ratio: 1 / 1;
}

.str-img-wrap-landscape {
    aspect-ratio: 4 / 3;
}

.str-img-wrap-wide {
    aspect-ratio: 16 / 9;
}

.str-img-wrap-portrait {
    aspect-ratio: 3 / 4;
}

.str-img-wrap-tall {
    aspect-ratio: 2 / 3;
}

/* Placeholder state (before real image is added) */
.str-img-wrap.str-img-placeholder-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--card-border);
    background: linear-gradient(135deg,
        rgba(11, 59, 47, 0.03) 0%,
        rgba(107, 142, 123, 0.07) 100%);
    min-height: 180px;
    cursor: default;
    transition: border-color var(--transition), background var(--transition);
}

.str-img-wrap.str-img-placeholder-inline:hover {
    border-color: var(--botanical-calm);
    background: rgba(107, 142, 123, 0.06);
}

.str-img-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
    pointer-events: none;
}

.str-img-placeholder-inner i {
    font-size: 32px;
    color: var(--botanical-calm);
    opacity: 0.45;
}

.str-img-placeholder-inner span {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    color: var(--subtle-ui);
    opacity: 0.65;
    max-width: 200px;
    line-height: 1.5;
}

/* ── Caption ── */
.str-img-caption {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--subtle-ui);
    line-height: 1.5;
    text-align: center;
    padding: 0 4px;
}

.str-img-caption strong {
    color: var(--readable-ink);
    font-weight: 600;
}

/* ── Optional image badge overlay ── */
.str-img-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 100px;
    background: var(--forest-authority);
    color: var(--insight-highlight);
    z-index: 2;
    pointer-events: none;
}

.str-img-badge-light {
    background: rgba(255, 255, 255, 0.88);
    color: var(--forest-authority);
}

.str-img-badge-gold {
    background: var(--insight-highlight);
    color: var(--forest-authority);
}

/* ── Stacked layout (image top, text bottom) ── */
.str-img-text-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.str-img-text-stack .str-img-wrap {
    width: 100%;
}

/* ── Image + Text side by side ── */
.str-img-text-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    margin: 28px 0;
}

.str-img-text-row.str-img-text-row-flip {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.str-img-text-row.str-img-text-row-flip > * {
    direction: ltr;
}

.str-img-text-row-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.str-img-text-row-copy h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--readable-ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
}

.str-img-text-row-copy p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--subtle-ui);
    margin: 0;
}

.str-img-text-row-copy .str-img-text-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(107, 142, 123, 0.07);
    border: 1px solid rgba(107, 142, 123, 0.18);
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--readable-ink);
    line-height: 1.6;
}

.str-img-text-row-copy .str-img-text-note i {
    font-size: 16px;
    color: var(--botanical-calm);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Gallery row (horizontal scroll on mobile) ── */
.str-img-gallery {
    display: grid;
    gap: 12px;
    margin: 28px 0;
}

.str-img-gallery-2 { grid-template-columns: repeat(2, 1fr); }
.str-img-gallery-3 { grid-template-columns: repeat(3, 1fr); }
.str-img-gallery-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Full width hero image ── */
.str-img-full {
    margin: 28px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    position: relative;
}

.str-img-full img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 460px;
    object-fit: cover;
}

.str-img-full .str-img-full-caption {
    background: var(--data-clarity);
    border-top: 1px solid var(--card-border);
    padding: 10px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--subtle-ui);
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE - Image layouts
   ============================================================ */
@media (max-width: 768px) {
    .str-img-row-2,
    .str-img-row-3,
    .str-img-row-wide-narrow,
    .str-img-row-narrow-wide {
        grid-template-columns: 1fr;
    }

    .str-img-text-row,
    .str-img-text-row.str-img-text-row-flip {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .str-img-gallery-3,
    .str-img-gallery-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .str-img-row-2 {
        grid-template-columns: 1fr;
    }

    .str-img-gallery-2,
    .str-img-gallery-3,
    .str-img-gallery-4 {
        grid-template-columns: 1fr;
    }

    .str-img-wrap.str-img-placeholder-inline {
        min-height: 140px;
    }
}