/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --green: #6eb743;
    --light-green: #8bc34a;
    --dark-navy: #0f1f33;
    --gray: #f5f5f5;
    --text-gray: #666;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
nav {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    color: var(--navy);
}

.logo-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--green);
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--navy);
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: var(--gray);
    color: var(--green);
}

/* Dropdown Arrow */
.dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: var(--dark-navy);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.85);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(110, 183, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(110, 183, 67, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

/* Page Header (for non-hero pages) */
.page-header {
    background: var(--navy);
    padding: 100px 0 40px;
    margin-top: 60px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.cta-button:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 183, 67, 0.3);
}

/* Features Grid */
.features {
    padding: 55px 0;
    background: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    text-align: center;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

/* Product Section */
.product {
    padding: 80px 0;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-info h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-features {
    list-style: none;
    margin: 2rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 2rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-image {
    border-radius: 12px;
    overflow: hidden;
}

.product-placeholder {
    width: 300px;
    height: 300px;
    background: var(--navy);
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

/* Media Gallery */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.media-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.media-item:hover {
    transform: scale(1.05);
}

.media-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    background: var(--navy);
    color: white;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--light-green);
}

/* Footer */
footer {
    background: var(--dark-navy);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        margin-left: 1rem;
        background: rgba(0,0,0,0.05);
    }

    .dropdown > a::after {
        content: '';
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image {
        order: -1; /* Move image above text on mobile */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .video-wrapper {
        margin: 0 -1rem; /* Full width video on mobile */
    }

    .page-header {
        padding: 80px 0 30px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    /* Contact form on mobile */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Additional mobile improvements */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2rem;
    }

    .media-gallery {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.max-width-800 {
    max-width: 800px;
    margin: 0 auto;
}
/* ===== Product Page Enhancements ===== */

/* Product tagline */
.product-tagline {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* Spec grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    background: var(--gray);
    border-radius: 12px;
    padding: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-gray);
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

/* Comparison Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: white;
}

.compare-table th {
    background: var(--navy);
    color: white;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
}

.compare-table th.highlight-col {
    background: var(--green);
}

.compare-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 0.95rem;
}

.compare-table td.highlight-col {
    background: rgba(110, 183, 67, 0.08);
    font-weight: 600;
    color: var(--navy);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: #fafafa;
}

.compare-table tr:hover td.highlight-col {
    background: rgba(110, 183, 67, 0.12);
}

/* Module cards (Pro page optional modules) */
.module-card {
    position: relative;
}

.module-badge {
    display: inline-block;
    background: var(--navy);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* Product overview cards (product.html) */
.product-overview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-overview-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    max-height: 220px;
}

.product-summary-list {
    list-style: none;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.product-summary-list li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.product-summary-list li:last-child {
    border-bottom: none;
}

.product-summary-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* Responsive: spec grid on small screens */
@media (max-width: 600px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compare-table th,
    .compare-table td {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ===== Market Differentiator Styles ===== */

/* Single consolidated differentiator card */
.diff-single-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 2.5rem;
}

.diff-single-cols {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2.5rem;
    align-items: start;
}

.diff-single-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.diff-single-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.diff-single-col p strong {
    color: white;
}

.diff-single-icon {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.diff-single-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diff-single-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
}

@media (max-width: 768px) {
    .diff-single-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .diff-single-divider {
        width: 100%;
        height: 1px;
    }
}

/* ===== Product Comparison Grid ===== */

.product-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.product-compare-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #e8e8e8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.product-compare-card-featured {
    border-color: var(--green);
    box-shadow: 0 4px 24px rgba(110, 183, 67, 0.15);
}

.product-compare-card-featured:hover {
    box-shadow: 0 8px 32px rgba(110, 183, 67, 0.22);
}

.product-compare-header {
    padding: 1.75rem 1.5rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.product-compare-header-featured {
    background: linear-gradient(135deg, #f8fff4 0%, #eef8e6 100%);
    border-bottom-color: rgba(110, 183, 67, 0.15);
}

.product-compare-header h2 {
    color: var(--navy);
    font-size: 1.35rem;
    margin: 0.5rem 0 0.25rem;
}

.product-compare-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.product-compare-badge {
    display: inline-block;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
}

.product-compare-bestfor {
    font-size: 0.85rem;
    color: var(--text-gray);
    padding: 0.75rem 1.5rem;
    margin: 0;
    background: var(--gray);
    font-style: italic;
    text-align: center;
}

.product-compare-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
}

.product-compare-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-compare-features li {
    padding: 0.45rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid #f5f5f5;
}

.product-compare-features li:last-child {
    border-bottom: none;
}

.product-compare-features .has-feature {
    color: #333;
}

.product-compare-features .no-feature {
    color: #c0c0c0;
}

.feat-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.feat-icon.yes {
    background: var(--green);
    color: white;
}

.feat-icon.yes-opt {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.feat-icon.no {
    background: #eee;
    color: #bbb;
    font-size: 0.8rem;
}

.product-compare-specs {
    display: flex;
    justify-content: space-around;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-compare-specs span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--gray);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.product-compare-cta {
    display: block;
    text-align: center;
    margin: 0 1.5rem 1.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    animation: none;
}

@media (max-width: 900px) {
    .product-compare-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Highlighted feature cards (green left border accent) */
.feature-card-highlight {
    border-left: 4px solid var(--green);
    background: linear-gradient(135deg, #ffffff 0%, #f8fff4 100%);
}

.feature-card-highlight .feature-icon {
    background: var(--navy);
}

/* Differentiator banner (homepage) */
.differentiator-banner {
    background: var(--green);
    padding: 1.25rem 0;
}

.diff-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.diff-banner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.diff-banner-item .diff-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.diff-banner-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.diff-banner-item p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.diff-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.4);
}

/* Dark differentiator cards (product overview page) */
.diff-card-dark {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: none !important;
}

.diff-card-dark:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1) !important;
}

@media (max-width: 768px) {
    .diff-divider {
        display: none;
    }

    .diff-banner-inner {
        gap: 1.5rem;
        text-align: left;
    }
}

/* ===== Lightbox ===== */
.lightbox-trigger {
    cursor: zoom-in;
    display: block;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: lightboxFadeIn 0.2s ease-out;
}

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

.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.8);
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10000;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-hint {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    white-space: nowrap;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Image caption */
.img-caption {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.5rem;
    font-style: italic;
}
