/* Tag Heuer Powerful Style - Auto-themed */
:root {
    --mopm-primary: #0a1126;
    --mopm-secondary: #211121;
    --mopm-accent: #f5c520;
    --mopm-gold: #f5bf25;
    --mopm-silver: #c0c4c6;
    --mopm-text: #0a111b;
    --mopm-text-light: #4b4c63;
    --mopm-bg: #FFFFFF;
    --mopm-bg-alt: #F0F8FA;
    --mopm-border: #aae3d1;
    --mopm-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --mopm-shadow-hover: rgba(191,27,52,0.2);
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--mopm-text);
    background-color: var(--mopm-bg);
    font-size: 16px;
}

.mopm-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.mopm-header {
    background: linear-gradient(135deg, var(--mopm-primary) 0%, #0a0a0a 50%, var(--mopm-secondary) 100%);
    border-bottom: 4px solid var(--mopm-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(193,22,51,0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(12px);
}

.mopm-header-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding: 21px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mopm-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--mopm-bg);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 11px 9px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.mopm-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192,28,59,0.2), transparent);
    transition: left 0.5s ease;
}

.mopm-brand:hover::before {
    left: 100%;
}

.mopm-brand:hover {
    transform: translateX(4px);
    background: rgba(195,34,50,0.1);
}

.mopm-brand-icon {
    color: var(--mopm-accent);
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(194,27,58,0.5);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(197,33,57,0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(196,23,65,0.8), 0 0 30px rgba(199,28,56,0.4);
    }
}

.mopm-brand-text {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
}

.mopm-navigation {
    display: flex;
    gap: 29px;
}

.mopm-nav-item {
    color: var(--mopm-silver);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.4px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.mopm-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mopm-accent);
    transition: width 0.3s ease;
}

.mopm-nav-item:hover,
.mopm-nav-item--active {
    color: var(--mopm-bg);
}

.mopm-nav-item:hover::after,
.mopm-nav-item--active::after {
    width: 100%;
}

.mopm-menu-button {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.mopm-menu-bar {
    width: 31px;
    height: 3px;
    background: var(--mopm-bg);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mopm-mobile-navigation {
    display: none;
    background: var(--mopm-secondary);
    padding: 23px 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.mopm-mobile-navigation.active {
    display: block;
}

.mopm-mobile-link {
    display: block;
    color: var(--mopm-silver);
    text-decoration: none;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

.mopm-mobile-link:hover {
    color: var(--mopm-bg);
}

/* Main Content */
.mopm-main-content {
    flex: 1;
    padding: 51px 0;
}

.mopm-content-layout {
    max-width:100%;
    margin: 0 auto;
    padding: 0 21px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 51px;
}

.mopm-article-content {
    max-width:100%;
}

.mopm-article-header {
    margin-bottom: 40px;
    padding-bottom: 33px;
    border-bottom: 1px solid var(--mopm-border);
}

.mopm-title-primary {
    font-family: 'Roboto Slab', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--mopm-primary);
    line-height: 1.2;
    margin-bottom: 23px;
    letter-spacing: -0.4px;
}

.mopm-intro-text {
    font-size: 18px;
    color: var(--mopm-text-light);
    line-height: 1.8;
    font-weight: 400;
}

/* Guarantee Badge */
.mopm-guarantee-badge {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    border: 3px solid var(--mopm-gold);
    border-radius: 16px;
    padding: 25px 26px;
    margin: 39px 0;
    display: flex;
    gap: 21px;
    align-items: flex-start;
    box-shadow: 0 5px 24px rgba(35,125,145,0.2), 0 4px 8px rgba(38,115,136,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mopm-guarantee-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37,121,144,0.1) 0%, transparent 70%);
    animation: rotate-badge 20s linear infinite;
}

@keyframes rotate-badge {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.mopm-guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(24,127,143,0.25), 0 6px 12px rgba(23,116,135,0.15);
}

.mopm-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--mopm-gold) 0%, #be961d 100%);
    color: var(--mopm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26,122,142,0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(28,121,141,0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(30,117,140,0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
}

.mopm-badge-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mopm-badge-content strong {
    color: var(--mopm-primary);
    font-size: 16px;
    font-weight: 700;
}

.mopm-badge-content span {
    color: var(--mopm-text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* Headings */
.mopm-heading-secondary {
    font-family: 'Roboto Slab', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--mopm-primary);
    margin: 57px 0 26px;
    line-height: 1.3;
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 19px;
}

.mopm-heading-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--mopm-accent) 0%, var(--mopm-gold) 100%);
    border-radius: 3px;
}

.mopm-heading-tertiary {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--mopm-primary);
    margin: 41px 0 18px;
    line-height: 1.4;
    padding-left: 15px;
    border-left: 5px solid var(--mopm-accent);
    position: relative;
}

