/* ===================================
   MADAME NOARE - Premium Stylesheet
   Design inspiré de grands magazines de luxe
   =================================== */

/* === Variables CSS Premium === */
:root {
    --primary-color: #C9A961;
    --primary-dark: #A68644;
    --secondary-color: #1a1a1a;
    --accent-color: #8B4513;
    --text-color: #2c2c2c;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #FAF9F7;
    --bg-cream: #FFF8F0;
    --white: #ffffff;
    --border-color: #e8e8e8;
    --hover-color: #B39654;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', -apple-system, system-ui, sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

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

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* === Container === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* === Typography Premium === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-color);
}

/* === Header & Navigation === */
.top-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.85;
}

.social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}

.header-date {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    border-bottom: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 32px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.search-btn {
    font-size: 1.25rem;
    color: var(--text-color);
    transition: var(--transition);
    padding: 8px;
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* === Hero Section Premium === */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-category {
    display: inline-block;
    background: rgba(201, 169, 97, 0.95);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
    font-weight: 400;
}

/* === Buttons Premium === */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8125rem;
    transition: var(--transition);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* === Featured Section Premium === */
.featured-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.featured-large,
.featured-small {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.featured-large:hover,
.featured-small:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.featured-image {
    position: relative;
    overflow: hidden;
    display: block;
}

.featured-large .featured-image {
    height: 500px;
}

.featured-small .featured-image {
    height: 280px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-large:hover .featured-image img,
.featured-small:hover .featured-image img {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.featured-content {
    padding: 36px;
}

.featured-small .featured-content {
    padding: 24px;
}

.article-date {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.featured-content h3 {
    font-size: 1.875rem;
    margin-bottom: 16px;
    line-height: 1.25;
}

.featured-small .featured-content h3 {
    font-size: 1.25rem;
}

.featured-content h3 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.featured-content h3 a:hover {
    color: var(--primary-color);
}

.featured-content p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
}

/* === Section Headers Premium === */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--primary-color);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
}

.section-title.center {
    text-align: center;
    margin-bottom: 64px;
}

.view-all {
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.view-all i {
    transition: var(--transition);
}

.view-all:hover i {
    transform: translateX(4px);
}

/* === Trending Section Premium === */
.trending-section {
    padding: 100px 0;
    background-color: var(--white);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.article-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.article-image {
    display: block;
    overflow: hidden;
    height: 280px;
    position: relative;
}

.article-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.article-card:hover .article-image::after {
    opacity: 1;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 32px;
}

.article-category {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.article-category:hover {
    color: var(--primary-dark);
}

.article-content h3 {
    font-size: 1.375rem;
    margin: 16px 0;
    line-height: 1.35;
}

.article-content h3 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.article-content h3 a:hover {
    color: var(--primary-color);
}

.article-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* === Newsletter Section Premium === */
/* === Morning Boost Section === */
.morning-boost-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FAF9F7 100%);
}

.morning-boost-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.morning-boost-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.morning-boost-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.boost-icon {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.morning-boost-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
}

.boost-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 5px 0 0 0;
    font-style: italic;
}

.morning-boost-content {
    position: relative;
    z-index: 1;
}

.boost-day {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.boost-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.boost-message {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.boost-action {
    background: #FFF8F0;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 25px;
}

.boost-action strong {
    display: block;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boost-action p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.boost-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.boost-category span {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.boost-share-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.boost-share-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.boost-share-btn i {
    font-size: 1.1rem;
}

/* === Newsletter Section === */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1rem;
    border-radius: 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255,255,255,0.1);
}

.newsletter-privacy {
    font-size: 0.8125rem;
    opacity: 0.7;
    font-weight: 400;
}

/* === Categories Section Premium === */
.categories-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: var(--transition);
    z-index: 1;
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card h3,
.category-card p {
    position: relative;
    z-index: 2;
    margin: 0;
}

.category-card h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-card p {
    font-size: 0.9375rem;
    opacity: 0.95;
    font-weight: 400;
}

/* === Footer Premium === */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
    color: var(--white);
    padding: 80px 0 32px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 28px;
    font-size: 0.9375rem;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 8px;
}

.footer .social-links {
    margin-top: 28px;
    gap: 16px;
}

.footer .social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.footer .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.875rem;
    font-weight: 400;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-menu {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-excerpt {
        font-size: 1.125rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-large .featured-image {
        height: 350px;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 36px 36px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 1.375rem;
        letter-spacing: 2px;
    }
    
    .featured-content,
    .article-content {
        padding: 24px;
    }
}

/* ===================================
   SHOP PAGE STYLES - MACHINE À CASH 💰
   =================================== */

/* Shop Hero */
.shop-hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: 4px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Shop Filters */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.filter-btn {
    padding: 12px 32px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Featured Banner */
.featured-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 24px 0;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white);
    text-align: center;
}

.banner-content h2 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.banner-content i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.banner-content strong {
    background: var(--white);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Products Section */
.shop-products {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.products-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    color: var(--primary-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.product-badge.new {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.product-badge.promo {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Content */
.product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 50px;
}

.product-brand {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.product-rating i {
    color: #FCD34D;
    font-size: 0.875rem;
}

.product-rating span {
    color: var(--text-lighter);
    font-size: 0.8125rem;
    margin-left: 4px;
}

.product-description {
    font-size: 0.9375rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.old-price {
    font-size: 1rem;
    color: var(--text-lighter);
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 8px;
}

.btn-shop {
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    white-space: nowrap;
}

.btn-shop:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-shop i {
    font-size: 1rem;
}

/* Premium Membership Banner */
.premium-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    padding: 80px 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.premium-banner::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"><circle cx="50" cy="50" r="40" fill="rgba(201,169,97,0.05)"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.premium-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.premium-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.premium-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
    font-weight: 800;
}

.premium-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.5);
}

/* Newsletter Specific to Shop */
.newsletter {
    background: var(--bg-cream);
    padding: 80px 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.newsletter-privacy {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 16px;
}

/* Affiliate Disclaimer */
.affiliate-disclaimer {
    background: rgba(201, 169, 97, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 16px;
    display: inline-block;
    font-size: 0.8125rem;
}

.affiliate-disclaimer i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Shop Link in Nav */
.shop-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.shop-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shop-link i {
    font-size: 1rem;
}

/* RESPONSIVE - SHOP */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .banner-content h2 {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .shop-hero {
        padding: 50px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .shop-filters {
        gap: 12px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }
    
    .premium-content h2 {
        font-size: 1.75rem;
    }
    
    .premium-content i {
        font-size: 3rem;
    }
}

/* ===================================
   ARGENT & CARRIÈRE PAGE STYLES 💰
   =================================== */

/* Financial Tools Section */
.financial-tools {
    padding: 80px 0;
    background: var(--bg-light);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tool-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tool-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(201,169,97,0.05) 0%, rgba(255,255,255,1) 50%);
    box-shadow: var(--shadow-lg);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tool-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.tool-header i {
    font-size: 3rem;
    color: var(--primary-color);
}

.tool-header h3 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--secondary-color);
}

.tool-description {
    font-size: 1.0625rem;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.tool-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

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

.tool-features i {
    color: #10B981;
    font-size: 1.125rem;
}

.tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    gap: 16px;
}

.tool-bonus {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tool-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Ad Banner */
.ad-banner {
    padding: 40px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ad-placeholder {
    background: rgba(201, 169, 97, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

/* Money-Making Tools */
.money-tools {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.money-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.money-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.money-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.money-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.money-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.money-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: scale(1.05);
}

/* Premium Teaser */
.premium-teaser {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.premium-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,97,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201,169,97,0.3);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.premium-box i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

.premium-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 32px;
    letter-spacing: 2px;
    font-weight: 800;
}

.premium-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.price small {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
}

.price-annual {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
}

.price-annual em {
    color: #10B981;
    font-weight: 700;
}

.guarantee {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-top: 20px;
}

/* Newsletter Stats */
.newsletter-stats {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-top: 16px;
    font-weight: 600;
}

/* RESPONSIVE - ARGENT PAGE */
@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .money-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tool-card {
        padding: 32px 24px;
    }
    
    .tool-header i {
        font-size: 2.5rem;
    }
    
    .tool-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tool-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .money-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-box {
        padding: 40px 24px;
    }
    
    .premium-box h2 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}