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

:root {
    --primary-pink: #FF4081;
    --secondary-pink: #FFE0E9;
    --apple-green: #4CAF50;
    --dark-charcoal: #212121;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --gold: #FFD700;
    --cta-yellow: #F7D633;
    --cta-yellow-dark: #F0C419;
    --cta-text-dark: #111111;
    --accent-pink-dark: #E6007E;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-charcoal);
    line-height: 1.6;
    background-color: var(--secondary-pink);
    padding-bottom: 100px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Sticky Top Banner */
.sticky-top-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink-dark));
    color: var(--white);
    padding: 10px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.flash-sale-img {
    max-width: 80px;
    height: auto;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.promo-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--secondary-pink) 100%);
    padding: 32px 0 40px;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.trust-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-pink);
}

.highlight-pink {
    color: var(--primary-pink);
}

.hero-subtext {
    text-align: center;
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--dark-charcoal);
}

.video-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9; /* Regular landscape video */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: none;
}

.hero-product-img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-cta-btn {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto 12px;
    background: linear-gradient(180deg, var(--cta-yellow), var(--cta-yellow-dark));
    color: var(--cta-text-dark);
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(240, 196, 25, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(240, 196, 25, 0.45);
}

.urgency-text {
    text-align: center;
    font-size: 14px;
    color: var(--primary-pink);
    font-weight: 600;
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 24px;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, var(--primary-pink), #c0392b);
    color: var(--white);
    padding: 45px 0;
}

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

@media (min-width: 480px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-item {
    text-align: center;
    padding: 18px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.problem-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.28);
}

.problem-thumbnail {
    width: 100%;
    max-width: 150px;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.problem-item p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Solution Section */
.solution-section {
    background: var(--white);
    padding: 40px 0;
}

.product-info-box {
    background: var(--secondary-pink);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.product-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-pink);
    margin-bottom: 12px;
    font-weight: 700;
}

.product-info-text {
    font-size: 15px;
    color: var(--dark-charcoal);
    line-height: 1.7;
}

.benefits-main-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ingredients-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ingredients-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.ingredients-carousel {
    display: flex;
    gap: 12px;
    animation: scrollIngredients 30s linear infinite;
}

.ingredients-carousel-wrapper:hover .ingredients-carousel {
    animation-play-state: paused;
}

@keyframes scrollIngredients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ingredient-item {
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
    text-align: center;
    padding: 14px 10px;
    background: var(--secondary-pink);
    border-radius: 16px;
}

.ingredient-thumbnail {
    width: 100%;
    max-width: 60px;
    height: auto;
    margin-bottom: 8px;
    border-radius: 12px;
    object-fit: cover;
}

.ingredient-item h3 {
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--primary-pink);
}

.ingredient-item p {
    font-size: 11px;
    color: var(--dark-charcoal);
    line-height: 1.5;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-gray);
    padding: 40px 0;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-card {
    display: none;
    width: 100%;
}

.testimonial-card.active {
    display: block;
}

.testimonial-img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C4C4C4;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dot.active {
    background: var(--primary-pink);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--secondary-pink) 0%, var(--white) 100%);
    padding: 50px 0;
}

.pricing-section-title {
    font-weight: 900 !important;
    letter-spacing: 2px;
    color: var(--accent-pink-dark);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin-bottom: 16px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.trust-badge {
    width: 100%;
    max-width: 55px;
    height: auto;
    object-fit: contain;
}

.price-card.best-value {
    border: 3px solid var(--primary-pink);
    background: linear-gradient(180deg, #fff5f8, var(--white));
    position: relative;
    box-shadow: 0 12px 36px rgba(230, 0, 126, 0.18);
}

.best-value-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink-dark));
    color: var(--white);
    padding: 10px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(230, 0, 126, 0.5);
    letter-spacing: 0.5px;
}

.price-card-header {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-pink-dark);
    margin-bottom: 4px;
    line-height: 1;
}

.savings {
    color: var(--white);
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink-dark));
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    background: rgba(255, 224, 233, 0.6);
    border-radius: 20px;
    padding: 20px 24px;
    border: 2px solid var(--secondary-pink);
}

.price-features li {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-charcoal);
}

.price-features li:last-child {
    margin-bottom: 0;
}

.price-features li::before {
    content: "✓";
    color: var(--accent-pink-dark);
    font-weight: 900;
    font-size: 20px;
    background: rgba(230, 0, 126, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-btn {
    width: 100%;
    padding: 18px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-btn.primary {
    background: linear-gradient(180deg, var(--cta-yellow), var(--cta-yellow-dark));
    color: var(--cta-text-dark);
    box-shadow: 0 8px 24px rgba(240, 196, 25, 0.4);
    border-color: rgba(240, 196, 25, 0.6);
}

.price-btn.secondary {
    background: linear-gradient(180deg, #fff0c2, var(--cta-yellow));
    color: var(--dark-charcoal);
    box-shadow: 0 6px 18px rgba(240, 196, 25, 0.25);
    border-color: rgba(240, 196, 25, 0.4);
}

@keyframes pulseBtn {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 24px rgba(240, 196, 25, 0.4);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(240, 196, 25, 0.5);
    }
}

.price-btn {
    animation: pulseBtn 2s ease-in-out infinite;
}

.price-btn.secondary {
    animation: pulseBtn 2.5s ease-in-out infinite;
}

.price-btn:hover {
    transform: translateY(-4px) scale(1.02);
    animation-play-state: paused;
}

.price-btn.primary:hover {
    box-shadow: 0 12px 32px rgba(240, 196, 25, 0.55);
}

.price-btn.secondary:hover {
    box-shadow: 0 10px 26px rgba(240, 196, 25, 0.4);
}

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

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--secondary-pink);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 16px 20px;
    background: var(--white);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Checkout Page */
.checkout-page {
    background: var(--secondary-pink);
    padding: 30px 0 100px;
}

.checkout-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.checkout-breadcrumb span:last-child {
    color: var(--accent-pink-dark);
    font-weight: 600;
}

.checkout-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-charcoal);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 30px;
    }

    .order-summary {
        order: -1;
    }
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.summary-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark-charcoal);
}

.summary-product {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.summary-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.summary-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-product-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark-charcoal);
}

.summary-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-pink-dark);
}

.summary-details {
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.summary-row.highlight {
    color: #666;
}

.free-text {
    color: var(--primary-pink);
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.summary-row.total {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-charcoal);
}

.summary-row.total span:last-child {
    color: var(--accent-pink-dark);
    font-size: 20px;
}



/* Checkout Form Container */
.checkout-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-charcoal);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.bundle-display {
    padding: 14px 16px;
    background: var(--secondary-pink);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-pink-dark);
    display: none;
}

#checkout-bundleSelect:disabled {
    display: none;
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.1);
}

.submit-order-btn {
    width: 100%;
    background: linear-gradient(180deg, var(--cta-yellow), var(--cta-yellow-dark));
    color: var(--cta-text-dark);
    border: none;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(240, 196, 25, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(240, 196, 25, 0.45);
}

.guarantee-text {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    line-height: 1.6;
}

/* Updated Sticky Bottom CTA for Checkout */
.sticky-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
}

.sticky-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: white;
}

.sticky-summary span:first-child {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.sticky-total {
    font-size: 22px;
    font-weight: 900;
}

@media (max-width: 480px) {
    .checkout-page {
        padding-top: 20px;
    }

    .checkout-heading {
        font-size: 26px;
    }
}

/* Sticky Bottom CTA */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-pink), #c0392b);
    padding: 8px 12px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

/* Dashboard Styles */
.dashboard-page {
    background: #f5f5f5;
    padding: 40px 0 80px;
    font-family: 'Poppins', sans-serif;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.dashboard-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(180deg, var(--cta-yellow), var(--cta-yellow-dark));
    color: var(--cta-text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ecf0f1;
    color: #34495e;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #e0e0e0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card.highlight {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink-dark));
    color: white;
}

.stat-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-details h3 {
    font-size: 28px;
    font-weight: 900;
    margin: 0;
}

.stat-details p {
    font-size: 14px;
    opacity: 0.8;
    margin: 4px 0 0 0;
}

/* Orders Section */
.orders-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.orders-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    color: #2c3e50;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead th {
    text-align: left;
    padding: 16px;
    font-weight: 600;
    font-size: 13px;
    color: #7f8c8d;
    border-bottom: 2px solid #ecf0f1;
    text-transform: uppercase;
}

.orders-table tbody tr {
    border-bottom: 1px solid #ecf0f1;
    transition: background 0.2s ease;
}

.orders-table tbody tr:hover {
    background: #fafafa;
}

.orders-table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #2c3e50;
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #fff3cd;
    color: #856404;
}

.no-orders {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #95a5a6;
    font-size: 16px;
}

.sticky-promo-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-bottom-cta .flash-sale-img {
    max-width: 45px;
    height: auto;
}

