/* Stove Shield Block Styles */
.tfc-stove-shield-block {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.tfc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tfc-stove-shield-block .tfc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tfc-content-section {
    padding-right: 20px;
}

.tfc-main-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
}

.tfc-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #333333;
}

.tfc-features-list {
    margin-bottom: 20px;
    margin-top: 15px;
}
.tfc-grid .tfc-content-section .tfc-features-list .tfc-feature-item {
align-items: flex-end;
}
.tfc-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.tfc-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tfc-feature-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #333333;
}

.tfc-image-section {
    padding-left: 20px;
}

.tfc-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tfc-image-placeholder {
    width: 100%;
    height: 400px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f8f9fa;
}

.tfc-image-placeholder:hover {
    border-color: #007cba;
    background-color: #f0f8ff;
}

.tfc-placeholder-content {
    text-align: center;
    color: #666;
}

.tfc-placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.6;
}

/* Admin Editor Styles */
.tfc-add-feature-btn {
    margin-top: 16px;
}

.tfc-mb-4 {
    margin-bottom: 16px;
}

.tfc-mb-4 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tfc-stove-shield-block {
        padding: 0 0 10px 0;
    }
    
    .tfc-stove-shield-block .tfc-grid {
        display: block;
    }
    
    .tfc-content-section {
        padding-right: 0;
        order: 2;
    }
    
    .tfc-image-section {
        padding-left: 0;
        order: 1;
        margin-top: 35px;
    }
    
    .tfc-main-title {
        font-size: 28px;
        text-align: center;
    }
    
    .tfc-description {
        text-align: center;
        font-size: 14px;
    }
    
    .tfc-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .tfc-main-title {
        font-size: 24px;
    }
    
    .tfc-feature-text {
        font-size: 14px;
    }
    
    .tfc-feature-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .tfc-stove-shield-block .tfc-grid {
        gap: 30px;
    }
}

/* Hover Effects */
.tfc-feature-item:hover .tfc-feature-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.tfc-image-container img:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Print Styles */
@media print {
    .tfc-stove-shield-block {
        padding: 20px 0;
        background-color: white !important;
    }
    
    .tfc-image-container img {
        box-shadow: none;
    }
}