/* CSS Custom Properties */
:root {
    /* Colors */
    --primary-color: #4CB2FD;
    --primary-dark: #3B9AE6;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    
    /* Therapeutic Colors */
    --therapeutic-blue: #4CB2FD;
    --therapeutic-green: #34d399;
    --therapeutic-teal: #5eead4;
    
    /* Neutral Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4CB2FD 0%, #3B9AE6 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-therapeutic: linear-gradient(135deg, #4CB2FD 0%, #3B9AE6 100%);
    --gradient-success: linear-gradient(135deg, #4CB2FD 0%, #3B9AE6 100%);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --card-padding: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Pulse Animation Keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 178, 253, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(76, 178, 253, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 178, 253, 0);
        transform: scale(1);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Discount Banner */
.discount-banner {
    background: linear-gradient(90deg, #dc2626, #ef4444);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.banner-content i {
    color: #fef3c7;
}



/* Hero Section */
.hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #4CB2FD 0%, #3B9AE6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.accent {
    color: #fbbf24;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #34d399;
    font-size: 1.125rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    animation: pulse 2s infinite;
    margin: 0 auto;
}

.cta-button.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.image-container {
    position: relative;
}

.image-container img {
    border-radius: var(--radius-2xl);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.floating-card:first-child {
    top: 20%;
    right: -10%;
}

.floating-card:last-child {
    bottom: 20%;
    left: -10%;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.testimonial-slide {
    display: none;
}

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

.testimonial-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    pointer-events: all;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-btn i {
    color: var(--text-primary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Themes Section */
.themes {
    padding: var(--section-padding);
}

.theme-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.theme-section .theme-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.theme-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.theme-icon i {
    color: white;
    font-size: 1.25rem;
}

.theme-section .theme-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.theme-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.theme-images-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    cursor: pointer;
}

.theme-images-grid img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.themes-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.themes-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Bonuses Section */
.bonuses {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.bonus-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 2;
}

.bonus-image {
    height: 200px;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--gray-50);
}

.bonus-content {
    padding: 1.5rem;
}

.bonus-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.free-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
}

.bonus-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.bonus-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
    text-align: left;
}

.bonus-highlight i {
    color: var(--secondary-color);
}

/* Offers Section */
.offers {
    padding: var(--section-padding);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.offer-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.offer-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.offer-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.offer-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.offer-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.offer-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.offer-features {
    padding: 0 2rem;
}

.offer-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.offer-features .feature-item i {
    color: var(--secondary-color);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.offer-features .feature-item.disabled i {
    color: var(--text-light);
}

.offer-features .feature-item.highlight {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary-color);
}

.offer-features .feature-item.highlight i {
    color: var(--secondary-color);
}

.offer-pricing {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.original-price {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.original-price span {
    text-decoration: line-through;
    font-size: 1.125rem;
}

.current-price {
    margin-bottom: 1rem;
}

.current-price .label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.current-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.savings {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: inline-block;
}

.offer-card .cta-button {
    width: calc(100% - 4rem);
    margin: 0 2rem 1.5rem;
    justify-content: center;
    align-self: center;
}

.offer-warning {
    padding: 1rem 2rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.875rem;
}

.offer-warning i {
    color: var(--accent-color);
}

/* Guarantee Section */
.guarantee-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.guarantee-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    min-width: 120px;
    border-radius: var(--radius-lg);
}

.guarantee-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.guarantee-text p {
    color: var(--text-secondary);
}



/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-brand i {
    color: var(--therapeutic-blue);
    font-size: 1.5rem;
}

.footer-text {
    color: var(--gray-300);
    font-size: 0.875rem;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .floating-card:first-child {
        right: 10%;
    }
    
    .floating-card:last-child {
        left: 10%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-content img {
        max-width: 200px;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .themes-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .offer-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-padding {
        --section-padding: 3rem 0;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .carousel-controls {
        padding: 0 0.5rem;
    }
    
    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .banner-content {
        font-size: 0.75rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-slow);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
button:focus,
.nav-link:focus,
.cta-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .theme-section .theme-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .theme-section .theme-header h3 {
        font-size: 1.5rem;
    }
    
    .theme-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .themes-cta {
        padding: 2rem 1rem;
    }
    
    .themes-cta p {
        font-size: 1.125rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .banner-content {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .theme-images-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .theme-section .theme-header h3 {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .discount-banner,
    .navbar,
    .floating-cta,
    .modal {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .section-title,
    .hero-title {
        color: black !important;
    }
}

/* ================================
   Purchase Notification Styles
   ================================ */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2), 0 8px 10px -6px rgb(0 0 0 / 0.2);
    border-left: 4px solid var(--secondary-color);
    min-width: 300px;
    max-width: 350px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    60% {
        transform: translateX(10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
    position: relative;
}

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

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
}

.notification-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.notification-action {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.3;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.875rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.notification-close:hover {
    background: var(--gray-100);
    color: var(--text-secondary);
}

/* Mobile responsiveness for notifications */
@media (max-width: 480px) {
    .purchase-notification {
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
        bottom: 10px;
    }
    
    .notification-content {
        padding: 0.875rem;
    }
    
    .notification-name {
        font-size: 0.8125rem;
    }
    
    .notification-action {
        font-size: 0.6875rem;
    }
}
