/* Summerland Footer Styles */

.smf-footer-wrapper {
    font-family: inherit;
    width: 100%;
    overflow: hidden;
    color: #555;
    line-height: 1.5;
}

.smf-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- Top Strip --- */
.smf-top-strip {
    background-color: #F8FAF9;
    padding: 20px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.smf-features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.smf-feature-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 220px;
}

.smf-feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.smf-feature-text {
    display: flex;
    flex-direction: column;
}

.smf-feature-title {
    color: #1a6f69; /* Teal */
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.smf-feature-subtitle {
    color: #777777;
    font-size: 13px;
    margin: 0;
    line-height: 1.2;
}

/* --- Bottom Area --- */
.smf-bottom-area {
    background-color: #EFF5F5;
    padding: 45px 0 50px 0;
    min-height: 295px;
}

.smf-columns-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Typography & Lists */
.smf-col-heading {
    color: #333333;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.smf-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smf-link-list li {
    margin-bottom: 24px;
}

.smf-link-list li:last-child {
    margin-bottom: 0;
}

.smf-link-list a {
    color: #555555;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.smf-link-list a:hover {
    color: #1a6f69;
}

/* Specific Columns */
.smf-col-brand {
    flex: 2;
    min-width: 300px;
    max-width: 350px;
}

.smf-brand-logo {
    display: block;
    max-width: 300px;
    margin-bottom: 20px;
}

.smf-brand-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.smf-brand-desc {
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.smf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smf-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #777777;
    font-size: 14px;
}

.smf-contact-list li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.smf-col-nav {
    flex: 1;
    min-width: 120px;
}

.smf-col-connect {
    flex: 1.5;
    min-width: 200px;
}

/* Connect Column Details */
.smf-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.smf-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e5ebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555555;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.smf-social-icon:hover {
    background-color: #d1d9d9;
}

.smf-social-icon svg {
    width: 18px;
    height: 18px;
}

.smf-social-icon.facebook-icon svg {
    fill: currentColor;
}

.smf-social-icon.instagram-icon svg {
    stroke: currentColor;
}

.smf-express-text {
    color: #555555;
    font-size: 15px;
    margin: 0 0 15px 0;
}

.smf-shipping-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.smf-shipping-logos img {
    height: auto;
    max-height: 24px;
    object-fit: contain;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .smf-features-row {
        justify-content: flex-start;
    }
    .smf-feature-block {
        flex: 1 1 45%;
    }
    .smf-columns-row {
        gap: 30px;
    }
    .smf-col-brand {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .smf-feature-block {
        flex: 1 1 100%;
    }
    .smf-col-nav, .smf-col-connect {
        flex: 1 1 100%;
    }
    .smf-bottom-area {
        padding: 40px 0;
    }
}
