/* footer.css - extracted from inline styles */
.felt-footer {
    background: #3A2E24;
    border-top: 2px dashed rgba(196,168,130,0.3);
    padding: 80px 20px 24px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}
.felt-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(180deg, rgba(196,168,130,0.06) 0%, transparent 100%);
    pointer-events: none;
}
.felt-footer-spools {
    display: flex; justify-content: center; gap: 80px;
    margin-bottom: 32px; position: relative; z-index: 1;
}
.felt-spool {
    position: relative; width: 50px; height: 60px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.felt-spool-top, .felt-spool-bottom {
    width: 48px; height: 10px;
    background: linear-gradient(180deg, #6B5A48, #5A4A38);
    border-radius: 50%;
    position: relative; z-index: 2;
}
.felt-spool-body {
    width: 30px; height: 28px;
    background: linear-gradient(180deg, #C4A882, #9C7A52, #B8956A);
    border-radius: 2px;
    position: relative; z-index: 1;
    margin: -3px 0;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.15);
}
.felt-spool-body::after {
    content: '';
    position: absolute; top: 2px; left: 50%; transform: translateX(-50%);
    width: 18px; height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}
.felt-thread-ends {
    position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
}
.felt-thread {
    position: absolute;
    width: 2px; height: 24px;
    background: var(--thread-color);
    border-radius: 1px;
    left: var(--thread-x);
    transform-origin: bottom center;
    animation: thread-flutter 2.5s ease-in-out infinite;
    animation-delay: var(--thread-delay);
    opacity: 0.8;
}
@keyframes thread-flutter {
    0%, 100% { transform: rotate(-8deg) scaleY(1); opacity: 0.8; }
    25% { transform: rotate(6deg) scaleY(1.15); opacity: 1; }
    50% { transform: rotate(-4deg) scaleY(0.95); opacity: 0.7; }
    75% { transform: rotate(8deg) scaleY(1.1); opacity: 0.9; }
}
.felt-footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    position: relative; z-index: 1;
}
.felt-footer-heading {
    font-family: 'Comfortaa', cursive;
    font-size: 14px; font-weight: 700; color: #C4A882;
    margin-bottom: 14px; letter-spacing: 2px; text-transform: uppercase;
}
.felt-footer-desc { color: #8B7A68; font-size: 13px; line-height: 1.7; }
.felt-footer-links { display: flex; flex-direction: column; gap: 8px; }
.felt-footer-links a {
    color: #8B7A68; text-decoration: none; font-size: 13px;
    transition: all 0.3s; position: relative; cursor: pointer;
    padding: 2px 0;
}
.felt-footer-links a:hover { color: #D4B896; }
.felt-footer-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
    background: #D4B896; transition: width 0.3s;
}
.felt-footer-links a:hover::after { width: 100%; }
.felt-footer-social { display: flex; gap: 12px; }
.felt-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px dashed rgba(196,168,130,0.3); border-radius: 50%;
    color: #8B7A68; text-decoration: none; font-size: 16px; transition: all 0.3s;
}
.felt-social-link:hover {
    color: #D4B896; border-color: rgba(196,168,130,0.6);
    box-shadow: 0 0 12px rgba(196,168,130,0.2);
}
.felt-footer-bottom {
    max-width: 1200px; margin: 28px auto 0;
    padding-top: 20px; border-top: 1px dashed rgba(196,168,130,0.15);
    text-align: center; position: relative; z-index: 1;
}
.felt-footer-bottom p { color: #6B5A48; font-size: 13px; }
