/* ========================================
   ZION Seeds - Strain Detail Styles
   ======================================== */

/* Hero sekce */
.strain-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.strain-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(12px) brightness(0.35);
    transform: scale(1.1);
}

.strain-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.strain-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6549d5, #e33fa1);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(101, 73, 213, 0.4);
}

.strain-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff, #e5fdf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
    letter-spacing: 1px;
}

.strain-hero-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    font-style: italic;
    margin-bottom: 30px;
}

.strain-hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 60px rgba(101, 73, 213, 0.5),
                0 0 120px rgba(227, 63, 161, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 60px rgba(101, 73, 213, 0.5), 0 0 120px rgba(227, 63, 161, 0.3); }
    50% { box-shadow: 0 0 80px rgba(101, 73, 213, 0.7), 0 0 150px rgba(227, 63, 161, 0.5); }
}

/* Quick Stats */
.strain-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: -30px auto 50px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid #222;
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(101, 73, 213, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #6549d5, #e33fa1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Sections */
.strain-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.strain-section {
    margin-bottom: 60px;
}

.strain-section h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strain-section h2 i {
    color: #e33fa1;
}

.strain-section h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #333, transparent);
    margin-left: 20px;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.profile-item {
    background: linear-gradient(145deg, #0d0d0d, #0a0a0a);
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.profile-item:hover {
    border-color: rgba(227, 63, 161, 0.3);
}

.profile-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.profile-item-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-item-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

/* Progress Bar */
.progress-bar {
    height: 8px;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.progress-fill.thc {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.progress-fill.cbd {
    background: linear-gradient(90deg, #2196f3, #03a9f4);
}

.progress-fill.indica {
    background: linear-gradient(90deg, #9c27b0, #673ab7);
}

.progress-fill.sativa {
    background: linear-gradient(90deg, #ff9800, #ffc107);
}

/* Effects Grid */
.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.effect-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(145deg, #0f0f0f, #0a0a0a);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    font-size: 14px;
    color: #ccc;
    transition: all 0.3s ease;
}

.effect-tag:hover {
    border-color: rgba(101, 73, 213, 0.4);
    transform: translateX(4px);
}

.effect-tag i {
    font-size: 18px;
    color: #6549d5;
}

.effect-tag.negative i {
    color: #f44336;
}

/* Terpene Profile */
.terpene-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terpene-item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: linear-gradient(145deg, #0d0d0d, #0a0a0a);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
}

.terpene-name {
    font-weight: 600;
    color: #fff;
}

.terpene-bar {
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    overflow: hidden;
}

.terpene-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #6549d5, #e33fa1);
}

.terpene-aroma {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}

/* Growing Info */
.grow-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.grow-card {
    background: linear-gradient(145deg, #0d0d0d, #0a0a0a);
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.grow-card:hover {
    border-color: rgba(46, 125, 50, 0.4);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
}

.grow-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(76, 175, 80, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4caf50;
}

.grow-card-title {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.grow-card-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

/* Lineage Tree */
.lineage-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(145deg, #0d0d0d, #0a0a0a);
    border: 1px solid #1a1a1a;
    border-radius: 16px;
}

.lineage-parents {
    display: flex;
    gap: 60px;
    position: relative;
}

.lineage-parents::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #6549d5, #e33fa1);
}

.lineage-node {
    padding: 16px 28px;
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.lineage-node.parent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: #444;
}

.lineage-node.child {
    background: linear-gradient(135deg, rgba(101, 73, 213, 0.2), rgba(227, 63, 161, 0.1));
    border-color: rgba(101, 73, 213, 0.4);
}

.lineage-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.lineage-name {
    font-weight: 600;
    color: #fff;
}

/* CTA Section */
.strain-cta {
    text-align: center;
    padding: 50px 20px;
    margin-top: 40px;
    background: linear-gradient(145deg, rgba(101, 73, 213, 0.1), rgba(227, 63, 161, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(101, 73, 213, 0.2);
}

.strain-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.strain-cta p {
    color: #888;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.strain-cta .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #6549d5, #e33fa1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.strain-cta .btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(120deg, #c62828, #fdd835, #2e7d32);
    color: #041016;
    border: none;
    border-radius: 36px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.strain-cta .btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Navigation between strains */
.strain-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a;
}

.strain-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(145deg, #0d0d0d, #0a0a0a);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.strain-nav-link:hover {
    border-color: rgba(101, 73, 213, 0.4);
    color: #fff;
}

.strain-nav-link.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .strain-hero {
        min-height: 350px;
    }
    
    .strain-hero-image {
        width: 140px;
        height: 140px;
    }
    
    .strain-stats {
        gap: 15px;
    }
    
    .stat-card {
        padding: 18px 24px;
        min-width: 120px;
    }
    
    .lineage-parents {
        flex-direction: column;
        gap: 30px;
    }
    
    .lineage-parents::after {
        display: none;
    }
    
    .terpene-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .strain-nav {
        flex-direction: column;
        gap: 15px;
    }
}
