/* Monjarim - Replica Design System */
:root {
    --primary-pink: #d1498a;
    --primary-dark: #333333;
    --text-black: #1a1a1a;
    --text-muted: #555555;
    --white: #ffffff;
    --light-blue-bg: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
    --font-main: 'Manrope', sans-serif;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-black);
    line-height: 1.5;
    background-color: var(--white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.top-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.header-logo-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.top-header img {
    max-width: 150px;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: var(--primary-pink);
}
.btn-header {
    background-color: var(--primary-pink);
    color: var(--white);
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}
.btn-header:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(209, 73, 138, 0.3);
}

@media (max-width: 768px) {
    .header-logo-row { flex-direction: column; gap: 15px; }
    .main-nav ul { gap: 12px; flex-wrap: wrap; justify-content: center; }
    .main-nav a { font-size: 12px; }
}

/* Hero Section */
.hero-section {
    background: var(--light-blue-bg);
    padding: 40px 0;
    text-align: center;
}

.hero-image {
    max-width: 350px;
    width: 100%;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.promo-text {
    text-align: center;
    margin-bottom: 20px;
}

.promo-text p {
    font-weight: 700;
    font-size: 20px;
    margin: 5px 0;
}

.btn-buy-now {
    background-color: var(--primary-pink);
    color: var(--white);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-buy-now i {
    font-size: 20px;
}

/* Trust Badges (Dark Section) */
.trust-badges {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 50px 0;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.badge-item i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    border: 2px solid #fff;
    width: 80px;
    height: 80px;
    line-height: 76px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.badge-item h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.badge-item p {
    font-size: 14px;
    color: #ccc;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    text-align: center;
}

.info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

/* Benefits Section (2 Columns) */
.benefits-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.benefits-text {
    flex: 1.5;
}

/* Slider / Carousel */
.slider-container {
    position: relative;
    overflow: hidden;
    margin: 30px auto;
    max-width: 600px; /* Reduced for desktop */
    width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    padding: 0 10px;
}

.slide img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

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

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-pink);
}

.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: #28a745;
    font-size: 22px;
}

/* Before After */
.before-after {
    max-width: 600px;
    margin: 40px auto;
}

.before-after img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

/* Kits Selection */
.kits-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.kit-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: 0.3s;
}

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

.kit-card img {
    width: 100%;
}

.btn-kit {
    background-color: var(--primary-pink);
    color: var(--white);
    text-decoration: none;
    padding: 15px;
    display: block;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 5px;
}

