.br-wrapper {
    max-width: 900px;
    margin: 2.5em auto;
    font-size: 16px;
    line-height: 1.5;
}

.br-notice {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 1.5em;
    font-weight: 500;
}
.br-notice-success { background: #eafaf0; color: #1e7e42; border: 1px solid #b7e6c8; }
.br-notice-error   { background: #fdeceb; color: #a12a20; border: 1px solid #f3c1bc; }

/* Gallery */
.br-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 2em;
}
.br-gallery-item {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f1f1f1;
}
.br-gallery-item img,
.br-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.br-gallery-image { transition: transform .2s ease; cursor: zoom-in; }
.br-gallery-image:hover { transform: scale(1.03); }

.br-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 30px;
}
.br-lightbox[hidden] { display: none; }
.br-lightbox-img { max-width: 100%; max-height: 90vh; border-radius: 6px; }
.br-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

/* Reviews list */
.br-reviews-list { margin-bottom: 2.5em; }
.br-review-item {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}
.br-review-item:last-child { border-bottom: none; }
.br-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.br-review-name { font-weight: 600; }
.br-review-stars { color: #f5a623; letter-spacing: 1px; }
.br-review-text { margin: 0; color: #333; }

/* Form */
.br-form-container {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 24px;
}
.br-form-title { margin-top: 0; }
.br-form-row { margin-bottom: 16px; }
.br-form-row label { display: block; font-weight: 600; margin-bottom: 6px; }
.br-required { color: #c0392b; }
.br-form-row input[type="text"],
.br-form-row input[type="email"],
.br-form-row textarea,
.br-form-row input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fff;
}
.br-form-row textarea { resize: vertical; }
.br-hint { color: #777; display: block; margin-top: 4px; }

/* Star rating input - pure CSS, no JS needed */
.br-star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    font-size: 28px;
}
.br-star-rating input { display: none; }
.br-star-rating label {
    color: #ccc;
    cursor: pointer;
    padding: 0 2px;
    margin: 0;
    transition: color .15s ease;
}
.br-star-rating input:checked ~ label,
.br-star-rating label:hover,
.br-star-rating label:hover ~ label {
    color: #f5a623;
}

/* Honeypot - hidden from real visitors, present for bots */
.br-hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    height: 0;
    width: 0;
    overflow: hidden;
}

.br-captcha-row input[type="text"] { max-width: 140px; }

.br-submit-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}
.br-submit-btn:hover { background: #1f2c38; }

.br-moderation-note {
    color: #777;
    font-size: 13px;
    margin: 10px 0 0;
}

@media (max-width: 480px) {
    .br-gallery { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .br-form-container { padding: 16px; }
}
