/* Gallery component */
.lkn-product-gallery-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lkn-product-gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Biography component */
.lkn-user-profile-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lkn-user-profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 128px;
    overflow: hidden;
}

.lkn-user-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lkn-user-name {
    font-size: 20px;
    font-weight: bold;
}

.lkn-campaign-count {
    font-size: 14px;
    color: #555;
}

.lkn-open-bio-modal {
    color: #0073aa;
    text-decoration: underline;
}

/* Modal */
.lkn-bio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    box-sizing: border-box;
}

.lkn-bio-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.lkn-bio-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lkn-hr {
    border: 0px;
    background-color: transparent;
    border-bottom: 0.1px solid rgb(224, 224, 224);
    margin: 14px 0px !important;
}

.lkn-bio-modal-header h2 {
    margin: 0;
    font-size: 18px;
    color: #00A859;
}

.lkn-name {
    font-size: 20px;
}

.lkn-bio-modal-header button.lkn-close-bio-modal {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0px;
    line-height: 0.8;
}

.lkn-bio-modal-header button.lkn-close-bio-modal:hover {
    color: rgb(228, 59, 59) !important;
    background-color: transparent;
}

.lkn-bio-modal-body {
    font-size: 16px;
    line-height: 1.6;
}

.lkn-bio-modal-body p {
    color: #666;
}

.lkn-bio-modal-body p span {
    color: #333;
}

.lkn-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Icon */
.lkn-heart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    background-color: transparent !important;
    z-index: 10;
    padding: 0px;
    height: 40px;
}

.lkn-heart-btn:hover {
    background-color: transparent !important;
}

.lkn-heart-btn:active {
    background-color: transparent !important;
}

.lkn-heart {
    height: 40px;
    width: auto;
}

/* Tabs */
.lkn-campaign-tabs {
    margin: 20px 0;
}

.lkn-tabs {
    list-style: none;
    padding: 0 !important;
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.lkn-tab-background {
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    transition: transform 0.2s, z-index 0.2s;
}

.lkn-tab-background.active {
    background-color: #fff;
}

.lkn-tab-link {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom: none;
    position: relative;
    z-index: 1;
    list-style: none;
}

.lkn-tab-link.active {
    transform: translateY(1px);
    z-index: 2;
}

.lkn-tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc !important;
    border-top: none;
}

.lkn-tab-content.active {
    display: block;
}

.lkn-supporters-table {
    width: 100%;
    border-collapse: collapse;
}

.lkn-supporters-table th,
.lkn-supporters-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

#respond a,
div#respond h3 {
    color: #ffc107 !important
}

.star-rating {
    color: #ffc107 !important
}

/* Raised percent */
.lkn-raised-container {
    width: 100%;
    margin-bottom: 10px;
}

.lkn-raised-percent-wrapper {
    display: flex;
    width: 100%;
    gap: 3px;
}

.lkn-raised-message {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    margin: 0;
}

.lkn-raised-percent-value {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.lkn-progress-container {
    width: 100%;
    height: 20px;
    background-color: #f3f3f3;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.lkn-progress-bar {
    height: 100%;
    background-color: #00A859;
}

/* Rating */
.lkn-average-rating-widget {
    display: flex;
}

.lkn-star-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lkn-star-rating p {
    font-size: 10px;
    margin: 0px;
    padding: 0px;
}