/* Store Footer Styles */
.store-footer {
    width: 100%;
    border-top: 1px solid rgba(243, 243, 243, 0.2);
    /* bg-[#671f21] -> rgb(103, 31, 33) */
    background-color: #671f21;
    /* text-[#f3f3f3] -> rgb(243, 243, 243) */
    color: #f3f3f3;
    padding: 3rem 1.5rem;
    font-family: 'Inter', sans-serif;
    /* font-suisse fallback */
}

@media (max-width: 767px) {
    .store-footer {
        border-top: none;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-top: 1.5rem;
    }
}

@media (min-width: 768px) {
    .store-footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.store-footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .store-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Brand Section */
.store-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.store-footer-logo {
    font-family: 'HelveticaNeue Thin', 'Inter', sans-serif;
    /* font-display */
    font-weight: 800;
    font-size: 1.95rem;
    /* text-xl */
    letter-spacing: -0.04em;
    /* tracking-wider */
    filter: blur(0.3px);
    transition: opacity 0.3s ease;
    color: inherit;
    text-decoration: none;
    text-transform: lowercase;
}

.store-footer-logo:hover {
    opacity: 0.7;
}

.store-footer-contact {
    font-family: 'IBM Plex Mono';
    font-size: 0.875rem;
    /* text-sm */
    opacity: 1;
    line-height: 1.625;
    text-transform: uppercase;
    margin-right: -2.6rem;
}

.store-footer-contact a:hover {
    text-decoration: underline;
}

/* Link Sections (Shop, Legal, Policies) */
.store-footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin-top: -1.0rem;
}

.store-footer-heading {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 0.875rem;
    /* text-sm */
    text-transform: uppercase;
    letter-spacing: 0.00em;
    /* tracking-widest */
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.store-footer-link {
    font-family: 'IBM Plex Mono';
    text-transform: uppercase;
    font-size: 0.875rem;
    /* text-sm */
    transition: opacity 0.3s ease;
    color: inherit;
    text-decoration: none;
}

.store-footer-link:hover {
    opacity: 0.7;
}

/* Bottom Bar */
.store-footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 243, 243, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: -0.01rem;
    /* text-xs */
    opacity: 0.6;
}

@media (min-width: 768px) {
    .store-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}