* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 20px 0;
}

.header h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9em;
    color: #666;
}

.breadcrumb a {
    color: #4ecdc4;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.top-products {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4ecdc4;
}

.product-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1em;
}

.product-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

img{
    max-width: 100%;
}

.features {
    list-style: none;
    margin-bottom: 20px;
}

.features li {
    color: #555;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff6b6b;
}

.btn {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.info-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-image {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2em;
}

.trends-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.criteria-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.criteria-title {
    color: #ff6b6b;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
}

.table-of-contents {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid #4ecdc4;
}

.table-of-contents h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

.table-of-contents li {
    padding: 5px 0;
}

.table-of-contents a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 500;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

.faq-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

.keyword-highlight {
    background: linear-gradient(120deg, transparent 0%, rgba(78, 205, 196, 0.2) 50%, transparent 100%);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .container {
        margin: 10px;
        padding: 15px;
    }
}
/* Marges utilitaires */
.mb-20 { margin-bottom: 20px; }

/* Intro top produits */
.intro-text {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

/* Listes personnalisées */
.custom-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Section tendances */
.trend-text {
  margin-bottom: 25px;
}
.trend-title {
  color: #4ecdc4;
  margin-bottom: 10px;
}
.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0;
  color: #666;
  border-top: 1px solid #eee;
  margin-top: 50px;
}
.footer-title {
  color: #2c3e50;
  margin-bottom: 20px;
}
.footer-text {
  margin-bottom: 15px;
}
.footer-highlight {
  margin-top: 25px;
  font-style: italic;
  color: #4ecdc4;
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.footer-small {
  font-size: 0.9em;
  color: #999;
}
