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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ===========================
   TIMER BAR - STICKY
   =========================== */
.timer-bar {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timer-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timer-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer {
    display: flex;
    gap: 6px;
    align-items: center;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 10px;
    border-radius: 6px;
    min-width: 45px;
}

.timer-unit span:first-child {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    font-size: 9px;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
}

.timer-separator {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.8;
}

/* ===========================
   HERO SECTION - Product Layout
   =========================== */
.hero {
    background: #ffffff;
    padding: 20px 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Product Image */
.hero-image {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
    max-width: 400px;
}

/* Product Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.2;
}

/* Product Pricing */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 36px;
    font-weight: 800;
    color: #2ECC71;
}

.product-price-old {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.savings-badge {
    background: #2ECC71;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Star Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 14px;
    color: #666;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.benefit-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: #2ECC71;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-list-item span {
    font-size: 14px;
    line-height: 1.5;
    color: #111111;
}

/* Offer Label */
.offer-label {
    font-size: 15px;
    color: #111111;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.offer-label strong {
    font-weight: 700;
}

/* Urgency Banner */
.urgency-banner {
    background: #111111;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
}

.urgency-icon {
    font-size: 18px;
}

/* Hero Offers Grid */
.hero-offers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hero-offer-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-offer-featured {
    border: 3px solid #f97316;
}

/* Offer Badge 50 */
.offer-badge-50 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f59e0b;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

.badge-number {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.badge-icon {
    font-size: 14px;
    margin-top: -2px;
}

.offer-card-image {
    margin-bottom: 12px;
    width: 100%;
}

.offer-card-image img {
    max-width: 120px;
    width: 100%;
    margin: 0 auto;
}

.offer-card-title {
    font-size: 14px;
    font-weight: 400;
    color: #111111;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

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

.offer-price {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.offer-price-old {
    font-size: 14px;
    color: red;
    text-decoration: line-through;
}

.urgency-text {
    font-size: 16px;
    font-weight: 400;
}
.btn-offer {
    display: block;
    background: #f97316;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-offer:hover {
    background: #cc5f12;
    transform: scale(1.02);
}

/* ===========================
   OFFERS SECTION (OLD)
   =========================== */
.offers {
    padding: 40px 0;
    background: #ffffff;
}

.offers-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111111;
}

.offers-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.offer-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid #f3f4f6;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.offer-featured {
    border: 3px solid #f97316;
}

.badge-bestseller {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-bestseller-hero {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: max-content;
}

.offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-image {
    margin-bottom: 15px;
}

.offer-image img {
    max-width: 180px;
    margin: 0 auto;
}

.offer-quantity {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111111;
}

.offer-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-size: 32px;
    font-weight: 800;
    color: #f97316;
}

.offer-savings {
    font-size: 13px;
    color: #2ECC71;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-cta {
    display: inline-block;
    background: #111111;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 320px;
}

.btn-cta:hover {
    background: #f97316;
    transform: scale(1.02);
}

/* ===========================
   TRUST SECTION - COMPACT
   =========================== */
.trust-section {
    padding: 10px 0;
    background: #ffffff;
}

.trust-title {
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111111;
}

/* Compact Review */
.compact-review {
    background: #f0fdf4;
    border: 2px dashed #2ECC71;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.review-name {
    font-weight: 700;
    font-size: 14px;
    color: #111111;
}

.verified-icon {
    width: 16px;
    height: 16px;
    fill: #2ECC71;
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-quote {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}
/* Video Slider Wrapper */
.video-slider-wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.video-slider-wrapper::-webkit-scrollbar {
    display: none;
}

/* Video Slider */
.video-slider {
    display: flex;
    gap: 12px;
    animation: scroll 20s linear infinite;
}

.video-slider:hover {
    animation-play-state: paused;
}

.video-slider.paused {
    animation-play-state: paused;
}

.video-item {
    position: relative;
    flex-shrink: 0;
    width: 200px;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: transparent;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.video-player[poster] {
    background-size: cover;
    background-position: center;
}

/* Empêcher le plein écran sur mobile */
.video-player::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.video-player::-webkit-media-controls {
    overflow: hidden !important;
}

.video-player[controls] {
    max-height: 100%;
}

.play-btn {
    position: absolute;
    top: 85%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #2ECC71;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    z-index: 10;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #27ae60;
}

.play-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    margin-left: 2px;
}

.play-btn.hidden {
    display: none;
}

/* Animation de défilement */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 4 - 48px));
    }
}

