.c-explore {
    padding: 2rem 1rem 4rem;
    background: #121212;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.c-explore__hero {
    text-align: center;
    padding: 2rem 0 2.5rem;
}

.c-explore__title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 0.5rem;
    background: linear-gradient(90deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-explore__subtitle {
    margin: 0 auto;
    max-width: 480px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.c-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.c-explore-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.c-explore-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
    z-index: 1;
}

.c-explore-item:hover .c-explore-img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

.c-explore-item__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    color: #334155;
    font-size: 2.5rem;
    z-index: 1;
}

.c-explore-item__liked {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: #f91880;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.c-explore-item:hover .c-explore-item__liked,
.c-explore-item:focus-within .c-explore-item__liked {
    opacity: 1;
    transform: translateY(0);
}

.c-explore-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 65%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
    padding: 1.25rem;
}

.c-explore-item:hover .c-explore-overlay {
    opacity: 1;
}

.c-explore-meta {
    color: white;
    width: 100%;
}

.c-explore-meta__price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #25D366;
    margin-bottom: 0.25rem;
}

.c-explore-meta__title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.c-explore-meta__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    flex-wrap: wrap;
}

.c-explore-meta__stats .ph {
    color: #f91880;
}

/* Empty state */
.c-explore-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    border: 1px dashed var(--color-border);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.c-explore-empty__icon {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(249, 24, 128, 0.15));
    color: var(--color-primary);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.c-explore-empty__title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--color-text-primary);
}

.c-explore-empty__text {
    max-width: 420px;
    margin: 0 0 1.75rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.c-explore-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.c-explore-empty__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

/* Mobile polish */
@media (max-width: 767px) {
    .c-explore {
        padding: 0 0 3rem;
    }
    .c-explore__hero {
        padding: 1.5rem 1rem 1.75rem;
    }
    .c-explore__title {
        font-size: 1.75rem;
    }
    .c-explore-empty {
        margin: 0.75rem;
    }
}

/* Desktop Polish */
@media (min-width: 768px) {
    .c-explore {
        padding: 2.5rem 2rem 5rem;
    }

    .c-explore-grid {
        gap: 1.5rem;
    }

    .c-explore-item {
        border-radius: 14px;
    }
}