/* ========================================
   PREMIUM PROJECT CATALOGUE - FIVERR THEME
   ======================================== */

/* Section Header */
.profile-wrapper-item-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E4E5E7;
}

.profile-wrapper-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #222325;
    margin: 0;
}

.profile-wrapper-item-plus a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1DBF73;
    color: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.profile-wrapper-item-plus a:hover {
    background: #19A463;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(29, 191, 115, 0.3);
}

/* Project Card */
.single-project.project-catalogue {
    background: #FFFFFF;
    border: 1px solid #E4E5E7;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

.single-project.project-catalogue:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 191, 115, 0.15);
    border-color: #1DBF73;
}

/* Project Flex Layout */
.project-catalogue-flex {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* Project Thumbnail */
.project-catalogue-thumb {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.project-catalogue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-catalogue-thumb:hover img {
    transform: scale(1.05);
}

.project-catalogue-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-catalogue-thumb:hover::after {
    opacity: 1;
}

/* Project Content */
.project-catalogue-contents {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Rating */
.single-project-content-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.single-project-content-review {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-project-content-review-icon {
    color: #FFB84D;
    font-size: 14px;
}

.single-project-content-review-icon.active {
    color: #FFB84D;
}

.single-project-content-review-icon.inactive {
    color: #E4E5E7;
}

.single-project-content-review-para {
    font-size: 14px;
    font-weight: 600;
    color: #62646A;
    margin: 0;
}

/* Orders Completed Badge */
.orders-completed-badge {
    background: #E8F7F0;
    color: #1DBF73;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

/* Project Title */
.single-project-content-title {
    font-size: 18px;
    font-weight: 700;
    color: #222325;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.single-project-content-title a {
    color: #222325;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-project-content-title a:hover {
    color: #1DBF73;
}

/* Project Bottom (Price & Delivery) */
.project-catalogue-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #F7F8FA;
}

/* Price */
.single-project-content-price {
    font-size: 24px;
    font-weight: 700;
    color: #1DBF73;
}

.single-project-content-price s {
    font-size: 16px;
    font-weight: 400;
    color: #95979D;
    margin-left: 8px;
}

/* Delivery */
.single-project-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F7F8FA;
    padding: 8px 16px;
    border-radius: 20px;
}

.single-project-delivery-icon {
    font-size: 13px;
    color: #62646A;
    font-weight: 500;
}

.single-project-delivery-icon i {
    color: #1DBF73;
    margin-right: 4px;
}

.single-project-delivery-days {
    font-size: 14px;
    font-weight: 700;
    color: #222325;
}

/* Card Bottom Actions */
.profile-wrapper-item-bottom {
    padding: 16px 20px;
    background: #F7F8FA;
    border-top: 1px solid #E4E5E7;
}

.profile-wrapper-item-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Toggle Switch */
.profile-wrapper-right-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-wrapper-switch-title {
    font-size: 14px;
    font-weight: 600;
    color: #404145;
}

.custom_switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.custom_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E4E5E7;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
}

input:checked + .slider {
    background-color: #1DBF73;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Action Buttons */
.profile-wrapper-item-btn {
    display: flex;
    gap: 8px;
}

.btn-profile {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-profile.btn-bg-1 {
    background: #1DBF73;
    color: #FFFFFF;
    border: 2px solid #1DBF73;
}

.btn-profile.btn-bg-1:hover {
    background: #19A463;
    border-color: #19A463;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 191, 115, 0.3);
}

.btn-profile.btn-outline-cancel {
    background: transparent;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
}

.btn-profile.btn-outline-cancel:hover {
    background: #FF6B6B;
    color: #FFFFFF;
}

.btn-profile.btn-outline-1 {
    background: transparent;
    color: #FFB84D;
    border: 2px solid #FFB84D;
}

.btn-profile.btn-outline-1:hover {
    background: #FFB84D;
    color: #FFFFFF;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-badge.active {
    background: #E8F7F0;
    color: #1DBF73;
}

.status-badge.inactive {
    background: #FFE8E8;
    color: #FF6B6B;
}

.status-badge.pending {
    background: #FFF4E6;
    color: #FFB84D;
}

/* Empty State */
.project-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.project-empty-state-icon {
    width: 80px;
    height: 80px;
    background: #F7F8FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.project-empty-state-icon i {
    font-size: 36px;
    color: #95979D;
}

.project-empty-state-title {
    font-size: 20px;
    font-weight: 700;
    color: #222325;
    margin-bottom: 8px;
}

.project-empty-state-text {
    font-size: 15px;
    color: #62646A;
    margin-bottom: 24px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .project-catalogue-flex {
        flex-direction: column;
    }
    
    .project-catalogue-thumb {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 575px) {
    .profile-wrapper-item-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile-wrapper-item-btn {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-profile {
        width: 100%;
        justify-content: center;
    }
}

