/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a5f;
    --secondary-blue: #2c5282;
    --accent-orange: #ff8c42;
    --accent-gold: #ffd700;
    --silver: #c0c0c0;
    --white: #ffffff;
    --dark-navy: #0f1419;
    --light-gray: #f7fafc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-gray);
}

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

/* Header et Navigation */
.header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #fff3cd;
}

.youtube-link {
    background-color: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.youtube-link:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Bouton hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    padding: 0;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-orange);
}

/* Effet odométre automobile - Style compteur kilométrique mécanique */
.odometer-container {
    background: #2a3441;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    position: relative;
    margin-bottom: 0.5rem;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.4),
        0 2px 8px rgba(0,0,0,0.3);
}

.odometer {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.1em;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.odometer.counting .odometer-digit {
    animation: mechanical-roll 0.3s ease-out;
}

@keyframes mechanical-roll {
    0% { transform: rotateX(90deg); }
    50% { transform: rotateX(0deg) scale(1.05); }
    100% { transform: rotateX(0deg) scale(1); }
}

.odometer-digit {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #000 100%);
    color: white;
    border: 1px solid #333;
    border-radius: 4px;
    width: 1.4em;
    height: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        inset 0 1px 2px rgba(255,255,255,0.1),
        inset 0 -1px 2px rgba(0,0,0,0.5),
        0 1px 3px rgba(0,0,0,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.odometer-digit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent);
    transform: translateY(-50%);
}

.odometer-digit::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 3px;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.15), 
        transparent);
    border-radius: 2px;
}

.separator {
    color: white !important;
    align-self: center;
    margin: 0 0.2em;
    font-weight: normal;
}

/* Force le style mécanique sur tous les écrans */
.odometer-digit {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #000 100%) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    border: 1px solid #333 !important;
    border-radius: 4px !important;
    width: 1.4em !important;
    height: 1.6em !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 1px !important;
    position: relative !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    font-weight: 900 !important;
    text-shadow: none !important;
}

/* Force couleur blanche sur mobile */
@media (max-width: 768px) {
    .odometer-digit {
        color: white !important;
        -webkit-text-fill-color: white !important;
    }
    
    .separator {
        color: white !important;
        -webkit-text-fill-color: white !important;
    }
}

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

/* Section de recherche */
.search-section {
    margin: 3rem 0;
    width: 100%;
    max-width: 700px;
}

.search-form {
    width: 100%;
}

.search-input-container {
    display: flex;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 26, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-input-container:focus-within {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 107, 26, 0.4);
    transform: translateY(-3px);
    border-color: rgba(255, 107, 26, 0.3);
}

.search-input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: #333;
    outline: none;
    font-weight: 500;
}

.search-input::placeholder {
    color: #666;
    opacity: 0.8;
}

.search-button {
    background: linear-gradient(135deg, var(--accent-orange), #ff6b1a);
    border: none;
    padding: 1.2rem 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    font-size: 1.1rem;
}

.search-button:hover {
    background: linear-gradient(135deg, #ff6b1a, var(--accent-orange));
    transform: scale(1.05);
}

.search-button i {
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
    color: var(--dark-navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

/* Sections */
.latest-videos, .videos-section, .about-section {
    padding: 4rem 0;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Grid de vidéos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    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;
}

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

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
    color: var(--dark-navy);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    line-height: 1.4;
    font-weight: 600;
}

.video-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-date {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* À propos */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.channel-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.channel-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.channel-details h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.channel-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-card i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

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

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

.channel-created {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.about-text {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

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

.features-list {
    list-style: none;
    margin: 1rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.features-list i {
    color: #e74c3c;
    width: 20px;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Boutons */
.btn-secondary {
    display: inline-block;
    background-color: #34495e;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
}

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

/* Messages d'erreur */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.no-videos {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #c0392b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 3rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        transform: scale(1.05);
    }
    
    .hero-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .channel-stats {
        gap: 1.5rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Layout avec Sidebar */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.videos-content {
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: 100px;
}

/* Section Affiliation */
.affiliation-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.affiliation-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.affiliation-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.affiliation-banner a {
    display: block;
    text-decoration: none;
    outline: none;
}

.affiliation-banner a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr 250px;
        gap: 1.5rem;
    }
    
    .sidebar {
        top: 80px;
    }
}

@media (max-width: 768px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .affiliation-banner {
        margin: 0 1rem 1.5rem 1rem;
        padding: 0.75rem;
    }
}

/* Styles pour les liens Amazon de fallback */
.amazon-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ff7700);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
    margin: 0.5rem 0;
}

.amazon-link:hover {
    background: linear-gradient(135deg, #e68900, #cc5500);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
    color: white !important;
}

.amazon-link:active {
    transform: translateY(0);
}

/* Styles pour l'aperçu Amazon générique */
.amazon-product-preview.amazon-generic {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.amazon-product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amazon-product-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 6px;
}

.amazon-product-info h4 {
    margin: 0 0 0.5rem 0;
    color: #232f3e;
    font-size: 1.1rem;
    font-weight: 600;
}

.amazon-product-info p {
    margin: 0 0 0.75rem 0;
    color: #666;
    font-size: 0.9rem;
}

.amazon-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff9900, #ff7700);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

.amazon-cta-button:hover {
    background: linear-gradient(135deg, #e68900, #cc5500);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
    color: white !important;
}

.amazon-cta-button:active {
    transform: translateY(0);
}

/* Styles pour l'aperçu Amazon avec vraies données */
.amazon-product-preview.amazon-real {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amazon-product-preview.amazon-real:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.amazon-product-preview.amazon-real .amazon-product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.amazon-fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 6px;
}

.amazon-price {
    color: #B12704;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.25rem 0;
}

.amazon-rating {
    color: #ff9900;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.amazon-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0.5rem 0 0.75rem 0;
}