/* ==========================================================================
   ROGX Beauty - Footer System (Stitch Design Integration)
   ========================================================================== */

.stitch-footer {
    width: 100%;
    background-color: var(--stitch-inverse-surface);
    border-top: 1px solid var(--stitch-secondary);
    color: var(--stitch-on-secondary);
    text-align: center;
    padding: var(--stitch-unit-xl) var(--stitch-margin-desktop);
}

@media (max-width: 768px) {
    .stitch-footer {
        padding: var(--stitch-unit-xl) var(--stitch-margin-mobile);
    }
}

.stitch-footer-container {
    max-width: var(--stitch-container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Top Section: Brand & Newsletter */
.stitch-footer-top {
    width: 100%;
    max-width: 42rem;
    margin-bottom: var(--stitch-unit-lg);
}

.stitch-footer-brand {
    font-family: var(--stitch-font-display);
    font-size: clamp(48px, 6vw, 84px);
    color: var(--stitch-surface-bright);
    margin: 0 0 var(--stitch-unit-md) 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.stitch-footer-description {
    font-family: var(--stitch-font-body);
    font-size: 16px;
    color: var(--stitch-surface-variant);
    margin: 0 0 var(--stitch-unit-md) 0;
}

.stitch-newsletter-form {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--stitch-surface-variant);
    transition: border-color 0.2s ease;
}

.stitch-newsletter-form:focus-within {
    border-bottom-color: var(--stitch-surface-bright);
}

.stitch-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--stitch-surface-bright);
    font-family: var(--stitch-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: var(--stitch-unit-sm) 0;
    box-shadow: none !important;
    outline: none !important;
}

.stitch-newsletter-input::placeholder {
    color: var(--stitch-surface-variant);
}

.stitch-newsletter-submit {
    background: transparent;
    border: none;
    color: var(--stitch-surface-bright);
    font-family: var(--stitch-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 var(--stitch-unit-sm);
    cursor: pointer;
    transition: color 0.2s ease;
}

.stitch-newsletter-submit:hover {
    color: var(--stitch-primary);
}

/* Middle Section: Navigation */
.stitch-footer-nav-container {
    margin-bottom: var(--stitch-unit-lg);
    width: 100%;
}

.stitch-footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--stitch-gutter);
    list-style: none;
    margin: 0;
    padding: 0;
}

.stitch-footer-nav-list li a {
    font-family: var(--stitch-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--stitch-surface-variant);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.stitch-footer-nav-list li a:hover {
    color: var(--stitch-primary);
}

/* Bottom Section: Copyright */
.stitch-footer-bottom {
    width: 100%;
}

.stitch-copyright {
    font-family: var(--stitch-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--stitch-surface-variant);
    text-transform: uppercase;
    margin: 0;
}
