
/* Stitch: home */
body { background-color: #fcf9f8; color: #1b1c1c; }
        .border-warm-gray { border-color: #DED8CF; }
        .bg-warm-ivory { background-color: #F7F3EC; }
        .text-bronze { color: #B88752; }
        .border-bronze { border-color: #B88752; }
        
        /* Typography Pairings */
        .txt-display-lg { font-family: "Playfair Display", serif; font-size: 64px; line-height: 72px; font-weight: 700; letter-spacing: -0.02em; }
        .txt-headline-lg { font-family: "Playfair Display", serif; font-size: 48px; line-height: 56px; font-weight: 600; }
        .txt-headline-md { font-family: "Playfair Display", serif; font-size: 32px; line-height: 40px; font-weight: 500; }
        .txt-headline-sm { font-family: "Playfair Display", serif; font-size: 24px; line-height: 32px; font-weight: 500; }
        .txt-body-lg { font-family: Inter, sans-serif; font-size: 18px; line-height: 28px; font-weight: 400; }
        .txt-body-md { font-family: Inter, sans-serif; font-size: 16px; line-height: 24px; font-weight: 400; }
        .txt-label-md { font-family: Inter, sans-serif; font-size: 14px; line-height: 20px; font-weight: 600; letter-spacing: 0.05em; }
        .txt-label-sm { font-family: Inter, sans-serif; font-size: 12px; line-height: 16px; font-weight: 500; }

/* Stitch: about */
.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .text-shadow {
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

/* Stitch: buy */
.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
        }
        .symbol-fill {
            font-variation-settings: 'FILL' 1;
        }
        
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .delay-100 { animation-delay: 100ms; }
        .delay-200 { animation-delay: 200ms; }
        .delay-300 { animation-delay: 300ms; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/* Stitch: sell */
.glass-panel {
            background: rgba(247, 243, 236, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(222, 216, 207, 0.5);
        }
        .accordion-content {
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }
        .accordion-active .accordion-content {
            max-height: 500px;
            opacity: 1;
        }
        .accordion-active .material-symbols-outlined {
            transform: rotate(180deg);
        }

/* Stitch: market */
body { background-color: #fcf9f8; color: #1b1c1c; }
        .material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* Stitch: community */
.warm-gray-border { border-color: #DED8CF; }
        .warm-ivory-bg { background-color: #F7F3EC; }
        .bronze-accent { color: #B88752; }
        .bronze-border { border-color: #B88752; }
        .near-black-bg { background-color: #111111; }