.accordion-header {
    background: #fff;
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

/* Results Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* Testimonials WhatsApp */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Anti-Piracy */
.anti-piracy {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.anti-piracy img {
    max-width: 100%;
    margin-bottom: 30px;
}

/* Stars Rating */
.stars-rating {
    margin: 15px 0;
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Enhanced Footer */
.footer-badges img {
    margin: 10px;
    vertical-align: middle;
}

/* ===== COUNTDOWN BAR ===== */
.countdown-bar {
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.countdown-bar strong {
    font-size: 18px;
    margin: 0 6px;
    letter-spacing: 2px;
}

/* ===== HERO SUB + SOCIAL PROOF ===== */
.hero-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}
.social-proof-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0 20px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.social-proof-bar span {
    background: #f0f8ff;
    border: 1px solid #dce8f5;
    border-radius: 30px;
    padding: 6px 14px;
}

/* ===== GUARANTEE MINI ===== */
.guarantee-mini {
    margin-top: 12px;
    font-size: 13px;
    color: #28a745;
    font-weight: 700;
}
.guarantee-mini i { margin-right: 5px; }

/* ===== MECHANISM GRID ===== */
.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.mechanism-card {
    background: #f8f9ff;
    border: 1px solid #e0e8ff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s;
}
.mechanism-card:hover { transform: translateY(-6px); }
.mechanism-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}
.mechanism-card h3 {
    font-size: 18px;
    color: #d1498a;
    margin-bottom: 10px;
}
.mechanism-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== KIT BADGES ===== */
.kit-card { position: relative; }
.kit-featured {
    border: 3px solid #d1498a !important;
    transform: scale(1.03);
}
.kit-badge {
    background: #d1498a;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    padding: 8px;
    letter-spacing: 0.5px;
}
.kit-badge-blue { background: #185fa5; }
.kit-guarantee {
    font-size: 12px;
    color: #28a745;
    text-align: center;
    padding: 8px;
    font-weight: 700;
}
.kit-guarantee i { margin-right: 4px; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ===== SALES TOAST ===== */
.sales-toast {
    position: fixed;
    bottom: 28px;
    left: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 998;
    max-width: 300px;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 4px solid #d1498a;
}
.sales-toast.show { transform: translateX(0); }
.sales-toast img { width: 40px; height: 40px; object-fit: contain; }
.sales-toast-text { flex: 1; }
.sales-toast-text strong { display: block; font-size: 13px; color: #1a1a1a; }
.sales-toast-text span { display: block; font-size: 12px; color: #555; }
.sales-toast-text small { display: block; font-size: 11px; color: #999; }
.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    padding: 0 4px;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.exit-popup-close {
    position: absolute;
    top: 15px; right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.exit-popup-emoji { font-size: 50px; margin-bottom: 15px; }
.exit-popup-box h2 { font-size: 24px; margin-bottom: 10px; color: #1a1a1a; }
.exit-popup-box p { color: #555; margin-bottom: 20px; }
.exit-countdown {
    font-size: 36px;
    font-weight: 800;
    color: #c0392b;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .benefits-container { flex-direction: column; text-align: center; }
    .hero-section h1 { font-size: 28px; }
    .badge-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .slider-arrow { display: none; }
    .social-proof-bar { gap: 10px; }
    .mechanism-grid { grid-template-columns: 1fr; }
    .kit-featured { transform: scale(1); }
    .countdown-bar { font-size: 13px; }
}

/* ===== MECHANISM ICON (FA6 compatible) ===== */
.mechanism-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fce8f3, #fff0f8);
    color: #d1498a;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(209,73,138,0.15);
}

/* ===== MULTI-SLIDE CAROUSEL (5 visible) ===== */
.gallery-unified-section { overflow: hidden; }
.multi-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.ms-track-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}
.ms-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.ms-slide {
    flex: 0 0 20% !important;
    padding: 6px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
}
.ms-slide img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    display: block !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}
.ms-slide img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.ms-arrow {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #d1498a;
    flex-shrink: 0;
    z-index: 2;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}
.ms-arrow:hover {
    background: #d1498a;
    color: #fff;
    border-color: #d1498a;
}
.ms-arrow-left { margin-right: 10px; }
.ms-arrow-right { margin-left: 10px; }
.ms-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.ms-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.ms-dot.active {
    background: #d1498a;
    transform: scale(1.3);
}

@media (max-width: 900px) {
    .ms-slide { flex: 0 0 33.333% !important; }
}
@media (max-width: 600px) {
    .ms-slide { flex: 0 0 50% !important; }
    .ms-arrow { width: 36px; height: 36px; font-size: 13px; }
    .ms-slide img { height: 160px !important; }
}
@media (max-width: 380px) {
    .ms-slide { flex: 0 0 100% !important; }
}
/* ===== SECTION COPY BLOCK ===== */
.section-copy-block {
    text-align: center;
    margin-bottom: 40px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(90deg, #d1498a, #f06eb3);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.section-label-blue {
    background: linear-gradient(90deg, #185fa5, #2980b9);
}
.section-copy-block h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 14px;
}
.section-copy-sub {
    font-size: 17px;
    color: #555;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.copy-stats-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.copy-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1.5px solid #f0dce8;
    border-radius: 14px;
    padding: 14px 24px;
    min-width: 110px;
    box-shadow: 0 2px 12px rgba(209,73,138,0.07);
}
.copy-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #d1498a;
    line-height: 1.2;
}
.copy-stat span {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
    text-align: center;
}
.ms-section { padding: 70px 0; }

@media (max-width: 600px) {
    .section-copy-block h2 { font-size: 24px; }
    .copy-stats-row { gap: 12px; }
    .copy-stat { padding: 10px 16px; min-width: 90px; }
    .copy-stat strong { font-size: 18px; }
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
    padding: 70px 0 60px;
    background: linear-gradient(135deg, #fdf4f9 0%, #f7f9ff 100%);
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.article-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #f0e0ec;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 4px 20px rgba(209,73,138,0.06);
}
.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(209,73,138,0.15);
    border-color: #d1498a;
}
.article-card-icon {
    background: linear-gradient(135deg, #fce8f3, #fff0f8);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #d1498a;
}
.article-card-icon--blue {
    background: linear-gradient(135deg, #e8f0fe, #f0f8ff);
    color: #185fa5;
}
.article-card-icon--green {
    background: linear-gradient(135deg, #e8f8ef, #f0fff5);
    color: #1a8f4d;
}
.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.article-tag {
    display: inline-block;
    background: #fce8f3;
    color: #d1498a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}
.article-tag--blue { background: #e8f0fe; color: #185fa5; }
.article-tag--green { background: #e8f8ef; color: #1a8f4d; }
.article-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}
.article-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.article-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #d1498a;
    margin-top: 8px;
    transition: gap 0.2s;
}
.article-card:hover .article-link { gap: 10px; }

/* ===== FOOTER REDESIGN ===== */
footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 50px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { max-width: 130px; margin-bottom: 15px; }
.footer-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}
.footer-col-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.footer-links a i { font-size: 10px; color: #d1498a; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    text-align: center;
    padding: 30px 0;
    opacity: 0.75;
}
.footer-bottom .copyright {
    font-size: 13px;
    color: #888;
    margin: 8px 0 0;
}

@media (max-width: 900px) {
    .articles-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
    .articles-grid { grid-template-columns: 1fr; }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.92);
    backdrop-filter: blur(5px);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    animation: lightbox-zoom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes lightbox-zoom {
    from {transform: scale(0.85); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--primary-pink);
    transform: rotate(90deg);
}
@media (max-width: 700px) {
    .lightbox-content { width: 95%; max-height: 70vh; margin-top: 20%; }
    .lightbox-close { top: 10px; right: 20px; font-size: 40px; }
}


