/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
:root {
    --primary: #059669;
    --primary-hover: #047857;
    --primary-light: #d1fae5;
    --bg-white: #ffffff;
    --bg-gray: #f0fdfa;
    --bg-alert: #fef2f2;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gold: #fbbf24;

    --max-width: 1200px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-emerald {
    color: var(--primary);
}

.text-danger {
    color: var(--danger);
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-main);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(5, 150, 105, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.23);
}

.btn-large {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(5, 150, 105, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

/* ==========================================================================
   SECTION 1: TOP BANNER
   ========================================================================== */
.top-banner {
    background-color: var(--bg-alert);
    color: var(--danger);
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #fca5a5;
}

/* ==========================================================================
   SECTION 2: HERO
   ========================================================================== */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero .delivery {
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-gray);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary);
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 450px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-10px);
}

/* ==========================================================================
   SECTION 3: CAROUSEL
   ========================================================================== */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 1.5rem;
}

.carousel-img {
    flex: 0 0 calc(33.333% - 1rem);
    /* Show 3 images on desktop */
    max-width: calc(33.333% - 1rem);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 4/5;
    pointer-events: none;
}

.carousel-btn {
    background-color: var(--bg-white);
    color: var(--text-main);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background-color: var(--primary);
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

/* ==========================================================================
   SECTION 3.5: ACTIVITIES MARQUEE
   ========================================================================== */
.container-fluid {
    width: 100%;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
}

.marquee-track {
    display: inline-flex;
    gap: 1.5rem;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track img {
    height: 350px;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    object-fit: contain;
    background: #fff;
    border: 1px solid #e5e7eb;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

@media (max-width: 768px) {
    .marquee-track img {
        height: 250px;
    }
}

/* ==========================================================================
   SECTION 4: BENEFITS
   ========================================================================== */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.benefit-row {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.icon-box {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green svg {
    color: var(--primary);
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   SECTION 5: PAIN
   ========================================================================== */
.pain-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pain-row {
    background: #f1ecee;
    border: 1px solid #e5cbce;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.icon-red svg {
    color: var(--danger);
    width: 100%;
    height: 100%;
}

.btn-wide {
    width: 100%;
    max-width: 450px;
}

/* ==========================================================================
   SECTION 6: PRICING CARD
   ========================================================================== */
.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.most-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), #d97706);
    color: white;
    padding: 0.5rem 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    letter-spacing: 0.05em;
}

.card-title {
    font-size: 2rem;
    color: var(--text-main);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

.card-img {
    max-width: 200px;
    margin: 0 auto 2rem;
    display: block;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    gap: 0.5rem;
}

.price-section {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

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

.price-current {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 0.5rem 0;
}

.discount-badge {
    background: var(--danger);
    color: white;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.guarantee-footer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SECTION 7: GUARANTEE
   ========================================================================== */
.guarantee-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #e5e7eb;
}

.guarantee-text h2 {
    margin-bottom: 0.5rem;
    text-align: left;
}

.guarantee-text p {
    text-align: left;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ==========================================================================
   SECTION 8: TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.author {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 9: STEPS
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    border: 4px solid var(--bg-gray);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   SECTION 10: FAQ
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
    color: var(--primary);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--text-main);
    color: white;
    padding: 3rem 0;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   POPUP NOTIFICATION
   ========================================================================== */
.purchase-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--bg-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 50;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.purchase-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.popup-icon {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-icon svg {
    width: 20px;
    height: 20px;
}

.popup-content {
    display: flex;
    flex-direction: column;
}

.popup-title {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
    margin: 0;
}

.popup-action {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.popup-time {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 768px) {

    .hero-layout,
    .guarantee-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-layout .delivery {
        margin: 1.5rem auto;
    }

    .guarantee-layout {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .guarantee-text h2,
    .guarantee-text p {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .carousel-img {
        flex: 0 0 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

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

    .purchase-popup {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
}

/* ==========================================================================
   BONUS SECTION
   ========================================================================== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

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

@media (max-width: 1024px) and (min-width: 769px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.bonus-badge {
    display: inline-block;
    background-color: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.bonus-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: left;
}

.bonus-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bonus-value {
    color: var(--text-dark);
    font-size: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.bonus-value strong {
    color: var(--primary);
    font-weight: 800;
}

/* ==========================================================================
   TWO-COLUMN PRICING SECTION
   ========================================================================== */
.special-offer-title {
    color: #991b1b;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.special-offer-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto 3rem auto;
    border-radius: 2px;
}

.pricing-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-end;
    /* Align basic plan to the bottom if premium is taller */
}

@media (max-width: 768px) {
    .pricing-columns {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

.basic-plan {
    border: 1px solid #e5e7eb;
    box-shadow: none;
    transform: none !important;
}

.premium-plan {
    border: 3px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.plan-name {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.basic-plan .plan-name {
    color: #4b5563;
}

.premium-price {
    color: var(--primary);
    font-size: 4rem;
}

.btn-basic {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    margin-top: 1.5rem;
}

.btn-basic:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.check {
    margin-right: 0.5rem;
}

/* ==========================================================================
   UPGRADE MODAL
   ========================================================================== */
.upgrade-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 2rem 1rem;
}

.upgrade-modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.upgrade-modal-content {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.4s ease forwards;
    text-align: center;
    margin: auto;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upgrade-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
}

.upgrade-modal-close:hover {
    color: #1f2937;
}

.upgrade-header h3 {
    color: #991b1b;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.upgrade-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.upgrade-card {
    background-color: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 1rem;
    padding: 1.5rem;
}

.upgrade-img {
    width: 150px;
    margin: 0 auto 1rem auto;
}

.upgrade-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.upgrade-original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.upgrade-current-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.upgrade-badge {
    display: inline-block;
    background-color: #fef3c7;
    color: #b45309;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.upgrade-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.upgrade-features {
    text-align: left;
    margin-bottom: 2rem;
    list-style: none;
}

.upgrade-features li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.upgrade-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.upgrade-decline {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
}

.upgrade-decline:hover {
    color: var(--text-dark);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.lightbox {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 1001;
}

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

.marquee-track img {
    cursor: zoom-in;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.marquee-track img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}