/* Responsive */
@media (min-width: 768px) {
    .video-item {
        width: 250px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 4 - 48px));
        }
    }
}

/* ===========================
   BEFORE/AFTER SECTION
   =========================== */
.before-after {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff5ed 0%, #ffedd5 100%);
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #111111;
}

.comparison-grid {
    display: grid;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.comparison-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.badge-before {
    background: #E63946;
}

.badge-after {
    background: #2ECC71;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
}

.comparison-item.negative {
    background: #fef2f2;
}

.comparison-item.positive {
    background: #f0fdf4;
}

.item-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-item.negative .item-icon {
    stroke: #E63946;
}

.comparison-item.positive .item-icon {
    stroke: #2ECC71;
}

.comparison-item span {
    font-size: 14px;
    line-height: 1.4;
    color: #111111;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (min-width: 768px) {
    .timer-bar .container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .timer-text {
        font-size: 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .hero-image {
        padding: 60px 30px;
    }

    .hero-image img {
        max-width: 450px;
    }

    .product-title {
        font-size: 32px;
    }

    .product-price {
        font-size: 42px;
    }

    .benefit-list-item span {
        font-size: 15px;
    }

    .hero-offers {
        gap: 16px;
    }

    .hero-offer-card {
        padding: 20px;
    }

    .offer-badge-50 {
        width: 55px;
        height: 55px;
        top: 12px;
        right: 12px;
    }

    .badge-number {
        font-size: 22px;
    }

    .badge-icon {
        font-size: 15px;
    }

    .offer-card-image img {
        max-width: 160px;
    }

    .offer-card-title {
        font-size: 14px;
        font-weight: 400;
    }

    .offer-card-pricing {
        flex-direction: row;
        gap: 8px;
    }

    .offer-price {
        font-size: 24px;
    }

    .offer-price-old {
        font-size: 15px;
    }

    .btn-offer {
        font-size: 13px;
        padding: 13px 20px;
    }

    .offers {
        padding: 60px 0;
    }

    .offers-title {
        font-size: 34px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-section {
        padding: 50px 0;
    }

    .trust-title {
        font-size: 26px;
        text-align: center;
    }

    .video-slider {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 34px;
    }

    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-image img {
        height: 260px;
    }
}

/* ===========================
   RESPONSIVE - DESKTOP
   =========================== */
@media (min-width: 1024px) {
    .hero {
        padding: 60px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }

    .hero-image {
        padding: 80px 40px;
    }

    .hero-image img {
        max-width: 550px;
    }

    .product-title {
        font-size: 38px;
    }

    .product-price {
        font-size: 48px;
    }

    .benefit-list-item span {
        font-size: 16px;
    }

    .offer-label {
        font-size: 16px;
    }

    .urgency-banner {
        font-size: 16px;
        padding: 14px 24px;
    }

    .hero-offers {
        gap: 20px;
    }

    .hero-offer-card {
        padding: 24px;
    }

    .offer-badge-50 {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }

    .badge-number {
        font-size: 24px;
    }

    .badge-icon {
        font-size: 16px;
    }

    .offer-card-image img {
        max-width: 200px;
    }

    .offer-card-title {
        font-size: 18px;
    }

    .offer-price {
        font-size: 26px;
    }

    .offer-price-old {
        font-size: 16px;
    }

    .btn-offer {
        font-size: 15px;
        padding: 16px 28px;
    }

    .offers {
        padding: 80px 0;
    }

    .offers-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .offer-card {
        padding: 35px;
    }

    .offer-image img {
        max-width: 220px;
    }

    .trust-section {
        padding: 70px 0;
    }

    .trust-title {
        font-size: 30px;
    }

    .compact-review {
        padding: 20px;
    }

    .review-avatar {
        width: 60px;
        height: 60px;
    }

    .review-name {
        font-size: 16px;
    }

    .review-quote {
        font-size: 15px;
    }

    .before-after {
        padding: 80px 0;
    }

    .section-title {
        font-size: 40px;
    }

    .comparison-card {
        padding: 35px;
    }

    .comparison-image img {
        height: 300px;
    }

    .comparison-item span {
        font-size: 15px;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-offer-card,
.offer-card,
.video-item,
.comparison-card {
    animation: fadeIn 0.6s ease-out;
}

/* Staggered animation delay */
.hero-offer-card:nth-child(1) { animation-delay: 0.1s; }
.hero-offer-card:nth-child(2) { animation-delay: 0.2s; }