/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Thème Air Frais & Bien-être */
    --primary-color: #1a5f7a;
    --secondary-color: #00a8cc;
    --accent-color: #4ecdc4;
    --success-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e6ed;
    --shadow: 0 2px 10px rgba(26, 95, 122, 0.1);
    --shadow-hover: 0 5px 20px rgba(26, 95, 122, 0.15);

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.logo {
    width: 8em;
    height: 2em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.category-section {
    scroll-margin-top: 80px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-sm);
    min-height: 70px;
}

.nav__brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav__menu {
    display: flex;
    gap: var(--spacing-md);
}

.nav__link {
    color: var(--text-dark);
    font-weight: 500;
    padding: var(--spacing-xs) 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: var(--font-size-base);
}

.btn--primary {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
}

.btn--primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 95, 122, 0.25);
}

.btn--product {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    margin-top: auto;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: none;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn--product:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(160deg, #1a5f7a 0%, #0d4a5f 40%, #00a8cc 100%);
    color: var(--bg-white);
    padding: calc(var(--spacing-xl) * 1.5) 0 calc(var(--spacing-xl) * 2);
    min-height: 340px;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__title {
    font-size: var(--font-size-h1);
    margin-bottom: var(--spacing-sm);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: var(--font-size-large);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

/* ===== SECTION HEADER ===== */
.section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section__title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: var(--spacing-md);
    border-left: 5px solid var(--secondary-color);
}

.section__title::after {
    content: none;
}

/* ===== CONSEILS SECTION ===== */
.conseils {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.conseils__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.conseil__card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26, 95, 122, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.conseil__card::before {
    content: none;
}

.conseil__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 95, 122, 0.1);
    border-top-color: var(--accent-color);
}

.conseil__title {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-left: 0;
}

.conseil__title::before {
    content: none;
}

.conseil__text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.conseil__text:last-child {
    margin-bottom: 0;
}

/* ===== CATEGORY SECTION ===== */
.category-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.category-section::before {
    content: none;
}

.category-section:nth-child(even) {
    background: var(--bg-light);
}

.category-primary {
    background: var(--bg-white);
}

.category__header {
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-left: var(--spacing-md);
    border-left: 5px solid var(--secondary-color);
}

.category__header::after {
    content: none;
}

.category__title {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.category__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--spacing-xl) 0;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
}

.product__card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 95, 122, 0.06);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

.product__card::before {
    content: none;
}

.product__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.12);
    border-color: var(--secondary-color);
}

.product__card--featured {
    border-color: rgba(0, 168, 204, 0.3);
}


.product__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(26, 95, 122, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product__image {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.product__image::after {
    content: none;
}

.product__card:hover .product__image {
    background: #eef6fa;
}

.product__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    padding: var(--spacing-md);
    transition: transform 0.4s ease;
}

.product__card:hover .product__img {
    transform: scale(1.08);
}

.product__content {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--spacing-xs);
}

.product__title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
    min-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product__card:hover .product__title {
    color: var(--primary-color);
}

.product__description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product__price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.btn--price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: #ff9900;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--price:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.btn--price .amazon-logo {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* ===== GUIDE SECTION ===== */
.guide {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

/* ===== BLOG SECTION ===== */
/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer__title {
    font-size: var(--font-size-h3);
    margin-bottom: var(--spacing-sm);
}

.footer__subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.footer__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer__disclaimer {
    font-size: var(--font-size-small);
    margin-top: var(--spacing-xs);
    opacity: 0.7;
}

/* ===== BLOG SECTION ===== */
.blog {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.blog__card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 95, 122, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.12);
    border-color: var(--secondary-color);
}

.blog__image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.blog__image::after {
    content: none;
}

.blog__content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog__title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    font-weight: 700;
}

.blog__excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.blog__link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blog__link:hover {
    color: var(--primary-color);
    gap: 12px;
    text-decoration: none;
}

.blog__link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog__link:hover::after {
    transform: translateX(4px);
}

/* ===== PRODUIT PAGE ===== */
.produit-page {
    padding: var(--spacing-md) 0 var(--spacing-xl);
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 50%, #f8fafb 100%);
}

.breadcrumb {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-small);
    color: var(--text-light);
    padding: var(--spacing-xs) 0;
}

.breadcrumb a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Section header avec image, titre et prix */
.produit__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26, 95, 122, 0.1);
    align-items: center;
    border: 1px solid rgba(0, 168, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.produit__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.produit__header-image {
    width: 100%;
}

.produit__img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 12px 40px rgba(0, 168, 204, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 168, 204, 0.1);
}

.produit__img:hover {
    transform: scale(1.05) rotate(1deg);
}

.produit__header-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Section content avec toutes les autres sections en colonne centrée */
.produit__content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.produit__cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

.produit__title {
    font-size: var(--font-size-h1);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rating stars component */
.produit__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.produit__rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 1.25rem;
    line-height: 1;
}

.produit__rating-star {
    color: #d3d3d3;
    position: relative;
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1;
    width: 1.25rem;
    text-align: left;
}

.produit__rating-star--filled {
    color: #ffa500;
}

