/* Gig Card Component Styles */

.gig-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(148, 0, 255, 0.05));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    height: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.swiper-slide .gig-card {
    height: 100%;
}

.gig-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-blue, #00e5ff);
    box-shadow: 0 30px 60px rgba(0, 242, 255, 0.15), inset 0 0 20px rgba(0, 242, 255, 0.2);
}

/* Badges Container */
.gig-badges-container {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
}

.gig-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(0, 229, 255, 0.9);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gig-badge-verified i {
    font-size: 11px;
}

.gig-badge-level {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gig-badge-level i {
    font-size: 11px;
}

/* Gig Image */
.gig-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gig-card:hover .gig-img {
    transform: scale(1.05);
}

/* Gig Content */
.gig-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gig-seller {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
}

.gig-seller img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.gig-seller-wrapper {
    position: relative;
    display: inline-block;
}

.gig-seller-online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.gig-seller span {
    font-size: 14px;
    color: var(--text-main, #ffffff);
    font-weight: 600;
}

/* Gig Title */
.gig-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main, #ffffff);
    line-height: 1.4;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Gig Description */
.gig-description {
    font-size: 12px;
    color: var(--text-sub, #8b8fa3);
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gig Footer */
.gig-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    margin-top: auto;
}

.gig-rating-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.rating-label {
    font-size: 10px;
    color: var(--text-sub, #8b8fa3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.gig-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 800;
    color: #ffc107;
}

.gig-rating i {
    font-size: 14px;
}

.gig-rating .review-count {
    font-size: 13px;
    color: var(--text-sub, #8b8fa3);
    font-weight: 500;
}

.gig-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-label {
    font-size: 10px;
    color: var(--text-sub, #8b8fa3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.gig-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--neon-blue, #00e5ff);
}

/* Category Badge */
.gig-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(148, 0, 255, 0.2));
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    color: var(--neon-blue, #00e5ff);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.gig-category-badge i {
    font-size: 9px;
}

/* Responsive */
@media (max-width: 768px) {
    .gig-img {
        height: 160px;
    }

    .gig-content {
        padding: 14px;
    }

    .gig-title {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .gig-img {
        height: 160px;
    }

    .gig-badges-container {
        top: 6px;
        left: 6px;
        right: 6px;
    }

    .gig-badge-verified,
    .gig-badge-level {
        font-size: 8px;
        padding: 2px 6px;
    }

    .gig-title {
        font-size: 13px;
    }
}