/* =========================
   PRODUCT DETAIL PAGES
   ========================= */

main {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Typography */
main h1 {
    margin-top: 0;
}

main h2 {
    margin-top: 0.8em;
}

main h3 {
    margin-top: 0;
}

/* Features */
.features ul {
    padding-left: 20px;
}

/* Separators */
hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 30px 0;
}

/* Screenshots */
.shot-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
}

.shot-row img {
    width: 260px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: zoom-in;
}

.shot-text h3 {
    margin-top: 0;
}

/* Mobile screenshots */
@media (max-width: 700px) {
    .shot-row {
        flex-direction: column;
        text-align: center;
    }

    .shot-row img {
        width: 220px;
    }
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
}