/* Modern Footer Redesign - Matching Product Card & Category Page Style */

.footer-area {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-area .footer-widget {
    margin-bottom: 30px;
}

.footer-area .footer-widget .widget-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0;
}

.footer-area .footer-widget .widget-title::after {
    display: none;
}

.footer-area .footer-widget .info,
.footer-area .footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-area .footer-widget .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-area .footer-widget .info-list .info-item {
    margin-bottom: 14px;
}

.footer-area .footer-widget .info-list .info-item a {
    color: #b8c5d6;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-area .footer-widget .info-list .info-item a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-area .footer-widget .info-list .info-item a .icon {
    color: #7f8c9d;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-area .footer-widget .info-list .info-item a:hover .icon {
    color: #ffffff;
}

.footer-area .footer-widget .navigation-container {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-area .footer-widget .navigation-container li {
    margin-bottom: 12px;
}

.footer-area .footer-widget .navigation-container li a {
    color: #b8c5d6;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    font-weight: 400;
}

.footer-area .footer-widget .navigation-container li a:hover {
    color: #ffffff;
}

/* Social Icons */
.footer-area .social-icon {
    margin-top: 20px;
}

.footer-area .social-icon .social-icon-list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-area .social-icon .social-icon-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-area .social-icon .social-icon-list li a:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 25px 0;
}

.footer-bottom .copyright-area-inner {
    display: flex;
    align-items: center;
}

.footer-bottom .copyright {
    color: #8899aa;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.footer-bottom .copyright a {
    color: #b8c5d6;
    transition: all 0.3s ease;
}

.footer-bottom .copyright a:hover {
    color: #ffffff;
}

/* Newsletter Form */
.footer-area .subscriber-form form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-area .subscriber-form form .form-group {
    flex: 1;
    margin: 0;
}

.footer-area .subscriber-form form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-area .subscriber-form form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-area .subscriber-form form .form-group input:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 0.15);
}

.footer-area .subscriber-form form .form-group button {
    padding: 12px 25px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-area .subscriber-form form .form-group button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .footer-area {
        padding: 40px 0 0;
    }
    
    .footer-top {
        padding-bottom: 30px;
    }
    
    .footer-area .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-area .footer-widget .widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-area .subscriber-form form {
        flex-direction: column;
    }
    
    .footer-area .subscriber-form form .form-group button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-area {
        padding: 30px 0 0;
    }
    
    .footer-area .footer-widget .widget-title {
        font-size: 15px;
    }
    
    .footer-area .footer-widget .info,
    .footer-area .footer-widget p,
    .footer-area .footer-widget .info-list .info-item a,
    .footer-area .footer-widget .navigation-container li a {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom .copyright {
        font-size: 12px;
        text-align: center;
    }
}
