.skd-reviews_wrapper {
    background: #f4eee1;
    padding: 60px 40px;
    font-family: 'Work Sans', sans-serif;
}

.skd-reviews_grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.skd-card {
    background: #fbfaf6;
    border: 1px solid #e5dfd2;
    border-radius: 24px;
    padding: 40px;
    box-shadow: none;
}

/* Empty State Styling */
.skd-card_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 240px;
    justify-content: center;
}

.skd-card_empty .skd-stars-display {
    margin-bottom: 20px;
}

.skd-empty_title {
    font-family: 'Newsreader', serif;
    font-size: 20px;
    color: #32463f;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.skd-empty_sub {
    font-size: 14px;
    color: #7d978e;
    margin: 0;
    line-height: 1.6;
    max-width: 320px;
}

/* Star Display (read-only) */
.skd-stars-display {
    display: inline-flex;
    gap: 4px;
}

.skd-stars-display svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #b8925a;
    stroke-width: 1.2px;
}

.skd-stars-display svg.filled {
    fill: #b8925a;
}

/* Form Styles */
.skd-form_title {
    font-family: 'Newsreader', serif;
    font-size: 24px;
    color: #32463f;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.skd-form_sub {
    font-size: 14px;
    color: #7d978e;
    margin: 0 0 24px 0;
}

.skd-stars-input {
    margin-bottom: 24px;
}

.skd-stars-row {
    display: flex;
    gap: 8px;
}

.skd-star-label {
    cursor: pointer;
    display: block;
}

.skd-star-label svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #b8925a;
    stroke-width: 1.2px;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skd-star-label:hover svg,
.skd-star-label.hover svg {
    transform: scale(1.1);
}

.skd-star-label.selected svg {
    fill: #b8925a;
}

.skd-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.skd-label {
    font-size: 14px;
    font-weight: 500;
    color: #32463f;
    margin-bottom: 8px;
    display: block;
}

.skd-form_row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.skd-input-group {
    margin-bottom: 16px;
}

.skd-input,
.skd-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fbfaf6;
    border: 1px solid #e4ddd0;
    border-radius: 12px;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: #32463f;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.skd-input:focus,
.skd-textarea:focus {
    outline: none;
    border-color: #b8925a;
}

.skd-textarea {
    min-height: 120px;
    resize: vertical;
}

.skd-btn {
    background: #b8925a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Work Sans', sans-serif;
}

.skd-btn:hover {
    background: #9d7b4a;
}

.skd-form_note {
    font-size: 12px;
    color: #7d978e;
    margin: 16px 0 0 0;
    line-height: 1.5;
}

.skd-form_error {
    color: #d9534f;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Reviews List Styles */
.skd-card_summary {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.skd-summary_rating {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e4ddd0;
    padding-bottom: 24px;
}

.skd-summary_average {
    font-family: 'Newsreader', serif;
    font-size: 48px;
    color: #32463f;
    font-weight: 600;
}

.skd-summary_count {
    font-size: 14px;
    color: #7d978e;
}

.skd-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skd-review_item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #e4ddd0;
    padding-bottom: 24px;
}

.skd-review_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.skd-review_avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.skd-review_top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.skd-review_author {
    font-size: 16px;
    font-weight: 600;
    color: #32463f;
}

.skd-verified_badge {
    font-size: 11px;
    color: #b8925a;
    background: #fbfaf6;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid #e4ddd0;
}

.skd-review_meta .skd-stars-display {
    margin-bottom: 8px;
}

.skd-review_text {
    font-size: 14px;
    color: #4a5d55;
    line-height: 1.6;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 980px) {
    .skd-reviews_grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .skd-reviews_wrapper {
        padding: 40px 20px;
    }
}