.produit__rating-star--half {
    position: relative;
    display: inline-block;
    width: 1.25rem;
    overflow: hidden;
}

.produit__rating-star--half>.produit__rating-star {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25rem;
    color: #d3d3d3;
}

.produit__rating-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.produit__rating-count {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.produit__price {
    margin: var(--spacing-sm) 0;
    width: 100%;
}

.produit__header-info .produit__price {
    display: flex;
    justify-content: center;
}

.btn--large {
    padding: 18px 45px;
    font-size: var(--font-size-large);
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 168, 204, 0.4);
}

.produit__related {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--secondary-color), var(--accent-color)) 1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 95, 122, 0.08);
}

.produit__related h2 {
    font-size: var(--font-size-h2);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.produit__related h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* Badge pour produit populaire ou recommandé */
.produit__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: var(--font-size-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 168, 204, 0.3);
    margin-bottom: var(--spacing-sm);
}

/* Animation pour les cartes de produits recommandés */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product__card {
    animation: none;
}

/* ===== ARTICLE BLOG STYLES ===== */
.article {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm);
}

.article__breadcrumb {
    font-size: var(--font-size-small);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.article__breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.article__breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

.article__meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-small);
    color: var(--text-light);
}

.article__date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0 auto var(--spacing-lg);
    display: block;
    box-shadow: var(--shadow);
}

.article__hero {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.article__hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.article__hero p {
    font-size: var(--font-size-large);
    line-height: 1.8;
    color: var(--text-dark);
}

.article__content {
    line-height: 1.8;
    color: var(--text-dark);
}

.article__content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
}

.article__content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.article__content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.article__content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--text-dark);
}

.article__content ul,
.article__content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
    line-height: 1.8;
}

.article__content ul {
    list-style-type: disc;
}

.article__content ol {
    list-style-type: decimal;
}

.article__content li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.article__content li::marker {
    color: var(--accent-color);
}

.article__content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article__content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.article__content a:hover {
    color: var(--primary-color);
}

.article__content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
    font-style: italic;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

/* Produit cards dans les articles */
.produit-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.produit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.produit-card__image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    background-color: var(--bg-light);
    padding: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    display: block;
}

.produit-card__content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.produit-card__content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    margin-top: 0;
}

.produit-card__content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    flex: 1;
}

.produit-card__actions {
    margin-top: auto;
    padding-top: var(--spacing-sm);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
}

.produit-card__actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.produit-card__actions a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.produit-card__actions a[rel="nofollow sponsored"] {
    background-color: #ff9900;
    color: #000;
}

.produit-card__actions a[rel="nofollow sponsored"]:hover {
    background-color: #e68900;
}

/* Assurer que btn--price dans produit-card__actions utilise le style orange Amazon */
.produit-card__actions .btn--price {
    background-color: #ff9900 !important;
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.produit-card__actions .btn--price:hover {
    background-color: #e68900 !important;
    color: #000 !important;
    transform: none;
    box-shadow: none;
}

/* FAQ Section */
.article__faq {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
}

.article__faq h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: var(--spacing-sm);
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Info boxes */
.article__info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--accent-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.article__info-box--warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left-color: #f39c12;
}

.article__info-box--success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left-color: var(--success-color);
}

.article__info-box h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.article__info-box p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.article__info-box ul {
    margin: var(--spacing-sm) 0 0 0;
    padding-left: var(--spacing-md);
}

.article__info-box li {
    margin-bottom: var(--spacing-xs);
}

/* Table of contents */
.article__toc {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 2px solid var(--border-color);
}

.article__toc h2 {
    margin-top: 0;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.article__toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.article__toc li {
    margin-bottom: var(--spacing-xs);
}

.article__toc a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: var(--spacing-xs) 0;
    transition: var(--transition);
}

.article__toc a:hover {
    color: var(--secondary-color);
    padding-left: var(--spacing-xs);
}

.article__toc li li {
    margin-left: var(--spacing-md);
    margin-top: var(--spacing-xs);
}

/* Section styling */
.article__content section {
    margin-bottom: var(--spacing-xl);
}

.article__content section:last-child {
    margin-bottom: 0;
}

