/* Trustpilot 1:1 Clone - Exact Match */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f7f8fc;
    color: #191919;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    padding: 0;
    padding-top: 64px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.link {
    color: #0066cc;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Header Styles - Exact Trustpilot Match */
/* Header */
.header {
    background-color: #191919;
    color: white;
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-bottom: 1px solid #2a2a2a;
}

.header__actual {
    background-color: #191919;
    height: 100%;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.header__wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo */
.logo__container {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo__image {
    height: 28px;
    width: auto;
}

/* Search Bar */
.header__search {
    flex: 1;
    max-width: 500px;
    margin-right: 40px;
    position: relative;
}

.search-form {
    position: relative;
    width: 100%;
}

.header__search-field {
    width: 100%;
    height: 40px;
    padding: 0 16px 0 44px;
    border: 1px solid #404040;
    border-radius: 6px;
    font-size: 14px;
    background-color: #2a2a2a;
    color: white;
    outline: none;
    transition: all 0.2s ease;
}

.header__search-field::placeholder {
    color: #999;
}

.header__search-field:focus {
    border-color: #00b67a;
    background-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 182, 122, 0.2);
}

.header__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}

/* Navigation */
.nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #191919;
    border-top: 1px solid #2a2a2a;
    display: none;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__categories,
.nav__login,
.nav__signup {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav__categories:hover,
.nav__login:hover {
    background-color: #2a2a2a;
    text-decoration: none;
}

.nav__signup {
    background-color: #00b67a;
    color: white;
}

.nav__signup:hover {
    background-color: #009966;
    text-decoration: none;
}

/* Menu Toggle */
.header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: auto;
}

.header__menu__line {
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.header__menu:hover .header__menu__line {
    background-color: #00b67a;
}

/* Desktop Navigation Items */
@media (min-width: 768px) {
    .header__wrapper {
        justify-content: space-between;
    }
    
    .nav {
        position: static;
        display: block;
        background: none;
        border: none;
    }
    
    .nav__container {
        padding: 0;
        margin: 0;
        gap: 16px;
    }
    
    .header__menu {
        display: none;
    }
    
    .nav__categories--hidden,
    .nav__login--hidden,
    .nav__signup--hidden {
        display: inline-block;
    }
}

/* Icon Styles */
.icon-search:before {
    content: "🔍";
    font-size: 14px;
}

/* Install App Button */
.btn-install-app {
    background: none;
    border: 1px solid #404040;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-install-app:hover {
    border-color: #00b67a;
    background-color: rgba(0, 182, 122, 0.1);
}

/* User Navigation */
.nav__user__container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__user__links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__user-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav__user-link:hover {
    background-color: #2a2a2a;
    text-decoration: none;
}

.nav__user__info {
    display: flex;
    align-items: center;
}

.nav__user__info__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
}

.nav__user-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.nav__user-name {
    font-weight: 500;
    font-size: 14px;
}

.nav__user-location {
    font-size: 12px;
    color: #999;
}

/* Legacy Navigation Styles */
.nav__categories,
.nav__login,
.nav__signup,
.nav__for-business {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav__categories:hover,
.nav__login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav__signup {
    background-color: #00b67a;
    color: #ffffff;
}

.nav__signup:hover {
    background-color: #009c6b;
}

.nav__for-business {
    background-color: #4f46e5;
    color: #ffffff;
}

.nav__for-business:hover {
    background-color: #4338ca;
}

/* Main Content Area */
main {
    margin-top: 64px;
    min-height: calc(100vh - 64px);
}

/* Main Content */
main {
    background-color: #f7f8fc;
    min-height: calc(100vh - 64px);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px;
}

.main {
    background-color: #f7f8fc;
    min-height: calc(100vh - 64px);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px;
}

/* Container */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Company Profile Wrapper */
.company-profile-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #f7f8fa;
}

/* Sub Navigation */
.sub-nav {
    background-color: white;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.business-unit-profile-navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.business-unit-profile-navigation-item {
    display: block;
    padding: 16px 0;
    color: #191919;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.business-unit-profile-navigation-item:hover,
.business-unit-profile-navigation-item.active {
    color: #00b67a;
    border-bottom-color: #00b67a;
}

/* Company Profile Header */
.company-profile-header-wrapper {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.company-profile-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-summary {
    padding: 24px 0;
}

.business-unit-profile-summary {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.business-unit-profile-summary__image-wrapper {
    flex-shrink: 0;
}

.business-unit-profile-summary__image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: #f0f0f0;
    display: block;
    object-fit: cover;
    border: 1px solid #ddd;
}

.right-section {
    flex: 1;
    min-width: 0;
}

.header-section {
    margin-bottom: 16px;
}

.multi-size-header {
    margin: 0 0 8px 0;
}

.multi-size-header__big {
    font-size: 32px;
    font-weight: 700;
    color: #191919;
    line-height: 1.2;
    display: block;
}

.multi-size-header__small {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 4px;
}

.header--inline {
    font-size: 18px;
    font-weight: 600;
    color: #191919;
    margin: 0 0 12px 0;
}

.star-rating-container {
    margin-bottom: 16px;
}

.star-rating img {
    height: 20px;
    width: auto;
    display: block;
}

/* Company Badges Section */
.company-badges {
    border-top: 1px solid #e6e6e6;
    padding: 20px 0;
}

.badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.badges__badges {
    flex: 1;
    min-width: 0;
}

.badge-card {
    background-color: #f8f9fa;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 16px;
    display: inline-block;
}

.badge-card__section {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.badge-card__title {
    font-weight: 600;
    color: #191919;
    font-size: 14px;
}

.badge-card__description {
    color: #666;
    font-size: 12px;
}

.badges__buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.badges__write-review-button .button {
    background-color: #00b67a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.badges__write-review-button .button:hover {
    background-color: #009966;
}

/* Company Profile Body */
.company-profile-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

/* Quick Evaluate Section */
.quick-evaluate-container {
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
    background-color: #f8f9fa;
}

.quick-evaluate {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quick-evaluate__default-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ddd;
}

.quick-evaluate__label {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.quick-evaluate__label a {
    color: #00b67a;
    text-decoration: none;
}

.quick-evaluate__label a:hover {
    text-decoration: underline;
}

/* Reviews Overview */
.reviews-overview {
    padding: 20px;
}

.reviews-overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.headline {
    font-size: 24px;
    font-weight: 700;
    color: #191919;
    margin: 0;
}

.headline__review-count {
    color: #666;
    font-weight: 400;
}

.button-write-review {
    background-color: #00b67a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.button-write-review:hover {
    background-color: #009966;
}
}

.rating-distribution__chart {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-distribution__row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-distribution__stars {
    display: flex;
    gap: 2px;
    min-width: 100px;
}

.rating-distribution__bar {
    flex: 1;
    height: 8px;
    background-color: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}

.rating-distribution__fill {
    height: 100%;
    background-color: #00b67a;
    transition: width 0.3s ease;
}

.rating-distribution__count {
    min-width: 60px;
    text-align: right;
    color: #6b7280;
    font-size: 14px;
}

/* Reviews Container */
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* Reviews Overview */
.reviews-overview {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    padding: 24px;
}

.reviews-overview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.headline {
    font-size: 24px;
    font-weight: 700;
    color: #191919;
    margin: 0;
}

.headline__review-count {
    color: #666;
    font-weight: 400;
}

.review-filter-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.metadata {
    color: #666;
    font-size: 14px;
    margin-right: 8px;
}

/* Review List */
.review-list {
    margin-top: 24px;
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.card--related {
    padding: 24px;
}

/* Review Filters */
.review-filter-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.review-filter-buttons .metadata {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    font-family: inherit;
}

.button--primary {
    background-color: #0066cc;
    color: white;
}

.button--primary:hover {
    background-color: #0052a3;
    text-decoration: none;
}

.button--secondary {
    background-color: transparent;
    color: #0066cc;
    border: 1px solid #0066cc;
}

.button--secondary:hover {
    background-color: #0066cc;
    color: white;
    text-decoration: none;
}

.button--light {
    background-color: #f8f9fa;
    color: #191919;
    border: 1px solid #e6e6e6;
}

.button--light:hover {
    background-color: #e9ecef;
    text-decoration: none;
}

.button-write-review {
    background-color: #0066cc;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.button-write-review:hover {
    background-color: #0052a3;
    text-decoration: none;
}

.filter-button {
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #ffffff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-button:hover {
    border-color: #00b67a;
    color: #00b67a;
}

.filter-button--active {
    background-color: #00b67a;
    border-color: #00b67a;
    color: #ffffff;
}

.button--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Review List */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Review List */
.review-list {
    padding: 20px;
}

.review-card {
    background-color: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 20px;
    transition: all 0.2s ease;
}

.review-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.review {
    display: flex;
    gap: 16px;
}

/* Consumer Information */
.review__consumer-information {
    flex-shrink: 0;
    width: 120px;
}

.consumer-information {
    text-decoration: none;
    color: inherit;
}

.consumer-information__picture {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #00b67a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.consumer-information__details {
    text-align: left;
}

.consumer-information__name {
    font-weight: 600;
    color: #191919;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.consumer-information__review-count {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 12px;
}

.consumer-information__review-icon {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.review {
    display: flex;
    gap: 16px;
}

/* Consumer Information */
.review__consumer-information {
    flex-shrink: 0;
    width: 200px;
}

.consumer-information {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consumer-information__picture {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #00b67a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.consumer-information__details {
    flex: 1;
}

.consumer-information__name {
    font-weight: 600;
    color: #191919;
    margin-bottom: 4px;
    font-size: 14px;
}

.consumer-information__review-count {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.consumer-information__review-icon {
    width: 12px;
    height: 12px;
    opacity: 0.6;
}

/* Review Content */
.review__content {
    flex: 1;
    min-width: 0;
}

.review-content {
    width: 100%;
}

.review-content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-content-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 1px;
}

.star-rating img {
    height: 16px;
    width: auto;
}

.star-rating__star {
    width: 16px;
    height: 16px;
    color: #00b67a;
}

.review-content-header__dates {
    color: #666;
    font-size: 12px;
}

.review-content-header__review-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #00b67a;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.review-content__body {
    margin-bottom: 16px;
}

.review-content__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.review-content__title a {
    color: #191919;
    text-decoration: none;
}

.review-content__title a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.review-content__text {
    color: #333;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-content__date {
    color: #666;
    font-size: 12px;
    margin-top: 8px;
}

.review-content__date time {
    color: inherit;
}

/* Review Footer */
.review-content__footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.review-content__footer-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #666;
}

.review-content__footer-actions button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
}

.review-content__footer-actions button:hover {
    color: #00b67a;
}

/* Review Actions */
.review__actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e6e6e6;
}

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

.review-actions__main {
    display: flex;
    gap: 12px;
}

.review-action {
    display: flex;
}

.review-action button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.review-action button:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.review-action .icon {
    width: 14px;
    height: 14px;
}

.review-actions__notify-wrapper {
    margin-left: auto;
}

.notify-compliance-button {
    padding: 8px;
    background-color: transparent;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notify-compliance-button:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.notify-compliance-button .icon {
    width: 14px;
    height: 14px;
}

/* Brand Share Button */
.brand-share-button-wrapper {
    margin-left: auto;
}

/* Icons */
.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 48px 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination__button {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #ffffff;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 40px;
    text-align: center;
}

.pagination__button:hover {
    border-color: #00b67a;
    color: #00b67a;
}

.pagination__button--active {
    background-color: #00b67a;
    border-color: #00b67a;
    color: #ffffff;
}

.pagination__button--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.brand-footer {
    background-color: #191919;
    color: #ffffff;
    padding: 48px 0 24px;
    margin-top: 64px;
}

.brand-footer__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-footer__logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.brand-footer__logo {
    height: 32px;
    width: auto;
}

.brand-footer__country-selector-section {
    margin-bottom: 40px;
    text-align: center;
}

.brand-footer__header {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: none;
}

.brand-footer__country-selector-section__wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.brand-footer__section {
    margin-bottom: 32px;
}

.brand-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-footer__link {
    margin-bottom: 12px;
}

.brand-footer__link a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.brand-footer__link a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.brand-footer__social .brand-footer__links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.brand-footer__social .brand-footer__link {
    margin-bottom: 0;
}

.brand-footer__legal {
    border-top: 1px solid #333333;
    padding-top: 24px;
    margin-top: 32px;
    text-align: center;
}

.brand-footer__legal .brand-footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.brand-footer__legal .brand-footer__link {
    margin-bottom: 0;
}

.brand-footer__legal__copyright-text {
    color: #999999;
    font-size: 12px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .brand-footer__wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 32px;
        align-items: start;
    }
    
    .brand-footer__logo-container {
        grid-column: 1 / -1;
        margin-bottom: 32px;
    }
    
    .brand-footer__country-selector-section {
        grid-column: 1 / -1;
        text-align: left;
    }
    
    .brand-footer__legal {
        grid-column: 1 / -1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header__container {
        padding: 0 16px;
    }
    
    .header__search {
        display: none;
    }
    
    .header__wrapper {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav__categories {
        flex-direction: column;
        gap: 8px;
    }
    
    .company-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reviews-overview-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .business-unit-profile__container,
    .reviews-container {
        padding: 0 16px;
    }
    
    .business-unit-profile__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .business-unit-profile__title {
        font-size: 24px;
    }
    
    .review {
        flex-direction: column;
        gap: 16px;
    }
    
    .review__consumer-information {
        width: 100%;
    }
    
    .consumer-information {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
    }
    
    .consumer-information__picture {
        margin-bottom: 0;
    }
    
    .review-content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .review-actions__main {
        width: 100%;
        justify-content: space-between;
    }
}

@media (min-width: 769px) {
    .header__container {
        padding: 0 40px;
    }
    
    .header__wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .header__search {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .business-unit-profile {
        padding: 24px 0;
    }
    
    .reviews-container {
        padding: 24px 16px;
    }
    
    .review-card {
        padding: 16px;
    }
    
    .reviews-overview {
        padding: 16px;
    }
    
    .review-filter-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Loading States */
.placeholder-masker {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Focus States for Accessibility */
.button:focus,
.filter-button:focus,
.pagination__button:focus {
    outline: 2px solid #00b67a;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .review-card {
        border: 1px solid #000000;
    }
    
    .button,
    .filter-button {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}