/* ========== Footer ========== */
.site-footer {
    border-top: 1px solid var(--card-border);
    background: var(--card-bg);
    padding: 2rem;
    transition: all 0.5s ease;
}

.footer-container,
.footer-bottom {
    margin: 0 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding: 0 2.5rem;
}

.footer-column {
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
    transition: color 0.5s ease;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 0.4rem 0;
}

.footer-column ul li a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.5s ease;
}

.footer-column ul li a:hover {
    color: var(--text-sec);
}

.footer-socials a {
    display: inline-block;
    margin-right: 0.75rem;
}

.footer-socials img {
    width: 32px;
    height: 32px;
    filter: brightness(1);
    transition: filter 0.5s ease;
}

.footer-socials img:hover {
    filter: brightness(0.75);
}

.newsletter {
    margin-top: 10px;
}

.newsletter h5 {
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    background: var(--card-bg);
    color: var(--text-main);
    transition: all .5s ease;
}

.newsletter input::placeholder {
    color: var(--text-muted);
    transition: color .5s ease;
}

.newsletter button {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    color: var(--text-main);
    padding: 0 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all .5s ease;
}

.newsletter button:hover {
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 0.85rem;
}

.footer-legal p {
    color: var(--text-main);
    transition: color .5s ease;
}

.footer-legal a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    transition: color .5s ease;
}

.footer-legal a:first-of-type {
    margin-left: 0;
}

.footer-legal a:hover {
    color: var(--text-muted);
}

.footer-lang select {
    background: var(--card-bg);
    color: var(--text-main);
    border: 2px solid var(--card-border);
    padding: 0.5rem;
    border-radius: 12px;
    transition: all .5s ease;
}

.footer-lang select:focus-visible {
    outline: none;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
}

.footer-payment .icon {
    height: 48px;
    width: 64px;
    transition: transform .5s ease;
    user-select: none;
}

.footer-payment .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .5s ease;
}

.footer-payment .icon:nth-child(1) img {
    transform: scale(1.1);
}

.footer-payment .icon:nth-child(2) img {
    transform: scale(0.8);
}

.footer-payment .icon:nth-child(3) img {
    transform: scale(1.4);
}

.footer-payment .icon:nth-child(4) img {
    transform: scale(1.3);
}

.footer-payment .icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}