:root {
    --bhagwa: #FF6F00;
    --bhagwa-dark: #E65100;
    --bhagwa-light: #FFF3E0;
    --bhagwa-soft: #FFE0B2;
}
.site-logo{
    width: 200px;
}
.stars {
    font-size: 18px;
    color: #f5c518; /* gold */
}

.star {
    margin-right: 2px;
}

.star.filled {
    color: #f5c518;
}

body {
    background: #f4f6f8;
    font-family: Arial, sans-serif;
}

.mobile-container {
    max-width: 420px;
    margin: auto;
    background: #fff;
    min-height: 100vh;
    padding-bottom: 90px;
}

.header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}


.review-card {
    display: block;   /* IMPORTANT */
    padding: 15px;
    border-bottom: 1px solid #eee;
}


.review-card img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
}

.stars {
    color: #f5b50a;
}

.video-box {
    position: relative;
    margin-top: 10px;
}

.video-box img {
    width: 100%;
    border-radius: 8px;
}

.video-box .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: white;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 8px 14px;
}

/* Floating Button */
.write-review {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    padding: 14px;
    background: var(--bhagwa-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.modal-content {
    background: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.star-rating span {
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
}

.star-rating span.active {
    color: #f5b50a;
}

textarea, input {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.submit-btn {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px;
    margin-top: 15px;
    border-radius: 8px;
}

.close-btn {
    width: 100%;
    background: #eee;
    padding: 10px;
    border: none;
    margin-top: 10px;
}
/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    height: 56px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

/* Logo */
.logo {
    height: 36px;
}

/* Right text */
.header-right {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Push content below header */
.mobile-container {
    padding-top: 60px;
}
.ytp-youtube-button{
    display: none;
}
.review-content h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.review-content p {
    margin: 8px 0;
    font-size: 14px;
    color: #444;
}

.review-filters {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    overflow-x: auto;
}

.review-filters a {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    background: var(--bhagwa-light);
    color: var(--bhagwa-dark);
    text-decoration: none;
    white-space: nowrap;
}

.review-filters a.active {
    background: var(--bhagwa-dark);
    color: #fff;
}
.review-tabs {
    display: flex;
    gap: 10px;
    padding: 10px;
    overflow-x: auto;
    background: #fff;
    position: sticky;
    top: 55px;
    z-index: 99;
}

.review-tabs .tab {
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.review-tabs .tab.active {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
}
.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


.review-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user {
    flex: 1;
}

.review-user h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}
.modal-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.modal-content input:focus,
.modal-content textarea:focus {
    border-color: #ff9800;
}

textarea {
    min-height: 90px;
    resize: none;
}

.star-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.star-rating span {
    font-size: 32px;
    margin: 0 4px;
    cursor: pointer;
    color: #ccc;
}

.star-rating span.active {
    color: #f5b50a;
}

.submit-btn {
    width: 100%;
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 14px;
    margin-top: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
}

.close-btn {
    width: 100%;
    background: #f2f2f2;
    padding: 12px;
    border: none;
    margin-top: 10px;
    border-radius: 12px;
    font-size: 14px;
}
