/* =============================================
   help-styles-part2.css - סגנונות נוספים (השוואה, גלריה, בנייה)
   ============================================= */

/* טבלת השוואה ידני vs האתר */
.versus-comparison {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 30px;
}

.versus-side {
    flex: 1;
    padding: 25px;
    border-radius: 15px;
}

.versus-manual {
    background: linear-gradient(135deg, #ffeaea, #ffcccc);
    border: 2px solid #e74c3c;
}

.versus-site {
    background: linear-gradient(135deg, #eaffea, #ccffcc);
    border: 2px solid #27ae60;
}

.versus-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(0,0,0,0.1);
}

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

.versus-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.versus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.versus-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.versus-list li:last-child {
    border-bottom: none;
}

.versus-value {
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.versus-value.bad {
    background: #e74c3c;
    color: white;
}

.versus-value.good {
    background: #27ae60;
    color: white;
}

.versus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.versus-divider span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.comparison-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    color: white;
}

.summary-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* גלריית תוצאות */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #495057;
}

.gallery-icon {
    font-size: 3rem;
}

.gallery-placeholder span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-caption {
    padding: 20px;
    background: #f8f9fa;
}

.gallery-caption h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.gallery-caption p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* ======== טאב אופן הבנייה ======== */
.construction-intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.intro-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.intro-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.intro-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.intro-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.construction-diagram {
    margin: 25px 0;
}

.diagram-placeholder {
    background: linear-gradient(135deg, #e8f4fd, #d1e8fa);
    border: 3px dashed #3498db;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    color: #3498db;
}

.diagram-placeholder.small {
    padding: 30px;
}

.placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.diagram-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}

.parts-breakdown {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
}

.parts-breakdown h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.part-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.part-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.part-number {
    background: #3498db;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.part-header h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
}

.part-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.part-tag.external {
    background: #27ae60;
    color: white;
}

.part-tag.internal {
    background: #f39c12;
    color: white;
}

.part-details {
    padding: 20px;
}

.part-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.part-note {
    background: #fff3cd;
    border-right: 4px solid #f39c12;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.highlight {
    background: #3498db;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.highlight-calc {
    background: #9b59b6;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.calculation-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

/* מעטפת */
.shell-explanation {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.shell-before-after {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.shell-state {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.shell-state h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.shell-arrow {
    font-size: 2rem;
}

.shell-features {
    list-style: none;
    padding: 0;
    text-align: right;
    margin-top: 15px;
}

.shell-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.shell-features li:last-child {
    border-bottom: none;
}

.shell-details {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.shell-details h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.shell-parts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.shell-part-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.shell-part-icon {
    font-size: 1.5rem;
    background: #e8f4fd;
    padding: 10px;
    border-radius: 10px;
}

.shell-part-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* סוגי חורים */
.holes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hole-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.hole-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.hole-color.blue { background: #3498db; }
.hole-color.red { background: #e74c3c; }
.hole-color.yellow { background: #f1c40f; }
.hole-color.green { background: #2ecc71; }
.hole-color.orange { background: #e67e22; }

.hole-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.hole-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* כיוון סיבים */
.wood-grain-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.grain-rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.grain-rule {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.grain-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grain-rule p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}
