/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
}
.cookie-consent.show { display: block; }
.cookie-consent-content {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-consent p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}
.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}
.cookie-consent button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}
.cookie-accept {
    background: #c5a47e;
    color: #fff;
}
.cookie-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
@media (max-width: 767px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Language Switcher */
.language-switcher {
    display: inline-block;
    margin-left: 15px;
    position: relative;
}
.language-switcher select {
    padding: 6px 28px 6px 12px;
    border: 1px solid #c5a47e;
    border-radius: 4px;
    background: #183749;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 110px;
}
.language-switcher select:hover {
    background: #c5a47e;
    border-color: #c5a47e;
}
.language-switcher select:focus {
    outline: none;
    border-color: #c5a47e;
    box-shadow: 0 0 0 2px rgba(197,164,126,0.2);
}
.language-switcher::after {
    content: '\f107';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #c5a47e;
    font-size: 12px;
    transition: all 0.3s ease;
}
.language-switcher:hover::after {
    color: #fff;
}
#google_translate_element {
    display: none !important;
}
.goog-te-banner-frame, .goog-te-balloon-frame {
    display: none !important;
}
body {
    top: 0 !important;
}
@media (max-width: 767px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    .language-switcher select {
        width: 100%;
        padding: 5px 25px 5px 10px;
        font-size: 12px;
    }
}

/* Trust Badges */
.trust-badges {
    text-align: center;
    padding: 30px 0;
    background: #f8f9fa;
}
.trust-badges-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1170px;
    margin: 0 auto;
}
.trust-badge {
    text-align: center;
}
.trust-badge i {
    font-size: 40px;
    color: #c5a47e;
    margin-bottom: 10px;
}
.trust-badge h4 {
    font-size: 16px;
    margin: 10px 0 5px;
}
.trust-badge p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Newsletter Signup */
.newsletter-section {
    background: #183749;
    padding: 50px 0;
    color: #fff;
}
.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-content h2,
.newsletter-content p {
    color: #fff;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 20px auto 0;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
}
.newsletter-form button {
    padding: 12px 30px;
    background: #c5a47e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
@media (max-width: 767px) {
    .newsletter-form {
        flex-direction: column;
    }
}