.sticky-bottom-cta .promo-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.sticky-cta-btn {
    background: linear-gradient(180deg, var(--cta-yellow), var(--cta-yellow-dark));
    color: var(--cta-text-dark);
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(240, 196, 25, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(240, 196, 25, 0.45);
}

/* Mobile adjustments to prevent wrapping and save space */
@media (max-width: 480px) {
    body {
        padding-bottom: 65px; /* Less space needed for smaller CTA */
    }

    .sticky-bottom-cta {
        padding: 6px 10px;
        gap: 8px;
    }

    .sticky-bottom-cta .flash-sale-img {
        max-width: 38px;
    }

    .sticky-bottom-cta .promo-text {
        font-size: 12px;
    }

    .sticky-cta-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* Order Details Card */
.order-details-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 24px;
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    flex-wrap: wrap;
    gap: 8px;
}

.order-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-charcoal);
    font-size: 15px;
}

.detail-value {
    color: var(--primary-pink);
    font-weight: 500;
    font-size: 15px;
    text-align: right;
}

/* How to Use Section Styles */
.how-to-use-section {
    background: linear-gradient(180deg, var(--primary-pink), #c0392b);
    color: var(--white);
    padding: 30px 0;
}

.how-to-use-section .section-title {
    margin-bottom: 20px;
}

.how-to-use-img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

/* Make How to Use more compact on mobile */
@media (max-width: 480px) {
    .how-to-use-section {
        padding: 20px 0;
    }

    .how-to-use-section .section-title {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .how-to-use-img {
        border-radius: 12px;
    }

    /* Pricing Section Mobile Optimizations */
    .pricing-section {
        padding: 40px 0;
    }

    .price-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .package-image {
        max-width: 180px;
        margin-bottom: 12px;
    }

    .trust-badges {
        gap: 12px;
        margin-bottom: 16px;
    }

    .trust-badge {
        max-width: 45px;
    }

    .best-value-badge {
        padding: 8px 24px;
        font-size: 13px;
        top: -18px;
    }

    .price-card-header {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .price {
        font-size: 48px;
    }

    .savings {
        font-size: 14px;
        padding: 5px 14px;
        margin-bottom: 24px;
    }

    .price-features {
        padding: 16px 18px;
        margin-bottom: 28px;
    }

    .price-features li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .price-features li::before {
        width: 26px;
        height: 26px;
        font-size: 18px;
    }

    .price-btn {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Responsive Adjustments for Desktop */
@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        flex-direction: row;
        max-width: 1000px;
        margin: 0 auto;
        align-items: stretch;
        gap: 32px;
    }

    .price-card {
        flex: 1;
    }

    .price-card.best-value {
        transform: scale(1.08);
        z-index: 10;
    }

    .price-card.best-value:hover {
        transform: scale(1.1) translateY(-4px);
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(180deg, var(--secondary-pink), #fff0f5);
    padding: 40px 0;
}

.footer-process {
    text-align: center;
    margin-bottom: 32px;
}

.footer-process-img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-logo {
    width: 100%;
    max-width: 120px;
    height: auto;
}

.footer-contact {
    text-align: center;
}

.footer-contact-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 8px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-payment {
    text-align: center;
    margin-bottom: 24px;
}

.footer-payment-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.footer-copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid var(--primary-pink);
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-charcoal);
    opacity: 0.8;
}

/* Footer Mobile Optimizations */
@media (max-width: 480px) {
    .footer-section {
        padding: 32px 0;
    }

    .footer-process-img {
        max-width: 100%;
    }

    .footer-logo {
        max-width: 100px;
    }

    .footer-contact-item {
        font-size: 14px;
    }

    .footer-payment-img {
        max-width: 100%;
    }
}

/* Customer Reviews Section */
.reviews-section {
    background: var(--secondary-pink);
    padding: 40px 0;
}

.reviews-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reviews-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.reviews-carousel {
    display: flex;
    gap: 16px;
    animation: scrollReviews 40s linear infinite;
}

.reviews-carousel-wrapper:hover .reviews-carousel {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-content {
    width: 100%;
}

.review-stars {
    font-size: 18px;
    margin-bottom: 12px;
    color: #FFD700;
}

.review-text {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--dark-charcoal);
    font-style: italic;
    line-height: 1.5;
}

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-pink-dark);
    margin-bottom: 4px;
}

.review-location {
    font-size: 13px;
    color: #666;
}

@media (min-width: 768px) {
    .review-card {
        min-width: 320px;
        max-width: 320px;
    }
}
