/* Footer Enhancements for Kim's Apparel */

/* Footer Social Media Icons */
.footer__social {
    margin-top: 15px;
}

.footer__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f8f8f8;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #666;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background-color: #ca1515;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Description Text */
.footer__about p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
}

/* Footer Newsletter Enhancement */
.footer__newslatter p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer__newslatter form {
    position: relative;
    margin-bottom: 20px;
}

.footer__newslatter input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer__newslatter input[type="email"]:focus {
    outline: none;
    border-color: #ca1515;
    box-shadow: 0 0 5px rgba(202, 21, 21, 0.3);
}

.footer__newslatter .site-btn {
    width: 100%;
    padding: 12px;
    background-color: #ca1515;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer__newslatter .site-btn:hover {
    background-color: #a01212;
}

/* Footer Links Enhancement */
.footer__widget ul li a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__widget ul li a:hover {
    color: #ca1515;
    text-decoration: none;
}

/* Footer Payment Icons */
.footer__payment {
    margin-top: 20px;
}

.footer__payment a {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.footer__payment img {
    height: 30px;
    width: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.footer__payment img:hover {
    transform: scale(1.05);
}

/* Footer Copyright Enhancement */
.footer__copyright__text {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
    margin-top: 30px;
}

.footer__copyright__text p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.footer__copyright__text a {
    color: #ca1515;
    text-decoration: none;
}

.footer__copyright__text a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer__about,
    .footer__widget,
    .footer__newslatter {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer__social {
        text-align: center;
    }
    
    .footer__payment {
        text-align: center;
    }
}

/* Footer Logo Enhancement */
.footer__logo a {
    font-family: 'Cookie', cursive !important;
    font-size: 24px !important;
    color: #111 !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: color 0.3s ease;
}

.footer__logo a:hover {
    color: #ca1515 !important;
}

/* Footer Section Spacing */
.footer {
    background-color: #f8f8f8;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer .row:first-child {
    margin-bottom: 0;
}

/* Footer Widget Titles */
.footer__widget h6,
.footer__newslatter h6 {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}