/* Main Footer Styles */
.main-footer {
    background-color: #f8f8f8;
    padding: 60px 0 40px;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-column {
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-small-text {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Newsletter Form Styles */
.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input {
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 0;
    background-color: white;
    width: 100%;
    margin-bottom: 10px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

.newsletter-btn {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #e55aa0;
}

.skincare-match-btn {
    display: inline-block;
    background-color: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.skincare-match-btn:hover {
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
}

/* Footer Menu Styles */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ff69b4;
    text-decoration: none;
}

/* Social Media Icons */
.social-media-icons {
    margin-bottom: 20px;
}

.social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #333;
    color: white;
    text-align: center;
    line-height: 35px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Location Info */
.location-info {
    margin-top: 20px;
}

.location-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.change-location {
    color: #ff69b4;
    text-decoration: underline;
    margin-left: 5px;
}

.change-location:hover {
    color: #e55aa0;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .main-footer {
        padding: 40px 0 30px;
    }
    
    .footer-column {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding: 30px 0 20px;
    }
    
    .footer-column {
        margin-bottom: 30px;
        text-align: left;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .social-media-icons {
        text-align: left;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        line-height: 32px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 25px 0 15px;
    }
    
    .footer-column {
        margin-bottom: 25px;
    }
    
    .footer-heading {
        font-size: 15px;
    }
    
    .footer-text,
    .footer-menu a {
        font-size: 13px;
    }
    
    .footer-small-text {
        font-size: 11px;
    }
}

/* Ensure existing sub-footer styling is preserved */
.sub-footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

.sub-footer p {
    margin: 0;
    color: #ccc;
}

.sub-footer a {
    color: #ff69b4;
}

.sub-footer a:hover {
    color: white;
}