/* Content */
p {
    margin-bottom: 17px;
    color: var(--mopm-text);
    line-height: 1.8;
}

.mopm-list-basic {
    list-style: none;
    margin: 22px 0;
    padding-left: 0;
}

.mopm-list-basic li {
    padding: 13px 0 10px 29px;
    position: relative;
    color: var(--mopm-text);
    line-height: 1.7;
}

.mopm-list-basic li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--mopm-accent);
    font-weight: 700;
    font-size: 18px;
}

/* Images with Lazy Loading */
.mopm-content-image {
    width: 100%;
    height: auto;
    border-radius: 11px;
    margin: 43px 0;
    box-shadow: 0 9px 34px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--mopm-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mopm-content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199,35,64,0.05) 0%, rgba(33,117,137,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mopm-content-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(200,37,54,0.15);
    border-color: var(--mopm-accent);
}

.mopm-content-image:hover::before {
    opacity: 1;
}

.mopm-lazy-image {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.mopm-lazy-image.loaded {
    opacity: 1;
}

.mopm-lazy-image[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e9e8e1 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

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

/* Checklist */
.mopm-checklist-container {
    background: linear-gradient(135deg, #ffffff 0%, var(--mopm-bg-alt) 100%);
    border-left: 5px solid var(--mopm-accent);
    border-radius: 12px;
    padding: 33px 34px;
    margin: 39px 0;
    box-shadow: 0 7px 17px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.mopm-checklist-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--mopm-accent) 0%, #a00d25 100%);
}

.mopm-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--mopm-border);
}

.mopm-checklist-item:last-child {
    border-bottom: none;
}

.mopm-checkbox {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--mopm-accent) 0%, #971b2a 100%);
    color: var(--mopm-bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 2px 9px rgba(189,22,53,0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mopm-checklist-item:hover .mopm-checkbox {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(191,37,52,0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.mopm-checklist-text {
    color: var(--mopm-text);
    font-weight: 500;
    line-height: 1.6;
}

/* Sticky Sidebar */
.mopm-sidebar-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.mopm-sidebar-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid var(--mopm-border);
    border-radius: 15px;
    padding: 31px;
    margin-bottom: 25px;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mopm-sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mopm-accent) 0%, var(--mopm-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mopm-sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(194,37,65,0.1);
    border-color: var(--mopm-accent);
}

.mopm-sidebar-card:hover::before {
    transform: scaleX(1);
}

.mopm-sidebar-title {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--mopm-primary);
    margin-bottom: 19px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--mopm-accent);
    position: relative;
}

.mopm-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--mopm-gold);
}

