/* FOOTER STYLES - Shirtinator gibi */
.footer-main {
    background: #2c3e50;
    color: #ecf0f1;
    font-family: Arial, sans-serif;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top - Beyaz arkaplan */
.footer-main--sh-top {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.footer-main--sh-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer--sh-search {
    flex: 1;
    max-width: 500px;
}

.main-search--form {
    display: flex;
    width: 100%;
}

.main-search--field {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #3498db;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    background: white;
    color: #333;
}

.main-search--button {
    padding: 12px 20px;
    background: #3498db;
    border: none;
    border-radius: 0 5px 5px 0;
    color: white;
    cursor: pointer;
}

/* Footer Icons - YAN YANA */
.footer--sh-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer--sh-icons--container {
    text-align: center;
}

.footer--sh-icons--label {
    color: #333;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
}

.footer--sh-icons--icons {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.footer--sh-icons--icon img {
    height: 30px;
    width: auto;
    background: white;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Rating */
.sht-review-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-stars {
    display: flex;
    gap: 2px;
    margin: 3px 0;
}

.rating-text {
    color: #666;
    font-size: 11px;
    text-align: center;
}

/* Sosyal Medya - Koyu gri arkaplan */
.footer-main--sh-social {
    background: #34495e;
    padding: 20px 0;
    text-align: center;
}

.footer--sh-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer--sh-social-icons a img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer--sh-social-icons a:hover img {
    transform: scale(1.1);
}

/* Footer Columns - 5 KOLON */
.footer--columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 50px 0;
    background: #2c3e50;
}

.footer--column {
    min-width: 0;
}

.footer--column .column--headline {
    color: #3498db;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.navigation--list li {
    margin-bottom: 10px;
}

.navigation--list a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navigation--list a:hover {
    color: #3498db;
}

/* Newsletter */
.footer--newsletter {
    background: #34495e;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #4a6278;
}

.footer--newsletter .column--headline {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.column--desc {
    color: #bdc3c7;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.newsletter--form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter--field {
    padding: 12px 15px;
    border: 1px solid #4a6278;
    border-radius: 5px;
    background: #2c3e50;
    color: white;
    font-size: 14px;
    width: 100%;
}

.newsletter--field::placeholder {
    color: #95a5a6;
}

.newsletter--button {
    padding: 12px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.newsletter--button:hover {
    background: #c0392b;
}

.newsletter--text-below {
    color: #95a5a6;
    font-size: 12px;
    line-height: 1.4;
}

/* Footer Bottom */
.footer--bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: #2c3e50;
    border-top: 1px solid #34495e;
    flex-wrap: wrap;
    gap: 15px;
}

.vat-info--text {
    color: #95a5a6;
    font-size: 14px;
    margin: 0;
}

.footer--copyright {
    color: #95a5a6;
    font-size: 14px;
}

/* Footer Language/Logo */
.footer-main--sh-language {
    background: #1a252f;
    padding: 20px 0;
    text-align: center;
}

.footer--logo-container {
    text-align: center;
}

.logo--link img {
    height: 40px;
    width: auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer--columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-main--sh-top .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer--sh-search {
        max-width: 100%;
    }
    
    .footer--sh-icons {
        justify-content: center;
    }
    
    .footer--columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer--bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer--columns {
        grid-template-columns: 1fr;
    }
    
    .footer--sh-icons {
        flex-direction: column;
        gap: 20px;
    }
}