* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #ffeef8, #f8f9ff);
    color: #333;
    line-height: 1.6;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: #ff003c;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    font-size: 18px;
}

.hero {
    padding: 40px 0;
    text-align: center;
}

h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #d0006f;
}

.highlight {
    background: linear-gradient(90deg, #ff00c8, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 22px;
    color: #e91e63;
    margin-bottom: 25px;
}

.before-after img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    display: block;
}

.price-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
}

.new-price {
    font-size: 48px;
    font-weight: bold;
    color: #e91e63;
}

.save {
    color: #00c853;
    font-weight: bold;
}

.cta-btn {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 18px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.main-cta {
    background: #ff003c;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.4);
}

.main-cta:hover {
    transform: scale(1.05);
    background: #e00034;
}

.yellow {
    background: #ffd600;
    color: #000;
}

.trust {
    color: #666;
    font-size: 16px;
}

.timer-section {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
}

#countdown {
    font-size: 36px;
    font-weight: bold;
    color: #ff003c;
}

.features {
    padding: 60px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #d0006f;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    background: #fff0f8;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.final-cta {
    background: linear-gradient(135deg, #ff00c8, #ff6b00);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.small {
    font-size: 18px;
    opacity: 0.9;
}

/* Mobile First Responsive */
@media (min-width: 768px) {
    h1 {
        font-size: 42px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-btn {
        width: auto;
        display: inline-block;
    }
}

/* גלריית תמונות חדשה */
.product-gallery {
    margin: 30px 0;
}

.main-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    display: block;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding: 0 10px;
}

.thumb {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.thumb:hover {
    transform: scale(1.05);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* רספונסיביות לטאבלט ומעלה */
@media (min-width: 768px) {
    .thumb-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0;
    }

    .main-image img {
        max-width: 500px;
    }
}

/* איך משתמשים – עיצוב מדליק */
.how-to-use {
    padding: 70px 0;
    background: linear-gradient(to bottom, #fff8fd, #f5e8ff);
    text-align: center;
}

.how-to-use h2 {
    font-size: 30px;
    color: #c9006d;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.step {
    background: white;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(201, 0, 109, 0.1);
    position: relative;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #ff003c;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.4);
}

.step-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    color: #d0006f;
    margin: 10px 0;
}

.tip-box {
    background: #ffebfe;
    padding: 20px;
    border-radius: 16px;
    font-size: 20px;
    color: #c9006d;
    max-width: 700px;
    margin: 0 auto;
    border: 2px dashed #ff6bc1;
}

/* רספונסיביות */
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* חוות דעת לקוחות */
.reviews {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.reviews h2 {
    font-size: 30px;
    color: #c9006d;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: #fff8fd;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(201, 0, 109, 0.12);
    border: 2px solid #ffe0f5;
}

.stars {
    color: #ffd600;
    font-size: 28px;
    margin-bottom: 12px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
    margin: 15px 0;
    color: #333;
}

.reviewer {
    color: #777;
    font-size: 16px;
}

.reviewer span {
    background: #c9f7c9;
    color: #006400;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.reviews-footer p {
    font-size: 22px;
    color: #d0006f;
    margin-bottom: 25px;
}

.big {
    font-size: 26px !important;
    padding: 22px !important;
}

/* רספונסיביות */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* פוטר משפטי ואמין */
.footer-disclaimer {
    background: #2c1a38;
    color: #eee;
    padding: 40px 20px;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
}

.footer-disclaimer strong {
    color: #ff6bc1;
}

.footer-disclaimer small {
    font-size: 13px;
    color: #aaa;
    display: block;
    margin-top: 15px;
}

.copyright {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}


/* שלב 4 וקישור */
.cream-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6bc1, #ff8ad4);
    color: white !important;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 193, 0.4);
    transition: all 0.3s;
    margin: 10px 0;
}


.cream-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 193, 0.5);
}


/*תמונה קרם רטינול*/

.cream-cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(45deg, #ff9eea, #ffb3f6);
    color: white !important;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(255, 140, 220, 0.4);
    transition: all 0.3s;
    margin: 10px 0;
}

.cream-img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cream-text {
    text-align: right;
    line-height: 1.3;
}

.small-price {
    font-size: 15px;
    opacity: 0.9;
}

.cream-cta-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 220, 0.5);
}



/*איך המכשיר עובד + למה הוא כל כך בטוח ויעיל*/

.how-it-works {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff8fd, #fdf4ff);
    text-align: center;
}

.how-it-works h2 {
    font-size: 28px;
    color: #c9006d;
    margin-bottom: 50px;
}

.science-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.science-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(201, 0, 109, 0.12);
}

.science-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.science-item h3 {
    color: #d0006f;
    margin: 15px 0;
    font-size: 22px;
}

.science-summary {
    background: #ffebfe;
    padding: 30px;
    border-radius: 20px;
    font-size: 20px;
    color: #333;
    border: 2px dashed #ff6bc1;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .science-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .science-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.floating-device {
    text-align: center;
    margin: 30px 0 25px 0;
    animation: float 4s ease-in-out infinite;
}

.floating-device img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    animation: rotate 12s linear infinite, glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255, 105, 193, 0.6));
}

/* אנימציית ציפה קלה */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}



/* זוהר פולסינג */
@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 105, 193, 0.6));
    }

    to {
        filter: drop-shadow(0 0 35px rgba(255, 80, 200, 0.9));
    }
}

/* במובייל קצת יותר קטן */
@media (max-width: 480px) {
    .floating-device img {
        width: 110px;
        height: 110px;
    }
}