/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.8;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--cream);
    letter-spacing: 0.1em;
}

.swiftloop-credit {
    margin-top: 15px;
    font-size: 0.86rem;
    color: var(--gray);
}

.swiftloop-credit a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.swiftloop-credit a:hover {
    color: var(--gold);
}

/* Hide Collection and Accessories columns in footer */
.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
    display: none;
}

/* Loading State */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--cream-dark);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
