/* Global Styles */
:root {
    --primary: #5D4037;
    /* Leather Brown */
    --primary-dark: #3E2723;
    --accent: #D4AF37;
    /* Metallic Gold */
    --accent-light: #FBC02D;
    --bg-light: #F9F5EA;
    /* Parchment */
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-light: #E0E0E0;
    --text-gold: #D4AF37;
    --section-padding: 80px 0;
    --border-radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 50px;
}

/* Top Discount Bar */
.top-discount-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #c62828;
    color: white;
    z-index: 1000;
    text-align: center;
    padding: 8px 0;
    font-family: 'Cinzel', serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bar-content-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-discount-bar p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight-price {
    background: #FFD700;
    color: #c62828;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: 900;
}

.timer-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.timer {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    min-width: 60px;
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--accent);
}

.accent-text {
    color: var(--primary);
}

.text-white {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://placehold.co/1920x1080/2b2b2b/d4af37?text=Hero+Background+%28Bible%29');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Fallback if image generation fails later, nice gradient */
.hero {
    background: radial-gradient(circle at center, #3E2723, #1a1a1a);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.badge-hero {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-image-container {
    margin: 20px 0;
}

.hero-center-img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 10px;
    border: 3px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.hero p.hero-sub {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 22px 50px;
}

/* Animations Keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Presentation Section */
.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ebook-cover-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ebook-cover-img:hover {
    transform: scale(1.02) rotate(1deg);
}

.presentation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.presentation-text .lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.benefits-list i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

/* Topics Section */
.bg-alt {
    background-color: #ECE5CE;
    /* Slightly darker parchment */
}

.section-header {
    margin-bottom: 60px;
}

.pre-title {
    display: block;
    font-family: 'Cinzel', serif;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.divider {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 10px;
    opacity: 0.7;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.topic-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--accent);
    transition: transform 0.3s;
}

.topic-card:hover {
    transform: translateY(-10px);
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
    border: 1px solid var(--accent);
}

/* Samples / Amostra Section */
.samples {
    background-color: #f4f1ea;
    /* Light parchment background for section */
    background-image: radial-gradient(#e0dccf 1px, transparent 1px);
    background-size: 20px 20px;
    /* Subtle dots pattern */
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Slightly wider for reading */
    gap: 40px;
}

.paper-sheet {
    background: #fffdf5;
    /* Warm white paper */
    padding: 20px;
    /* Outer rim */
    position: relative;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #e6e0d0;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.paper-sheet:nth-child(even) {
    transform: rotate(1deg);
}

.paper-sheet:hover {
    transform: scale(1.02) rotate(0deg);
    z-index: 2;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2);
}

.pin {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #c9302c;
    /* Red pin */
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.paper-content {
    border: 2px solid #D4AF37;
    /* Gold border inner frame */
    padding: 30px;
    height: 100%;
    text-align: left;
    font-family: 'Lora', serif;
    /* Serif for document feel */
}

.paper-content small.ref {
    display: block;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.paper-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #5D4037;
    margin-bottom: 15px;
    border-bottom: none;
}

.paper-line {
    border: 0;
    height: 1px;
    background: #D4AF37;
    margin-bottom: 20px;
    opacity: 0.5;
}

.paper-content p {
    margin-bottom: 10px;
    color: #444;
    font-size: 0.95rem;
}

.paper-content .topic {
    color: #795548;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
}

.paper-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style-type: none;
    /* Custom list style if needed, or default disc */
}

.paper-content ul li {
    font-size: 0.9rem;
    color: #666;
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.paper-content ul li::before {
    content: "•";
    /* Bullet */
    position: absolute;
    left: 0;
    color: #D4AF37;
}

.paper-content .conclusion {
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid #D4AF37;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #5D4037;
}

/* Video Section */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    cursor: pointer;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-wrapper:hover .video-thumb {
    opacity: 0.6;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3E2723;
    font-size: 2rem;
    padding-left: 5px;
    /* Optically center play icon */
    transition: transform 0.3s;
    z-index: 2;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #D4AF37;
}

.play-button .waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.8);
    animation: wave-animation 2s infinite;
    z-index: 1;
}

@keyframes wave-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.pastor-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.pastor-info strong {
    display: block;
    color: var(--primary);
    font-family: 'Cinzel', serif;
}

.pastor-info span {
    font-size: 0.9rem;
    color: #888;
}

/* Offers */
.bg-dark {
    background-color: var(--primary-dark);
    color: white;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* helps center the popular card if it's taller */
}

.pricing-card {
    background: #fff;
    color: var(--text-dark);
    border-radius: 10px;
    padding: 0;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft modern shadow */
    overflow: visible;
    margin-top: 20px;
    /* Space for the floating tag */
}

.pricing-card.popular {
    transform: scale(1);
    background: #fff;
    margin: 20px;
    border-top: 6px solid var(--accent);
    /* Top Gold Accent */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 0;
    background-image: none;
    /* Remove gradient border */
}

/* Remove previous pseudo elements */
.pricing-card.popular::after {
    display: none;
}

.pricing-card.popular>* {
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.popular-tag {
    position: absolute;
    top: -25px;
    /* Floating above */
    left: 50%;
    transform: translateX(-50%);
    background: #c62828;
    /* Red for high visibility/urgency */
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(198, 40, 40, 0.4);
    border: 2px solid white;
    z-index: 10;
    letter-spacing: 1px;
    white-space: nowrap;
}

.card-header {
    background: #fff;
    /* White header */
    padding: 50px 20px 10px;
    border-bottom: none;
}

.card-header h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    text-transform: none;
    /* Normal case */
    letter-spacing: 0;
    border-bottom: none;
    display: block;
    padding-bottom: 0;
    font-weight: 800;
    text-shadow: none;
}

.card-header p {
    color: #888;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.price {
    margin: 30px 0;
    color: var(--primary);
    position: relative;
    padding: 0 20px;
}

.price-anchor {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
    font-family: 'Lora', serif;
}

.price-anchor .strikethrough {
    text-decoration: line-through;
    color: #999;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
    margin-right: 5px;
}

.price .amount {
    font-size: 5.5rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    background: linear-gradient(to bottom, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    background-clip: text;
    /* LINT FIX: ID 0fc2c1df-1d27-4159-ad4d-a8a5794c2fd0 */
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

.price .cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
    vertical-align: top;
}

.features {
    text-align: left;
    margin: 0;
    background: transparent;
    padding: 0;
}

.features li {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    /* Stack vertically for centering */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    color: #444;
    text-align: center;
    /* Ensure text is centered */
}

/* Zebra Striping */
.features li:nth-child(odd) {
    background-color: #fcfcfc;
}

.feature-icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: inline-block;
    margin-right: 0;
    /* Remove right margin since it's stacked */
    margin-bottom: 15px;
    /* Add bottom margin to separate from text */
    color: var(--accent);
    font-size: 2.5rem;
    /* Slightly larger */
    box-shadow: none;
}

.feature-text {
    line-height: 1.4;
    font-size: 1rem;
    color: #333;
}

.bonus-item {
    background: #fff8e1 !important;
    /* Gold tint background */
    border: none !important;
    padding: 25px 30px !important;
    margin-top: 0;
    border-top: 2px solid #D4AF37 !important;
    box-shadow: none;
    justify-content: center;
    /* Center content in bonus */
}

.bonus-item .feature-icon {
    color: #c62828;
    background: transparent;
    border: none;
    font-size: 2.2rem;
}

.bonus-label {
    color: #c62828;
    font-weight: 900;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
}

.btn-price {
    display: block;
    width: calc(100% - 60px);
    /* Account for card padding/margin */
    margin: 0 auto 40px;
    /* Center button */
    padding: 25px 30px;
    /* Larger padding */
    border: none;
    color: white;
    border-radius: 50px;
    /* Rounded pill shape */
    font-weight: 900;
    font-family: 'Cinzel', serif;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
    /* Green shadow */
    background: linear-gradient(to right, #2ecc71, #27ae60);
    /* Vibrant Green */
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Shine effect */
.btn-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-price:hover::before {
    left: 100%;
}

.btn-price:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.6);
    background: linear-gradient(to right, #27ae60, #2ecc71);
}

/* Guarantee */
.guarantee-box {
    background: white;
    border: 2px dashed #ccc;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--accent);
}

/* Final CTA */
.bg-gold {
    background: radial-gradient(circle, #D4AF37, #C5A000);
    color: var(--primary-dark);
}

.bg-gold h2 {
    color: var(--primary-dark);
}

/* Footer */
footer {
    padding: 40px 0;
    background: #111;
    color: #777;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #777;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Animation Classes Used in JS Intersection Observer */
.fade-in,
.fade-in-up,
.slide-in-left,
.slide-in-right,
.scale-in {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in {
    opacity: 0;
}

.fade-in-up {
    transform: translateY(30px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.scale-in {
    transform: scale(0.9);
}

.visible {
    opacity: 1;
    transform: none;
}

/* Delays */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .presentation-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .presentation-image {
        order: -1;
    }

    .benefits-list li {
        justify-content: center;
        /* Center align for mobile if text is centered */
        text-align: left;
        /* Keep text left aligned even in center block for readability */
        display: flex;
        /* Ensure flex is kept */
    }

    /* Optional: if you want the benefits strictly left aligned in mobile center view */
    .benefits-list {
        display: inline-block;
        text-align: left;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .guarantee-icon {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .samples-grid,
    .testimonials-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p.hero-sub {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .samples-grid {
        /* Allow single column on small screens */
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .paper-sheet {
        padding: 15px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }
}

.price .amount {
    font-size: 3rem;
}

/* Purchase Notifications */
#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Allow clicking through container */
}

.notification-toast {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    border-left: 4px solid var(--accent);
    animation: slideIn 0.5s ease-out forwards;
    pointer-events: auto;
    /* Re-enable clicks on toasts */
}

.notification-toast.hide {
    animation: slideOut 0.5s ease-in forwards;
}

.notif-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.notif-content h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary);
    font-family: 'Cinzel', serif;
}

.notif-content p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: #666;
}

.notif-time {
    font-size: 0.75rem;
    color: #999;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    #notification-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .notification-toast {
        width: 100%;
        min-width: auto;
    }

    .price .amount {
        font-size: 3rem;
    }
}