.site-footer {
    background: #111;
    color: #fff;
    width: 100%;
}

/* Footer Grid Columns */
.footer-columns--1 { grid-template-columns: 1fr; }
.footer-columns--2 { grid-template-columns: repeat(2, 1fr); }
.footer-columns--3 { grid-template-columns: repeat(3, 1fr); }
.footer-columns--4 { grid-template-columns: repeat(4, 1fr); }

/* Footer Logo */
.site-footer .footer-logo {
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 600;
}

.site-footer .footer-logo img {
    max-width: 150px;
    height: auto;
}

/* Footer Headings */
.site-footer .footer-heading,
.site-footer .widget-title {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Links List */
.site-footer .footer-links,
.site-footer .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.site-footer .footer-links li:last-child,
.site-footer .widget li:last-child {
    margin-bottom: 0;
}

.site-footer .footer-links a,
.site-footer .widget a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

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

/* Footer Social Icons */
.site-footer .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.site-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.site-footer .footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Newsletter Form */
.site-footer .footer-newsletter-form {
    display: flex;
    margin-top: 15px;
}

.site-footer .footer-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.site-footer .footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-newsletter-form button {
    padding: 12px 18px;
    background: #c09578;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
}

.site-footer .footer-newsletter-form button:hover {
    background: #a88163;
}

.site-footer .footer-newsletter-text {
    color: #ccc;
    font-size: 14px;
    margin: 0 0 10px;
}

/* Contact Info */
.site-footer .footer-contact-info {
    margin-top: 20px;
}

.site-footer .footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    color: #ccc;
    font-size: 14px;
}

.site-footer .footer-contact-info i {
    color: #c09578;
    width: 16px;
}

.site-footer .footer-contact-info a {
    color: #ccc;
}

.site-footer .footer-contact-info a:hover {
    color: #fff;
}

/* Footer Bottom */
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.site-footer .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer .footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-bottom-left p {
    margin: 0;
    font-size: 13px;
    color: #999;
}

.site-footer .footer-legal-links {
    display: flex;
    gap: 20px;
}

.site-footer .footer-legal-links a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.site-footer .footer-bottom-right {
    display: flex;
    align-items: center;
}

/* Payment Icons */
.site-footer .payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-footer .payment-icons i {
    font-size: 28px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.site-footer .payment-icons i:hover {
    opacity: 1;
}

.site-footer .payment-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

/* Widget Styles in Footer */
.site-footer .footer-col .widget {
    margin-bottom: 20px;
}

.site-footer .footer-col .widget:last-child {
    margin-bottom: 0;
}

.site-footer .footer-col .widget .widget-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
}

/* Search Widget in Footer */
.site-footer .widget_search input[type="search"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.site-footer .widget_search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer .widget_search button {
    background: #c09578;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-columns--2,
    .footer-columns--3,
    .footer-columns--4 {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.footer-logo {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 600;
}

.footer-text {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

.footer-col h4 {
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col > p {
    color: #ccc;
    margin: 0 0 10px;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 10px 15px;
    background: #e53935;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.newsletter-form button:hover {
    opacity: 0.85;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #ccc;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 28px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
    }

    .footer-top {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 40px 0;
    }
}