/* Main Global Styles */

/* Global Font - Safer approach than * selector */
body,
input,
button,
select,
textarea,
p,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li {
    font-family: 'Roboto', sans-serif;
}

/* Ensure Font Awesome icons always use their own font */
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900;
    /* Solid icons usually need 900 */
}

.fab {
    font-family: 'Font Awesome 5 Brands' !important;
}

.far {
    font-weight: 400;
}

body {
    margin: 0;
    padding: 0;
}

/* Breadcrumbs */
.breadcrumbsContainer,
.breadcrumbsContainerMobile {
    background: #fdfdfd;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    margin-bottom: 20px;
}

.breadcrumbs {

    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-left: 2px;
    box-sizing: border-box;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    font-size: 10px;
    color: #ccc;
    
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #5d3191;
    /* Global header purple */
}

/* Mobile Breadcrumbs */
.breadcrumbsContainerMobile {
    display: none;
    padding: 10px 15px;
    font-size: 12px;
    color: #888;
    text-align: left;
}

.breadcrumbsContainerMobile a {
    color: #888;
    text-decoration: none;
}

.breadcrumbsContainerMobile i.fa-caret-right {
    color: #ccc;
    margin: 0 5px;
}

@media (max-width: 992px) {
    .breadcrumbsContainer {
        display: none;
    }

    .breadcrumbsContainerMobile {
        display: block;
    }
}

/* Footer Styles */
.site-footer {
    background: #111;
    color: #fff;
    padding: 80px 0 0 0;
    margin-top: 60px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-section {
    width: 100%;
}

.footer-heading {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a i {
    font-size: 10px;
    color: #666;
}

.footer-links a:hover {
    color: #fff;
}

/* Newsletter Column */
.newsletter-section {
    display: flex;
    flex-direction: column;
}

.trustpilot-placeholder {
    margin-bottom: 35px;
}

.tp-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tp-stars span {
    font-family: 'Roboto', sans-serif !important;
}

.tp-rating-boxes {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.tp-box {
    width: 32px;
    height: 32px;
    background: #ddd;
    border-radius: 2px;
}

.tp-box.star-fill {
    background: #00b67a;
}

.tp-box.star-empty {
    background: #ddd;
}

.tp-score {
    font-size: 12px;
    color: #aaa;
}

.newsletter-promo {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #eee;
    font-weight: 500;
}

.btn-signup {
    background: #56d07e;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    display: inline-block;
    width: fit-content;
    margin-bottom: 35px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-signup:hover {
    background: #4ab86d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(86, 208, 126, 0.3);
}

.footer-social-circles {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-circle {
    width: 42px;
    height: 42px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: #444;
    color: #fff;
    transform: scale(1.1);
}

/* Footer Bottom Consolidation */
.footer-bottom {
    background: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid #222;
}

.footer-bottom-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-compact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.copyright-block {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.copyright-block p {
    margin: 0;
}

.footer-legal-notice {
    font-size: 12px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.footer-legal-notice p {
    margin-bottom: 20px;
}

.footer-payment-methods {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.footer-payment-methods img {
    max-width: 500px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.footer-address {
    font-size: 12px;
    color: #444;
}

.footer-address address {
    font-style: normal;
}

/* Responsiveness adjustments */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 0 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    /* Favorite Button Global */
    .btn-favorite {
        background: white;
        border: 2px solid #eee;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        color: #ccc;
        font-size: 18px;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .btn-favorite:hover {
        transform: scale(1.1);
        border-color: #ff4757;
        color: #ff4757;
        box-shadow: 0 6px 15px rgba(255, 71, 87, 0.2);
    }

    .btn-favorite.active {
        background: #ff4757;
        border-color: #ff4757;
        color: white !important;
    }

    .btn-favorite.active i {
        font-weight: 900;
    }

    /* Specific for list items */
    .btn-favorite-list {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }