.elementor-4421 .elementor-element.elementor-element-68fd97d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-48f01ef *//* General Footer Styles */
#new-site-footer {
    background-color: #f8f1e9; /* Soft beige background for a warm, fashionable feel */
    color: #333; /* Dark text for readability */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif; /* Modern, stylish font */
    border-top: 5px solid #d4a373; /* Gold accent border for luxury fashion vibe */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    animation: fadeInFooter 1.5s ease-in-out; /* Fade-in animation on load */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-section {
    flex: 1 1 200px; /* Flexible columns for responsive design */
    min-width: 200px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: block;
    margin-bottom: 15px;
    transition: transform 0.3s ease; /* Smooth hover animation */
}

.footer-logo-link:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2)); /* Shadow for logo pop */
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d4a373; /* Gold color for headings to match fashion elegance */
    position: relative;
    overflow: hidden;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a373;
    transition: width 0.4s ease; /* Underline animation */
}

.footer-section:hover .footer-heading::after {
    width: 100%; /* Expand underline on hover over section */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease; /* Smooth color and shift */
}

.footer-links a:hover {
    color: #d4a373; /* Gold on hover */
    padding-left: 5px; /* Slight left shift for motion */
}

.footer-links a::before {
    content: '→'; /* Arrow icon for stylish navigation */
    opacity: 0;
    position: absolute;
    left: -15px;
    top: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
    color: #d4a373;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px; /* Arrow appears and moves in */
}

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.footer-email-link {
    color: #d4a373;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: #b8865f; /* Darker gold on hover */
}

.payment-icons {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    filter: grayscale(50%); /* Subtle grayscale for elegance */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-icons:hover {
    filter: grayscale(0%); /* Full color on hover */
    transform: scale(1.05); /* Slight zoom */
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #e0d8cf; /* Soft separator */
    padding-top: 15px;
}

.copyright {
    font-size: 12px;
    color: #777;
    animation: pulseText 2s infinite; /* Gentle pulsing for subtle motion */
}

/* Animations */
@keyframes fadeInFooter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseText {
    0% { color: #777; }
    50% { color: #999; }
    100% { color: #777; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info, .footer-contact {
        align-items: center;
    }

    .footer-links a {
        display: block;
        margin: 0 auto;
    }
}/* End custom CSS */