/* Global Styles */
html, body {
     overflow-x: hidden;
}
body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #050B20;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Footer Styles */
.main-footer {
    width: 100%;
    /* height: 838px; */
    display: flex;
    flex-direction: column;
}

/* Newsletter Section */
.newsletter {
    padding: 64px 0;
    background-color: #fff;
    border-bottom: none;
}

.newsletter-content {
    max-width: 567px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
}

.newsletter-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.newsletter h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    color: #222222;
    line-height: 0.94em;
}

.newsletter p {
    font-size: 16px;
    margin: 0;
    color: #555555;
    line-height: 1.3em;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    width: 100%;
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    overflow: hidden;
    padding: 0 10px 10px 10px;
}

.newsletter-form input {
    width: 100%;
    background: transparent;
    border: none;
    color: #050B20;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    padding: 20px 22px;
    flex-grow: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #050B20;
    opacity: 0.7;
}

.newsletter-form button {
    background-color: #F47925;
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 19px 35px;
    cursor: pointer;
    white-space: nowrap;
    margin: 5px 5px 5px 0;
}

/* Footer Links */
.footer-links-container {
    background: #fff;
    padding: 55px 0;
    flex-grow: 1;
}

.footer-links-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #222222;
	text-align:left;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3em;
    text-decoration: none;
}

.sale-hours {
    margin-bottom: 44px;
}

.sale-hours h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #222222;
}

.sale-hours p {
    font-size: 16px;
    line-height: 2.25em;
    opacity: 0.9;
    margin: 0;
	color: #000;
}

.social-links h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #222222;
}

.social-icons {
    display: flex;
    gap: 9px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: transparent;
    color: #050B20;
    font-size: 15px;
}
.social-links a:hover{
    text-decoration: none !important;  
}
.social-icon .fa{
    color: #cd5701 !important;
    font-size: 25px !important;
}
.social-icon .fa:hover{
    color: #23527c !important;
}
/* Copyright */
.copyright {
    padding: 34px 128px;
    border-top: 1px solid #E1E1E1;
    background-color: #fff;
}

.copyright-content {
    display: flex;
    align-items: center;
}

.copyright p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    color: #000;
}

.ui-autocomplete ul, li {
    list-style: none;
    border-radius: 5px;
    text-align: left;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .copyright {
        padding: 34px 60px;
    }
    
    .footer-links-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .newsletter {
        padding: 30px 0;
    }
    
    .newsletter h2 {
        font-size: 24px;
    }
    
    .newsletter p {
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input, 
    .newsletter-form button {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .footer-links-container {
        padding: 30px 0;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .copyright {
        padding: 25px 20px;
    }
    
    .copyright-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .copyright p {
        font-size: 14px;
        display: inline;
    }
    
    .main-footer{
        position: relative;
    }
    
    .footer-links-grid{
        display: block;
    }
    
    .social-links h3{
        text-align: center;
    }
    
    .social-icons{
        justify-content: center;
    }
}

/* Footer Toggle for Mobile */
@media (max-width: 768px) {
    .footer-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid #e1e1e1;
        margin-bottom: 0;
    }
    
    .toggle-icon {
        font-size: 18px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .footer-toggle.active .toggle-icon {
        transform: rotate(45deg);
    }
    
    .footer-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
    }
    
    .footer-toggle.active + .footer-content {
        max-height: 300px; /* Adjust based on content height */
        padding: 10px 0;
    }
}

/* Styles for non-mobile */
@media (min-width: 769px) {
    .toggle-icon {
        display: none;
    }
    
    .footer-content {
        max-height: none !important;
        overflow: visible !important;
    }
} 