/* Global Styles */
body {
    background-color: #FDFBF7;
    color: #1C1917;
    -webkit-tap-highlight-color: transparent;
}

/* Utilities */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-nav {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
}

/* Custom Components */
.cat-pill.active {
    background-color: var(--brand-dark);
    color: white;
}

/* Stacked Card Effects */
.stacked-card-effect {
    /* Custom transforms if needed beyond Tailwind */
}

/* SWIPE STACK STYLES (Added for StainFashion) */
.swipe-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 550px;
    margin: 20px auto;
    perspective: 1000px;
}
.swipe-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: 50% 100%;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: grab;
}
.swipe-card.dragging {
    transition: none;
    cursor: grabbing;
}
.swipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.swipe-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}
.status-overlay {
    position: absolute;
    top: 30px;
    padding: 5px 15px;
    border: 3px solid;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0;
    transform: rotate(-15deg);
    z-index: 10;
}
.status-like {
    left: 30px;
    color: #4CAF50;
    border-color: #4CAF50;
    transform: rotate(-15deg);
}
.status-nope {
    right: 30px;
    color: #F44336;
    border-color: #F44336;
    transform: rotate(15deg);
}
