.content-tabs {
    margin-top: 3rem;
}

.tab-navigation {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #2D5A3F;
    background: rgba(45, 90, 63, 0.05);
}

.tab-btn.active {
    color: #2D5A3F;
    border-bottom-color: #2D5A3F;
    background: rgba(45, 90, 63, 0.1);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2D5A3F;
    margin: 1.5rem 0;
}

.composition-visual {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.mineral-bar-item {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.mineral-bar {
    background: #e9ecef;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    background: linear-gradient(90deg, #2D5A3F, #4A7C59);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.mineral-benefit {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.app-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.app-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5A3F, #4A7C59, #6B9B7C);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.app-item:hover::before {
    transform: scaleX(1);
}

.app-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(45, 90, 63, 0.2);
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.app-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2D5A3F, #4A7C59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.app-item:hover .app-icon {
    transform: scale(1.1) rotate(5deg);
}

.app-item h4 {
    color: #2D5A3F;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.app-item:hover h4 {
    color: #1a3d28;
}

.app-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.app-item:hover p {
    color: #555;
}

.quality-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-num {
    background: #2D5A3F;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 2rem;
}

.adv-item {
    padding: 0.5rem 1rem;
    background: rgba(45, 90, 63, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ingredient-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 3px solid #2D5A3F;
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-3px);
}

.ingredient-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.ritual-steps {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.ritual-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid #2D5A3F;
    transition: transform 0.3s ease;
}

.ritual-step:hover {
    transform: translateX(5px);
}

.benefits-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(45, 90, 63, 0.1) 0%, rgba(107, 155, 124, 0.1) 100%);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #2D5A3F;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(45, 90, 63, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.benefit-item:hover::before {
    width: 200px;
    height: 200px;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: #2D5A3F;
    background: linear-gradient(135deg, rgba(45, 90, 63, 0.15) 0%, rgba(107, 155, 124, 0.15) 100%);
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.2);
}

.composition-breakdown {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.ingredient-list {
    display: grid;
    gap: 1rem;
}

.ingredient-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2D5A3F;
}

.ingredient-percent {
    background: #2D5A3F;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.properties-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #2D5A3F;
}

.properties-grid {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.property-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.7);
    border-radius: 5px;
}

.prop-icon {
    font-size: 1.2rem;
}

.ritual-timeline {
    position: relative;
    margin: 2rem 0;
}

.ritual-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2D5A3F;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    background: #2D5A3F;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(45, 90, 63, 0.3);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 3px solid #2D5A3F;
    flex: 1;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.duration {
    background: rgba(45, 90, 63, 0.1);
    color: #2D5A3F;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ritual-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(45, 90, 63, 0.05);
    border-radius: 8px;
    font-style: italic;
}

.ritual-tips {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3e0 0%, #fef7ed 100%);
    border-radius: 10px;
    border-left: 4px solid #D4A574;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.tip-item {
    background: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.roses-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.rose-card {
    background: linear-gradient(135deg, #fdf2f8 0%, #fef7f0 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #D4A574;
    text-align: center;
}

.distillation-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.timing {
    background: rgba(45, 90, 63, 0.1);
    color: #2D5A3F;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #2D5A3F;
    font-weight: bold;
}

.distillation-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 3px solid #2D5A3F;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2D5A3F;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.molecules-showcase {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.molecule-item {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.molecule-icon {
    font-size: 2rem;
    text-align: center;
}

.molecule-bar {
    background: #e9ecef;
    height: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.app-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.app-tag {
    background: rgba(45, 90, 63, 0.1);
    color: #2D5A3F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.benefits-circle {
    margin: 2rem 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-badge {
    background: linear-gradient(135deg, #2D5A3F, #4A7C59);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
}

.quality-assurance {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 10px;
}

.quality-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.quality-badge {
    background: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
}

/* Distillation Timeline */
.distillation-container {
    margin: 2rem 0;
}

.process-timeline {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #2D5A3F;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.step-bubble .step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.step-time {
    background: #2D5A3F;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-details {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.detail-tag {
    background: rgba(45, 90, 63, 0.1);
    color: #2D5A3F;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.distillation-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-card.primary {
    background: linear-gradient(135deg, #2D5A3F, #4A7C59);
    color: white;
}

.metric-card.secondary {
    background: linear-gradient(135deg, #D4A574, #E6B887);
    color: white;
}

.metric-card.tertiary {
    background: linear-gradient(135deg, #6B9B7C, #7DAB8F);
    color: white;
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: block;
}

.metric-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
}

/* Composition Dashboard */
.composition-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.molecules-chart {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.molecule-bars {
    display: grid;
    gap: 1.5rem;
}

.molecule-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.molecule-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.molecule-details {
    display: flex;
    flex-direction: column;
}

.molecule-effect {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.molecule-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.progress-bar {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

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

.progress-fill.citronellol {
    background: linear-gradient(90deg, #2D5A3F, #4A7C59);
}

.progress-fill.geraniol {
    background: linear-gradient(90deg, #D4A574, #E6B887);
}

.progress-fill.nerol {
    background: linear-gradient(90deg, #6B9B7C, #7DAB8F);
}

.progress-fill.linalol {
    background: linear-gradient(90deg, #8B7355, #A68B5B);
}

.percentage {
    font-weight: bold;
    color: #2D5A3F;
    min-width: 40px;
}

.composition-extras {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.compound-tags {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.compound-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tag-icon {
    font-size: 1.5rem;
}

.compound-tag small {
    color: #666;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.2rem;
}

/* Applications Matrix */
.applications-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.market-segment {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.segment-header {
    background: linear-gradient(135deg, #2D5A3F, #4A7C59);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.segment-icon {
    font-size: 2rem;
}

.market-size {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: auto;
}

.applications-list {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.app-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-item:hover {
    background: rgba(45, 90, 63, 0.05);
    transform: translateX(5px);
}

.app-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.app-details strong {
    color: #2D5A3F;
    display: block;
    margin-bottom: 0.3rem;
}

.app-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Benefits Hexagon */
.benefits-showcase {
    margin: 3rem 0;
    text-align: center;
}

.benefits-hexagon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-hex {
    background: linear-gradient(135deg, #2D5A3F, #4A7C59);
    color: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-hex::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.benefit-hex:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.benefit-hex:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(45, 90, 63, 0.3);
}

.hex-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.hex-label {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.hex-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
}

@media (max-width: 768px) {
    .mineral-bar-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .ritual-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .composition-visual {
        grid-template-columns: 1fr;
    }
    
    .composition-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ritual-timeline::before {
        display: none;
    }
    
    .step-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .distillation-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .molecule-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .composition-dashboard {
        grid-template-columns: 1fr;
    }
    
    .molecule-row {
        flex-direction: column;
        text-align: center;
    }
    
    .applications-matrix {
        grid-template-columns: 1fr;
    }
    
    .benefits-hexagon {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }
}