:root {
    --primary-color: #D23669;
    --primary-light: #FF4F8B;
    --primary-dark: #A82952;
    --text-dark: #2C1810;
    --text-light: #6B5E59;
    --background: #FFF5F8;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background) 0%, #fdf2f8 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.pre-title {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
    position: relative;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    line-height: 1.6;
}

.price-badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.2rem;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
    width: 100%;
    min-width: 0;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 133.33%; /* 600x800 aspect ratio (800/600 = 1.333) */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.floating-reviews {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    max-width: calc(100% - 60px);
}

.review-card {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    will-change: opacity;
}

.review-card.visible {
    opacity: 1;
}

.stars {
    color: var(--gold);
    margin-bottom: 5px;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-text {
    padding: 20px 0;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text .highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.about-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.about-text .emphasis {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--background) 0%, #fdf2f8 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
    position: relative;
}

.about-text .emphasis::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

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

/* Chapters Section */
.chapters {
    padding: 100px 0;
    background: var(--background);
}

.chapters-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.chapter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.chapter-number {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.chapter-content {
    text-align: center;
}

.chapter-content h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.chapter-content p {
    color: var(--text-light);
    font-size: 1rem;
}

.chapter-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.value-content {
    text-align: center;
}

.value-content h2 {
    color: var(--white);
    margin-bottom: 50px;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--white);
    margin-bottom: 15px;
}



/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient);
}

.pricing-features {
    margin: 30px 0;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}



.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.final-action {
    margin-top: 40px;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--white);
    opacity: 0.9;
}