.mopm-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mopm-sidebar-link {
    color: var(--mopm-text);
    text-decoration: none;
    padding: 10px 13px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.mopm-sidebar-link:hover {
    background: var(--mopm-bg-alt);
    color: var(--mopm-accent);
    padding-left: 19px;
}

.mopm-sidebar-text {
    color: var(--mopm-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion */
.mopm-faq-container {
    margin: 42px 0;
}

.mopm-faq-item {
    border: 3px solid var(--mopm-border);
    border-radius: 12px;
    margin-bottom: 19px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mopm-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--mopm-accent) 0%, var(--mopm-gold) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.mopm-faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(196,33,64,0.1);
    border-color: var(--mopm-accent);
    transform: translateX(4px);
}

.mopm-faq-item:hover::before {
    transform: scaleY(1);
}

.mopm-faq-question {
    width: 100%;
    background: linear-gradient(135deg, var(--mopm-bg-alt) 0%, #f0f0f0 100%);
    border: none;
    padding: 22px 29px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--mopm-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mopm-faq-question:hover {
    background: linear-gradient(135deg, var(--mopm-primary) 0%, #152313 100%);
    color: var(--mopm-bg);
    padding-left: 31px;
}

.mopm-faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--mopm-primary) 0%, #1f1d18 100%);
    color: var(--mopm-bg);
    padding-left: 35px;
}

.mopm-faq-question[aria-expanded="true"] .mopm-faq-icon {
    transform: rotate(45deg);
}

.mopm-faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 18px;
}

.mopm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mopm-faq-answer.active {
    max-height: 500px;
}

.mopm-faq-answer div {
    padding: 20px 25px;
}

.mopm-faq-answer p {
    color: var(--mopm-text);
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.mopm-footer {
    background: linear-gradient(135deg, var(--mopm-primary) 0%, #0a0a0a 50%, var(--mopm-secondary) 100%);
    color: var(--mopm-silver);
    padding: 54px 0 27px;
    margin-top: 83px;
    border-top: 3px solid var(--mopm-accent);
    position: relative;
}

.mopm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199,23,55,0.5), transparent);
}

.mopm-footer-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 27px;
}

.mopm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 33px;
}

.mopm-footer-column {
    display: flex;
    flex-direction: column;
}

.mopm-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mopm-footer-brand .mopm-brand-icon {
    color: var(--mopm-accent);
    font-size: 24px;
}

.mopm-footer-brand .mopm-brand-text {
    color: var(--mopm-bg);
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 18px;
}

.mopm-footer-description {
    color: var(--mopm-silver);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.mopm-footer-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--mopm-bg);
    margin-bottom: 16px;
}

.mopm-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.mopm-footer-links a {
    color: var(--mopm-silver);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mopm-footer-links a:hover {
    color: var(--mopm-bg);
    padding-left: 3px;
}

.mopm-footer-bottom {
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mopm-footer-bottom p {
    color: var(--mopm-silver);
    font-size: 13px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mopm-content-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mopm-sidebar-sticky {
        position: static;
        max-height: none;
    }

    .mopm-navigation {
        display: none;
    }

    .mopm-menu-button {
        display: flex;
    }

    .mopm-title-primary {
        font-size: 32px;
    }

    .mopm-heading-secondary {
        font-size: 28px;
    }

    .mopm-footer-grid {
        grid-template-columns: 1fr;
        gap: 31px;
    }
}

@media (max-width: 640px) {
    .mopm-header-wrapper {
        padding: 11px 18px;
    }

    .mopm-main-content {
        padding: 35px 0;
    }

    .mopm-content-layout {
        padding: 0 16px;
    }

    .mopm-title-primary {
        font-size: 28px;
    }

    .mopm-heading-secondary {
        font-size: 24px;
    }

    .mopm-heading-tertiary {
        font-size: 20px;
    }

    .mopm-checklist-container {
        padding: 23px 13px;
    }

    .mopm-sidebar-card {
        padding: 22px;
    }

    .mopm-guarantee-badge {
        padding: 19px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 7px;
    margin-bottom: 11px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 13px 24px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 9px 27px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 6px 15px;
        font-size: 16px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .mopm-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 6px !important;
        margin: 0 auto 11px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 15px 17px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 11px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .mopm-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.mopm-wrapper, .mopm-content, .mopm-hero-inner, .mopm-companies-container, 
.mopm-article, .mopm-container, .mopm-footer-inner, .mopm-main {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.mopm-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.mopm-td-action {
    text-align: center !important;
}
.mopm-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
