
.lca-photo-gallery-wrap {
    background: #070706;
    color: #fff;
    padding: 60px 28px;
    font-family: inherit;
}
.lca-photo-gallery-inner {
    max-width: 1380px;
    margin: 0 auto;
}
.lca-photo-topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
    align-items: center;
}
.lca-photo-filter {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 13px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: all .25s ease;
}
.lca-photo-filter:hover,
.lca-photo-filter.active {
    background: #ff7817;
    border-color: #ff7817;
    color: #fff;
}
.lca-photo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}
.lca-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.lca-photo-card {
    position: relative;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
}
.lca-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease, opacity .35s ease;
}
.lca-photo-card:hover img {
    transform: scale(1.06);
    opacity: .72;
}
.lca-photo-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
    opacity: 0;
    transition: opacity .25s ease;
}
.lca-photo-card:hover .lca-photo-overlay {
    opacity: 1;
}
.lca-photo-overlay h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 12px;
}
.lca-select-photo {
    background: #ff7817;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}
.lca-order-panel {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(255,120,23,.35);
    border-radius: 18px;
    padding: 26px;
    position: sticky;
    top: 30px;
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.lca-order-panel h2 {
    color: #fff;
    margin: 0 0 20px;
    font-size: 24px;
}
.lca-selected-photo {
    margin-bottom: 18px;
    color: #fff;
}
.lca-selected-photo img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}
.lca-form-step {
    color: #ff7817;
    font-weight: 900;
    margin: 22px 0 12px;
}
.lca-form-step span {
    color: #fff;
    margin-left: 8px;
}
.lca-size-options label {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #ddd;
    padding: 9px 0;
    font-size: 14px;
}
.lca-size-options input {
    margin-right: 8px;
    accent-color: #ff7817;
}
.lca-muted {
    color: #aaa;
    font-size: 14px;
}
.lca-print-order-form input[type="text"],
.lca-print-order-form input[type="email"],
.lca-print-order-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 7px;
    padding: 13px 14px;
    margin-bottom: 12px;
    box-sizing: border-box;
}
.lca-print-order-form textarea {
    min-height: 90px;
    resize: vertical;
}
.lca-print-order-form button[type="submit"] {
    width: 100%;
    background: #ff7817;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 18px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: all .25s ease;
}
.lca-print-order-form button[type="submit"]:hover {
    background: #ff8c32;
    transform: translateY(-1px);
}
.lca-payment-note {
    color: #bbb;
    font-size: 12px;
    line-height: 1.5;
    margin: 14px 0 0;
}
.lca-form-response {
    margin-top: 12px;
    font-weight: 700;
}
.lca-form-response.success { color: #71e68a; }
.lca-form-response.error { color: #ff7272; }
.lca-photo-benefits {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,120,23,.28);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
}
.lca-photo-benefits div {
    padding: 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.10);
}
.lca-photo-benefits div:last-child { border-right: 0; }
.lca-photo-benefits strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}
.lca-photo-benefits span {
    color: #c9c9c9;
    font-size: 13px;
}
.lca-photo-footer-note {
    text-align: center;
    color: #f4c08c;
    font-style: italic;
    margin: 22px 0 0;
}
@media (max-width: 1100px) {
    .lca-photo-layout {
        grid-template-columns: 1fr;
    }
    .lca-order-panel {
        position: static;
    }
}
@media (max-width: 900px) {
    .lca-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lca-photo-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .lca-photo-gallery-wrap {
        padding: 42px 16px;
    }
    .lca-photo-grid {
        grid-template-columns: 1fr;
    }
    .lca-photo-card,
    .lca-photo-card img {
        min-height: 310px;
    }
    .lca-photo-benefits {
        grid-template-columns: 1fr;
    }
    .lca-photo-benefits div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }
    .lca-photo-filter {
        padding: 11px 17px;
        font-size: 14px;
    }
}
