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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fef7e0 0%, #fff8e1 100%);
}

/* Variables CSS */
:root {
    --primary-color: #f59e0b;
    --secondary-color: #fbbf24;
    --accent-color: #f97316;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #fffbeb;
    --bg-white: #ffffff;
    --gradient-sunny: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    --gradient-soft: linear-gradient(135deg, #fef7e0 0%, #fff8e1 100%);
    --shadow-soft: 0 4px 20px rgba(245, 158, 11, 0.1);
    --shadow-strong: 0 8px 40px rgba(245, 158, 11, 0.2);
    --border-radius: 16px;
    --border-radius-small: 8px;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-sunny);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunny);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.sunny-text {
    background: var(--gradient-sunny);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.btn-primary {
    background: var(--gradient-sunny);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-strong);
    max-width: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(245, 158, 11, 0.3);
}

.trust-signal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Hero Visual avec éléments flottants */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-elements > div {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.sun-element {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.sparkle-element {
    top: 60%;
    right: 10%;
    font-size: 2rem;
    animation-delay: 1s;
}

.heart-element {
    top: 30%;
    right: 60%;
    animation-delay: 2s;
}

.leaf-element {
    top: 80%;
    right: 40%;
    font-size: 2.5rem;
    animation-delay: 3s;
}

.smile-element {
    top: 50%;
    right: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Magic */
.magic-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.magic-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Section Témoignages */
.testimonials-section {
    padding: 120px 0;
    background: var(--gradient-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-sunny);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Section Contact */
.contact-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
}

.benefit-icon {
    font-size: 1.3rem;
}

/* Formulaire Sunny */
.contact-form {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    background: var(--bg-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    color: var(--primary-color);
    font-weight: bold;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-sunny);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius-small);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.form-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-social p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .magic-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .floating-elements > div {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Animations supplémentaires */
.hero-content > * {
    animation: slideInUp 0.8s ease-out;
}

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

/* =========================
   SECTION PRODUITS INNOVANTS
   ========================= */

.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fed7aa 100%);
    position: relative;
    overflow: hidden;
}

.products-section::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="20" cy="20" r="1" fill="%23fbbf24" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23f59e0b" opacity="0.15"/><circle cx="60" cy="80" r="1" fill="%23f97316" opacity="0.1"/></svg>');
    animation: sparkleBackground 20s linear infinite;
}

@keyframes sparkleBackground {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    margin: 80px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.03) 0%, rgba(251, 191, 36, 0.03) 100%);
    pointer-events: none;
}

.product-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-bottom: 30px;
}

.product-illustration {
    position: relative;
    z-index: 2;
}

.product-svg {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.product-card:hover .product-svg {
    transform: scale(1.1) rotate(5deg);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

.product-glow.golden {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
}

@keyframes glowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Animations pour les particules SVG */
.floating-particle {
    animation: floatParticle 4s ease-in-out infinite;
}

.floating-particle:nth-child(1) { animation-delay: 0s; }
.floating-particle:nth-child(2) { animation-delay: 1s; }
.floating-particle:nth-child(3) { animation-delay: 2s; }
.floating-particle:nth-child(4) { animation-delay: 3s; }

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
}

.sparkle-particle {
    animation: sparkleEffect 2s ease-in-out infinite;
}

.sparkle-particle:nth-child(odd) { animation-delay: 0.5s; }

@keyframes sparkleEffect {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Animation pour le sérum mood */
.mood-liquid {
    animation: moodShift 6s ease-in-out infinite;
}

@keyframes moodShift {
    0%, 100% { 
        filter: hue-rotate(0deg) brightness(1);
    }
    33% { 
        filter: hue-rotate(30deg) brightness(1.2);
    }
    66% { 
        filter: hue-rotate(-15deg) brightness(0.9);
    }
}

/* Animation pour le baume doré */
.golden-balm {
    animation: goldenShimmer 4s ease-in-out infinite;
}

@keyframes goldenShimmer {
    0%, 100% { 
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.3) saturate(1.2);
        transform: scale(1.05);
    }
}

.product-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.product-subtitle {
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.feature-icon {
    font-size: 1.2rem;
    min-width: 30px;
}

.feature span:last-child {
    color: var(--text-color);
    font-size: 0.95rem;
}

.product-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.product-price {
    text-align: center;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding-top: 20px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.price-note {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.products-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 25px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.products-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.products-cta strong {
    color: var(--accent-color);
    font-size: 1.4rem;
}

/* Responsive pour les produits */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px 0;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .product-svg {
        width: 120px;
        height: 120px;
    }
    
    .product-visual {
        height: 150px;
        margin-bottom: 25px;
    }
    
    .product-content h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.7rem;
    }
    
    .products-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .products-cta p {
        font-size: 1.1rem;
    }
}

/* =========================
   RESPONSIVE DESIGN COMPLET
   ========================= */

/* Tablettes et petits écrans */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .magic-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

/* Smartphones et petites tablettes */
@media (max-width: 768px) {
    /* Header mobile */
    .header {
        padding: 15px 0;
    }
    
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    /* Hero mobile */
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-content h1 .sunny-text {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-visual {
        height: 200px;
        margin-top: 40px;
    }
    
    .floating-elements > div {
        font-size: 2rem;
    }
    
    /* Sections mobiles */
    .magic-section,
    .products-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Grilles mobiles */
    .magic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .magic-card {
        padding: 30px 20px;
    }
    
    .magic-card h3 {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px 0;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .product-svg {
        width: 120px;
        height: 120px;
    }
    
    .product-visual {
        height: 150px;
        margin-bottom: 25px;
    }
    
    .product-content h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.7rem;
    }
    
    .products-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .products-cta p {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Contact mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* Empêche le zoom sur iOS */
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand,
    .footer-social {
        width: 100%;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero très petit écran */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 .sunny-text {
        font-size: 2rem;
    }
    
    .btn-primary {
        font-size: 1rem;
        padding: 15px 25px;
    }
    
    /* Cartes plus compactes */
    .magic-card,
    .product-card,
    .testimonial-card {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Produits très petit écran */
    .product-svg {
        width: 100px;
        height: 100px;
    }
    
    .product-visual {
        height: 120px;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    /* Formulaire très petit écran */
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    /* Navigation mobile simplifiée */
    .nav {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
}

/* Écrans larges (desktop) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content h1 .sunny-text {
        font-size: 4.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, minmax(500px, 1fr));
        gap: 80px;
    }
    
    .magic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Règles spéciales pour le mode paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-visual {
        height: 150px;
    }
    
    .magic-section,
    .products-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0;
    }
}

/* Accessibilité et préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-particle,
    .sparkle-particle,
    .mood-liquid,
    .golden-balm {
        animation: none !important;
    }
}

/* Support tactile amélioré */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .magic-card,
    .product-card,
    .testimonial-card {
        transform: none !important;
    }
    
    .btn-primary:active {
        transform: scale(0.98);
    }
    
    .product-card:active .product-svg {
        transform: scale(1.05);
    }
}