/* Table styles */
.article__content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article__content thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.article__content th {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    font-weight: 600;
    font-size: var(--font-size-base);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.article__content th:first-child {
    border-top-left-radius: var(--radius-md);
}

.article__content th:last-child {
    border-top-right-radius: var(--radius-md);
}

.article__content tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.article__content tbody tr:last-child {
    border-bottom: none;
}

.article__content tbody tr:hover {
    background-color: var(--bg-light);
}

.article__content td {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.article__content td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive table wrapper */
.article__content>div[style*="overflow:auto"] {
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-md);
}

.article__content>div[style*="overflow:auto"] table {
    margin: 0;
    min-width: 600px;
}

@media (max-width: 768px) {
    .article__content>div[style*="overflow:auto"] {
        margin-left: calc(-1 * var(--spacing-sm));
        margin-right: calc(-1 * var(--spacing-sm));
        border-radius: 0;
    }

    .article__content th,
    .article__content td {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: var(--font-size-small);
    }
}

/* Responsive article styles */
@media (max-width: 768px) {
    .article {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .article__hero h1 {
        font-size: 2rem;
    }

    .article__content h2 {
        font-size: 1.75rem;
    }

    .article__content h3 {
        font-size: 1.25rem;
    }

    .article__image {
        max-height: 300px;
        min-height: 200px;
        border-radius: var(--radius-md);
        margin-bottom: var(--spacing-md);
    }

    .produit-card__image {
        min-height: 180px;
        max-height: 220px;
    }

    .produit-card__content {
        padding: var(--spacing-sm);
    }

    .produit-card__actions {
        flex-direction: column;
    }

    .produit-card__actions a {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 2rem;
        --font-size-h2: 1.75rem;
        --font-size-h3: 1.25rem;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .conseils__grid,
    .blog__grid {
        grid-template-columns: 1fr;
    }

    .produit__header {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .produit__img {
        height: 350px;
    }

    .produit__title {
        font-size: 1.75rem;
        text-align: center;
    }

    .produit__header-info {
        align-items: center;
        text-align: center;
    }

    .produit__content {
        padding: 0 var(--spacing-sm);
    }

    .produit__related {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }

    .hero {
        padding: var(--spacing-md) 0;
        min-height: auto;
    }

    .section__header {
        margin-bottom: var(--spacing-md);
    }

    .products,
    .guide {
        padding: var(--spacing-md) 0;
    }

    .article__image {
        max-height: 250px;
        min-height: 180px;
        border-radius: var(--radius-sm);
    }

    .produit-card__image {
        min-height: 150px;
        max-height: 200px;
        padding: var(--spacing-xs);
    }

}

/* ===== NOUVEAUX STYLES MODERNES ===== */
/* Google Fonts */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

/* Tech Specs Modern */
.tech-specs-modern {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26, 95, 122, 0.08);
    border: 1px solid rgba(0, 168, 204, 0.1);
}

.tech-specs-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tech-specs-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.5px;
}

.tech-specs-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.tech-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 2px solid rgba(0, 168, 204, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 168, 204, 0.2);
    border-color: var(--secondary-color);
}

.tech-card--primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    border-color: transparent;
}

.tech-card--primary .tech-card-label,
.tech-card--primary .tech-card-value,
.tech-card--primary .tech-card-detail {
    color: var(--bg-white);
}

.tech-card--full {
    grid-column: 1 / -1;
    flex-direction: row;
    text-align: left;
    padding: var(--spacing-lg);
}

.tech-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.tech-card--full .tech-card-icon {
    margin-bottom: 0;
    margin-right: var(--spacing-md);
    font-size: 3rem;
}

.tech-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    flex: 1;
}

.tech-card-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    opacity: 0.8;
}

.tech-card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.tech-card-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* Product Description Modern */
.product-description-modern {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26, 95, 122, 0.08);
}

.description-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.description-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.5px;
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.description-block {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
}

.description-block:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 168, 204, 0.15);
}

.description-block--highlight {
    background: linear-gradient(135deg, #e6f7ff 0%, #b3e5fc 100%);
    border-left-color: var(--accent-color);
}

.description-block-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.description-block-content {
    flex: 1;
}

.description-block-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.description-block-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.description-block-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Features Modern */
.features-modern {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26, 95, 122, 0.08);
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.5px;
}

.features-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(0, 168, 204, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 168, 204, 0.2);
    border-color: var(--secondary-color);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: scale(1.1);
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.feature-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Modern */
.why-choose-modern {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #e6f7ff 0%, #b3e5fc 100%);
    border-radius: 24px;
    border-left: 6px solid var(--accent-color);
    box-shadow: 0 8px 32px rgba(0, 168, 204, 0.15);
}

.why-choose-content {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.why-choose-icon {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
}

.why-choose-text {
    flex: 1;
}

.why-choose-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.why-choose-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-choose-paragraph strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Tips Modern */
.tips-modern {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26, 95, 122, 0.08);
}

.tips-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tips-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.5px;
}

.tips-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.tips-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.tip-card {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 168, 204, 0.15);
    border-left-color: var(--accent-color);
}

.tip-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
    text-align: center;
}

.tip-body {
    flex: 1;
}

.tip-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.tip-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.tip-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.tips-footer {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(0, 168, 204, 0.1);
}

.tip-tip {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-radius: 12px;
    border-left: 4px solid #f39c12;
    margin-bottom: var(--spacing-md);
}

.tip-tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-tip-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.tip-tip-text strong {
    color: #d68910;
}

.tips-link-text {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
}

.tips-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tips-link:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .tech-specs-title,
    .description-title,
    .features-title,
    .tips-title {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .tech-card--full {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-card--full .tech-card-icon {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }
    
    .description-block {
        flex-direction: column;
    }
    
    .description-block-number {
        min-width: auto;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-number {
        min-width: auto;
    }
    
    .tip-tip {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tech-specs-modern,
    .product-description-modern,
    .features-modern,
    .why-choose-modern,
    .tips-modern {
        padding: var(--spacing-md);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}