/* ============================================
   GELATINE SCULPT - MAIN STYLESHEET
   Professional USA Landing Page
   GTmetrix A+ Optimized
   ============================================ */

/* CSS Variables */
:root {
    --primary-navy: #1a2744;
    --primary-pink: #e84393;
    --accent-gold: #f39c12;
    --text-black: #000000;
    --text-gray: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success-green: #27ae60;
    --border-light: #e0e0e0;
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.15);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-black);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1 {
    font-size: 46px;
    font-weight: 700;
    color: #1a2744;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    font-weight: 500;
    color: #1a2744;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    font-weight: 500;
    color: #1a2744;
    line-height: 1.4;
}

p {
    font-size: 20px;
    color: #000000;
    line-height: 1.9;
}

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

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-light);
}

/* Header */
.header {
    background: var(--primary-navy);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-white);
}

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

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--bg-white);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--primary-pink);
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 20px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(232, 67, 147, 0.3));
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c0392b 100%);
    color: var(--bg-white);
    box-shadow: 0 8px 25px rgba(232, 67, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 67, 147, 0.5);
}

.btn-secondary {
    background: var(--success-green);
    color: var(--bg-white);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    color: #000000;
}

/* What Is Section */
.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-is-text p {
    margin-bottom: 20px;
}

.what-is-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-pink);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    color: #000000;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast);
}

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

.benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c0392b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--bg-white);
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 16px;
    color: #000000;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #1a2744 0%, #2c3e50 100%);
    padding: 80px 0;
}

.pricing-section .section-header h2,
.pricing-section .section-header p {
    color: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform var(--transition-fast);
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-pink);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: var(--bg-white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
}

.pricing-bottles {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.pricing-supply {
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-height: 180px;
    margin: 0 auto;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-per {
    font-size: 20px;
    color: #000000;
}

.price-amount {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1;
}

.price-amount sup {
    font-size: 30px;
    vertical-align: super;
}

.price-bottle {
    font-size: 20px;
    color: #000000;
}

.pricing-savings {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-savings li {
    padding: 8px 0;
    font-size: 20px;
    color: #000000;
    border-bottom: 1px solid var(--border-light);
}

.pricing-savings li:last-child {
    border-bottom: none;
}

.pricing-savings li strong {
    color: var(--success-green);
}

.pricing-total {
    margin-bottom: 20px;
}

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

.total-new {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
}

.shipping-note {
    font-size: 20px;
    color: var(--success-green);
    margin-bottom: 20px;
}

.pricing-card .btn {
    width: 100%;
}

/* Cards Accepted */
.cards-accepted {
    margin-top: 15px;
}

.cards-accepted img {
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 20px;
    color: #000000;
}

.testimonial-stars {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #000000;
    font-style: italic;
}

.testimonial-disclaimer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.testimonial-disclaimer p {
    font-size: 20px;
    color: #000000;
}

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ingredient-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast);
}

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

.ingredient-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe0ec 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.ingredient-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ingredient-card p {
    font-size: 20px;
    color: #000000;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.guarantee-badge {
    text-align: center;
}

.guarantee-badge img {
    max-width: 250px;
    margin: 0 auto;
}

.guarantee-text h2 {
    margin-bottom: 20px;
}

.guarantee-text p {
    margin-bottom: 15px;
    color: #000000;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.trust-badge {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    padding: 15px;
}

.trust-badge img {
    max-width: 100%;
    max-height: 100%;
}

/* Bonuses Section */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.bonus-card img {
    max-height: 200px;
    margin: 0 auto 20px;
}

.bonus-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 20px;
    color: #000000;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 20px;
    color: #000000;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #1a2744;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-pink);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: #000000;
}

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

.transformation-card {
    text-align: center;
}

.transformation-card img {
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
}

.transformation-card h4 {
    font-size: 18px;
    color: var(--primary-navy);
}

/* References */
.references-section {
    text-align: center;
    padding: 60px 0;
    background: var(--bg-light);
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.references-section img {
    max-width: 100%;
    width: 800px;
    margin: 0 auto 20px;
}

.references-section p {
    font-size: 20px;
    color: #000000;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: var(--primary-pink);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    margin-bottom: 10px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-cta .btn {
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(232, 67, 147, 0.5);
}

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

@keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-10px);
    }
    60% {
        transform: translateX(-5px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(232, 67, 147, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(232, 67, 147, 0.8), 0 0 20px rgba(232, 67, 147, 0.4);
    }
}

/* Exit Intent Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    text-align: center;
    position: relative;
    animation: popupSlide 0.3s ease;
}

@keyframes popupSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #000000;
    transition: color var(--transition-fast);
}

.popup-close:hover {
    color: var(--primary-pink);
}

.popup-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 25px;
    color: #000000;
}

.popup-content img {
    max-width: 200px;
    margin: 0 auto 20px;
}

/* Purchase Notification */
.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: var(--shadow-medium);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 998;
    max-width: 300px;
    animation: slideIn 0.5s ease;
}

.purchase-notification.active {
    display: flex;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 18px;
}

.notification-content p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.notification-content strong {
    color: var(--primary-navy);
}

.notification-time {
    font-size: 11px;
    color: #666666;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast);
}

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

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffe0ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-header h1 {
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #000000;
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-content h2 {
    margin: 40px 0 20px;
}

.blog-content h3 {
    margin: 30px 0 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 10px;
}

.blog-cta {
    background: linear-gradient(135deg, #fff5f8 0%, #ffe0ec 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.blog-cta h3 {
    margin-bottom: 15px;
}

.blog-cta p {
    margin-bottom: 20px;
}

.author-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.author-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.author-box p {
    font-size: 20px;
    color: #000000;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.legal-page h1 {
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.legal-page p {
    margin-bottom: 15px;
    color: #000000;
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #000000;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide header on mobile */
    .header {
        display: none;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 30px;
        font-weight: 700;
        color: #1a2744;
    }
    
    h2 {
        font-size: 24px;
        font-weight: 500;
        color: #1a2744;
    }
    
    h3 {
        font-size: 20px;
        font-weight: 500;
        color: #1a2744;
    }
    
    p {
        font-size: 16.5px;
        color: #000000;
        line-height: 1.9;
    }
    
    .section {
        padding: 50px 0;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 280px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    /* Grids */
    .what-is-content,
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .steps-grid,
    .pricing-grid,
    .testimonials-grid,
    .ingredients-grid,
    .bonuses-grid,
    .transformations-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card.featured {
        grid-column: span 1;
        transform: scale(1);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Floating CTA */
    .floating-cta {
        bottom: 20px;
        right: 15px;
        left: auto;
        animation: bounceRight 2s infinite, glowPulse 2s infinite;
    }
    
    .floating-cta .btn {
        width: auto;
        display: inline-block;
        padding: 14px 24px;
        font-size: 20px;
        border-radius: 50px;
    }
    
    /* Notification */
    .purchase-notification {
        left: 10px;
        right: auto;
        max-width: 280px;
        bottom: 80px;
        padding: 10px 12px;
    }
    
    .purchase-notification .notification-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .purchase-notification .notification-content p {
        font-size: 12px;
    }
    
    .purchase-notification .notification-time {
        font-size: 10px;
    }
}

/* Print Styles */
@media print {
    .header, .floating-cta, .popup-overlay, .purchase-notification {
        display: none !important;
    }
}
