/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: #003366;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Removed - consolidated with Home Icon Styling section */

.navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.navigation a:hover,
.navigation a[aria-current="page"] {
    border-color: #3498db;
}

.buy-parts-link {
    background: #27ae60 !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    border: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.buy-parts-link:hover {
    background: #229954 !important;
    border-color: transparent !important;
    transform: translateY(-1px);
}

/* Reviews Link Styling */
.reviews-link {
    color: #3498db !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-left: 1rem !important;
    padding: 0.3rem 0.8rem !important;
    border: 2px solid #3498db !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.reviews-link:hover {
    background: #3498db !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3) !important;
}

/* Rating Section Links */
.rating-text {
    color: #666 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.rating-text:hover {
    color: #3498db !important;
    text-decoration: underline !important;
}

/* Home Icon Styling */
.site-title {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.home-icon-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: white !important;
    padding: 0.4rem !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    background: #3498db !important;
    border: 2px solid #3498db !important;
    flex-shrink: 0 !important;
}

.home-icon-link:hover {
    background: #2980b9 !important;
    color: white !important;
    border-color: #2980b9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4) !important;
}

.home-icon {
    width: 20px !important;
    height: 20px !important;
    fill: white !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.home-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    padding: 0.4rem !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    margin-right: 0.75rem !important;
}

.home-logo-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.header-logo-img {
    height: 48px !important;
    width: auto !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

/* Price Comparison Section */
.price-comparison-section {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.price-comparison-section h2 {
    color: #2c3e50;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    width: max-content;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.price-comparison-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-item {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.price-item.best-price {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    position: relative;
    transform: scale(1.02);
}

.store-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
}

.store-name a {
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
}

.store-name a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.best-badge {
    background: #27ae60;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    display: block;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.shipping {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.best-price .shipping {
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item:not(.best-price) .shipping {
    color: #e74c3c;
}

.price-item:not(.best-price) .price {
    color: #e74c3c;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.price-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.price-note a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .price-comparison-box {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .price-item.best-price {
        transform: none;
        order: -1;
    }
}

/* Search Section */
.search-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 8px;
    text-align: center;
}

.search-section h3 {
    color: #f8f9fa !important;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4) !important;
    letter-spacing: -0.5px;
    opacity: 0.95 !important;
}

.search-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.search-container {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-container h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.search-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: #2980b9;
}

.shop-button {
    background: #27ae60;
}

.shop-button:hover {
    background: #219a52;
}

.support-link {
    margin-top: 0.75rem;
    text-align: center;
}

.support-link a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.support-link a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.hero-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Parts Section */
.parts-section {
    margin-bottom: 3rem;
}

.parts-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

/* Table Styles */
.parts-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.parts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.parts-table th,
.parts-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.parts-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    position: sticky;
    top: 0;
}

.parts-table tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.part-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.part-link:hover {
    background-color: #3498db;
    color: white;
    text-decoration: none;
}

.loading-message {
    text-align: center;
    font-style: italic;
    color: #666;
    padding: 2rem !important;
}

/* Part Thumbnail Styles */
.part-thumbnail {
    width: 100px;
    height: 130px;
    object-fit: contain;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background-color: #ffffff;
    padding: 2px;
    display: block;
    margin: 0 auto;
}

.part-thumbnail:hover {
    transform: scale(1.1);
    border-color: #3498db;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

/* Product Image Styles */
.part-image,
.part-main-image {
    width: 200px !important;
    height: 200px !important;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    background: #fafafa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.part-image:hover,
.part-main-image:hover {
    transform: scale(1.05);
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

/* Image Container Styling */
.part-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.image-caption {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-style: italic;
    max-width: 250px;
    line-height: 1.4;
}

/* Standardized Section Styling */
.section-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Part Page Layout */
.part-info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 2rem 0;
    align-items: start;
}

.part-specs {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.specs-list {
    margin: 0;
}

.specs-list dt {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.specs-list dd {
    color: #666;
    margin-left: 0;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.specs-list dd:last-child {
    border-bottom: none;
}

/* Purchase Section Styling */
.purchase-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: white;
}

.purchase-card {
    text-align: center;
}

.purchase-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.purchase-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.buy-button {
    display: inline-block;
    background: #27ae60;
    color: white !important;
    padding: 1rem 2rem;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.buy-button:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

/* Info Section */
.info-section {
    margin-bottom: 3rem;
}

.info-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.info-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    padding: 2rem 0;
    margin-top: 3rem;
}

.disclaimer-section .container {
    text-align: center;
}

.disclaimer-section h2 {
    color: #856404;
    margin: 0 auto 2rem auto;
    font-size: 1.5rem;
    border-bottom: 2px solid #856404;
    padding-bottom: 0.5rem;
    text-align: center;
    width: max-content;
    display: block;
}

.disclaimer-section h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-section p {
    color: #856404;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #003366;
    color: white;
    padding: 3rem 0 1.5rem 0;
    margin-top: 3rem;
    border-top: 4px solid #3498db;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section h4 {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.footer-section ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 0.7rem;
    top: 0.2rem;
}

.footer-section ul li a {
    color: #bdc3c7 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.footer-section ul li a:hover {
    color: #3498db !important;
    transform: translateX(4px) !important;
}

.footer-bottom {
    border-top: 1px solid #445566;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.footer-logo {
    margin-top: 1.5rem;
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.model-numbers-scrollable {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
    word-wrap: break-word;
}

/* Video Section Styles */
.video-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.video-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.video-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.video-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.video-duration,
.video-difficulty {
    background: #e8f4fd;
    color: #2980b9;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.video-disclaimer h4 {
    color: #856404;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.video-disclaimer p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .site-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-section h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .navigation ul {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navigation ul li a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .parts-table th,
    .parts-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
    
    .part-thumbnail {
        width: 80px;
        height: 100px;
        padding: 2px;
    }

    .search-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .search-container {
        padding: 1rem;
    }

    .search-container h4 {
        font-size: 1.1rem;
    }

    .search-section h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .part-image,
    .part-main-image {
        width: 180px !important;
        height: 180px !important;
    }
    
    .info-grid,
    .part-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .search-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-section ul li {
        padding-left: 0;
    }
    
    .footer-section ul li::before {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .part-header h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        margin: 1rem 0;
    }
    
    .purchase-card {
        padding: 1.2rem;
    }
}
}

@media (max-width: 480px) {
    .parts-table th,
    .parts-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 1.5rem 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .navigation {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .parts-table {
        border: 1px solid #000;
    }
    
    .parts-table th,
    .parts-table td {
        border: 1px solid #000;
    }
}

/* Model List Expandable Section */
.complete-model-list {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.model-details {
    margin-top: 1rem;
}

.model-details summary {
    cursor: pointer;
    padding: 0.75rem;
    background-color: #3498db;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
}

.model-details summary:hover {
    background-color: #2980b9;
}

.all-models {
    padding: 1.5rem;
    background-color: white;
    border: 1px solid #dee2e6;
    border-top: none;
    max-height: 500px;
    overflow-y: auto;
}

.all-models h4 {
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.25rem;
}

.all-models h4:first-child {
    margin-top: 0;
}

.model-numbers {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    word-break: break-all;
    color: #495057;
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 4px;
}

/* Focus Styles for Accessibility */
.part-link:focus,
.navigation a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.parts-table tr {
    animation: fadeIn 0.3s ease-out;
}

/* Mobile Video Responsive Styles */
@media (max-width: 768px) {
    .video-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-details {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .video-disclaimer {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
}