/* Footer */
footer {
    padding: 50px 0;
    background: var(--text-dark);
    color: var(--white);
}

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

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 10px;
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Footer Trust Section */
.footer-trust-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.footer-trust-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(210, 54, 105, 0.2);
    padding: 20px;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.trust-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.3;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }

    .hero-description {
        border-left: none;
        padding-left: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .image-slider {
        padding-bottom: 120%; /* Slightly less tall on tablet */
    }

    .floating-reviews {
        bottom: 20px;
        right: 20px;
        width: 220px;
        height: 90px;
        max-width: calc(100% - 40px);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .hero {
        padding: 40px 0;
        overflow: hidden;
    }

    .hero .container {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .hero .subtitle {
        font-size: 1.3rem;
        padding: 0 10px;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 10px;
        max-width: 100%;
        word-wrap: break-word;
    }

    .pre-title {
        font-size: 0.85rem;
        padding: 6px 12px;
        max-width: fit-content;
        margin: 0 auto;
    }

    .cta-primary {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .price-badge {
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 15px;
        margin: 0 auto;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        padding: 15px 20px;
        margin: 0 auto;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
        width: 100%;
    }

    .badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin: 0 auto;
    }

    .hero-image {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .image-slider {
        padding-bottom: 100%; /* Square aspect ratio on mobile */
        width: 100%;
    }

    .floating-reviews {
        bottom: 15px;
        right: 15px;
        width: 200px;
        height: 80px;
        padding: 10px;
        max-width: calc(100% - 30px);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial {
        padding: 25px;
        width: 100%;
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chapters-list {
        gap: 30px;
    }

    .chapter-item {
        width: 100%;
        max-width: 100%;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        order: 2;
        padding: 0;
    }

    .about-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text p {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .about-text .highlight {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .about-text .emphasis {
        font-size: 1.2rem;
        padding: 20px;
        margin-top: 25px;
    }

    .footer-trust-section {
        padding: 30px 0;
    }

    .footer-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
    }

    .footer-trust-item {
        gap: 12px;
        padding: 15px;
    }

    .footer-trust-item i {
        font-size: 2rem;
        padding: 15px;
        min-width: 50px;
        height: 50px;
    }

    .trust-text strong {
        font-size: 1rem;
    }

    .trust-text span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        padding: 0 5px;
        line-height: 1.2;
        max-width: 100%;
    }

    .hero .subtitle {
        font-size: 1.1rem;
        padding: 0 5px;
        line-height: 1.3;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 5px;
        max-width: 100%;
    }

    .price-badge {
        flex-direction: row;
        padding: 10px;
        max-width: 280px;
    }

    .original-price {
        font-size: 1rem;
    }

    .current-price {
        font-size: 1.5rem;
    }

    .btn-primary {
        padding: 12px 15px;
        font-size: 1rem;
        max-width: 280px;
    }

    .trust-badges {
        margin-top: 20px;
    }

    .badge {
        max-width: 280px;
        font-size: 0.9rem;
    }

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

    .image-slider {
        padding-bottom: 90%; /* Slightly less tall on small mobile */
    }

    .floating-reviews {
        bottom: 10px;
        right: 10px;
        width: 180px;
        height: 70px;
        padding: 8px;
        max-width: calc(100% - 20px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .about {
        padding: 40px 0;
    }

    .about-content {
        gap: 30px;
        margin-bottom: 40px;
    }

    .about-image {
        max-width: 320px;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .about-text .highlight {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .about-text .highlight::after {
        width: 40px;
        height: 2px;
    }

    .about-text .emphasis {
        font-size: 1.1rem;
        padding: 18px;
        margin-top: 20px;
        line-height: 1.5;
    }

    .about-text .emphasis::before {
        font-size: 2.5rem;
        top: -8px;
        left: 12px;
    }

    .footer-trust-section {
        padding: 25px 0;
    }

    .footer-trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .footer-trust-item {
        gap: 10px;
        padding: 15px 10px;
    }

    .footer-trust-item i {
        font-size: 1.8rem;
        padding: 12px;
        min-width: 45px;
        height: 45px;
        margin-bottom: 3px;
    }

    .trust-text strong {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .trust-text span {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

/* Discount Popup */
.discount-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.3s ease;
}

.discount-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    will-change: transform;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.popup-close i {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.popup-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #D23669 0%, #FF4F8B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-image img {
    width: 100%;
    height: 123%;
    object-fit: contain;
    object-position: center;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 12px 18px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.discount-percent {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.discount-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 2px;
}

.popup-text {
    padding: 30px;
    text-align: center;
}

.popup-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.popup-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.new-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.countdown-container {
    margin-bottom: 25px;
}

.countdown-label {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.time-unit {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 12px;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.time-unit label {
    display: block;
    font-size: 0.7rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.popup-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

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

.popup-btn i {
    transition: transform 0.3s ease;
}

.popup-btn:hover i {
    transform: translateX(5px);
}

.popup-guarantee {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.popup-guarantee i {
    color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Popup Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px;
    }

    .popup-text {
        padding: 20px;
    }

    .popup-text h3 {
        font-size: 1.5rem;
    }

    .popup-text p {
        font-size: 1rem;
    }

    .time-unit {
        padding: 12px 8px;
        min-width: 50px;
    }

    .time-unit span {
        font-size: 1.3rem;
    }

    .time-unit label {
        font-size: 0.6rem;
    }

    .popup-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-image {
        height: 200px;
    }

    .discount-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }

    .discount-percent {
        font-size: 1rem;
    }

    .discount-text {
        font-size: 0.7rem;
    }

    .popup-text h3 {
        font-size: 1.3rem;
    }

    .new-price {
        font-size: 1.7rem;
    }

    .time-unit {
        padding: 10px 6px;
        min-width: 45px;
    }

    .time-unit span {
        font-size: 1.1rem;
    }

    .countdown-timer {
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0;
    }

    .hero .subtitle {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0;
    }

    .hero-description {
        padding: 0;
    }

    .pre-title {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .price-badge {
        padding: 8px;
        max-width: 250px;
    }

    .original-price {
        font-size: 0.9rem;
    }

    .current-price {
        font-size: 1.3rem;
    }

    .btn-primary {
        padding: 10px;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .badge {
        max-width: 250px;
        font-size: 0.8rem;
    }

    .hero-image {
        max-width: 280px;
    }

    .image-slider {
        padding-bottom: 85%;
    }

    .floating-reviews {
        width: 160px;
        height: 60px;
        padding: 6px;
        font-size: 0.8rem;
        max-width: calc(100% - 20px);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about {
        padding: 30px 0;
    }

    .about-content {
        gap: 25px;
        margin-bottom: 30px;
    }

    .about-image {
        max-width: 280px;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .about-text .highlight {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .about-text .highlight::after {
        width: 35px;
    }

    .about-text .emphasis {
        font-size: 1rem;
        padding: 15px;
        margin-top: 18px;
    }

    .about-text .emphasis::before {
        font-size: 2rem;
        top: -5px;
        left: 10px;
    }
} 