@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --primary: #3b0436;
    --primary-dark: #190b22;
    --white: white;
    --light: rgb(246, 246, 246);
    --plyr-color-main: #621c5d;
}

body {
    font-family: "Quicksand", sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #190b22;
}

::-webkit-scrollbar-track {
    background-color: #b9a4a4;
}

::-webkit-scrollbar-thumb {
    background-color: var(--plyr-color-main);
    border-radius: 5px;
}

/* bottom nav */
 #mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #19011c;
    border-top: 1px solid #472b4b;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    #mobile-bottom-nav {
        display: block;
    }
}

/* Navigation List */
#mobile-bottom-nav .mobile-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px;
    margin: 0;
    list-style: none;
    height: 56px;
}

/* Navigation Items */
#mobile-bottom-nav .mobile-nav-item {
    text-align: center;
}

/* Navigation Links */
#mobile-bottom-nav .mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 8px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Active state */
#mobile-bottom-nav .mobile-nav-link.active .mobile-nav-icon {
    color: #ff68f1;
}

#mobile-bottom-nav .mobile-nav-link.active .mobile-nav-text {
    color: #ff68f1;
    font-weight: bold;
    text-transform: capitalize;
}

/* Icons */
#mobile-bottom-nav .mobile-nav-icon {
    font-size: 15px;
    margin-bottom: 8px;
    color: #eceaea;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Text labels */
#mobile-bottom-nav .mobile-nav-text {
    font-size: 10px;
    line-height: 1;
    color: #eceaea;
    text-transform: capitalize;
}

/* Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px; /* Match your nav height */
    background: #17041599;
    backdrop-filter: blur(15px);
    z-index: 1001; /* Higher than your nav's z-index: 1000 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-search-container {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-search-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-search-back-btn {
    background: none;
    border: none;
    color: var(--white);
    background-color: var(--primary);
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-search-back-btn:hover {
    background: rgb(203, 203, 203);
}

.mobile-search-title {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0 !important;
    font-weight: 600;
}

.mobile-search-input-container {
    position: relative;
    margin-bottom: 30px;
}

.mobile-search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid rgba(59, 4, 54, 0.1);
    border-radius: 12px;
    font-size: 16px;
    background: var(--light);
    color: var(--primary);
    transition: all 0.3s ease;
    outline: none;
}

.mobile-search-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59, 4, 54, 0.1);
}

.mobile-search-input::placeholder {
    color: rgba(59, 4, 54, 0.5);
}

.mobile-search-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(59, 4, 54, 0.5);
    font-size: 18px;
}

.mobile-search-clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(59, 4, 54, 0.1);
    border: none;
    color: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-search-clear-btn:hover {
    background: rgba(59, 4, 54, 0.2);
}

.mobile-search-clear-btn.visible {
    display: flex;
}

/* Search Filters */
.mobile-search-filters {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(59, 4, 54, 0.1);
}

.mobile-filter-section {
    margin-bottom: 20px;
}

.mobile-filter-section:last-child {
    margin-bottom: 0;
}

.mobile-filter-title {
    color: var(--light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 5px;
}

.mobile-filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--light);
    border: 1px solid rgba(59, 4, 54, 0.1);
    border-radius: 20px;
    color: rgba(59, 4, 54, 0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-filter-chip:hover {
    background: var(--white);
    border-color: rgba(59, 4, 54, 0.2);
    transform: translateY(-1px);
}

.mobile-filter-chip.active {
    background: var(--primary);
    border-color:#b511a6;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(59, 4, 54, 0.3);
}

.mobile-filter-chip i {
    font-size: 12px;
}

.mobile-search-suggestions {
    flex: 1;
    overflow-y: auto;
}

.mobile-search-section {
    margin-bottom: 25px;
}

.mobile-search-section-title {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 5px;
}

.mobile-suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-suggestion-item:hover {
    background: var(--white);
    border-color: rgba(59, 4, 54, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-suggestion-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 4, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.mobile-suggestion-content {
    flex: 1;
}

.mobile-suggestion-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2px;
}

.mobile-suggestion-subtitle {
    color: rgba(59, 4, 54, 0.6);
    font-size: 13px;
}

/* Suggestion Badges */
.mobile-suggestion-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-suggestion-badge.free {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.mobile-suggestion-badge.premium {
    background: rgba(255, 193, 7, 0.1);
    color: #d97706;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.mobile-search-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(59, 4, 54, 0.5);
}

.mobile-search-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.mobile-search-empty-text {
    font-size: 16px;
    margin-bottom: 8px;
}

.mobile-search-empty-subtext {
    font-size: 14px;
    opacity: 0.7;
}


/* Add padding to body to prevent content from being hidden behind nav */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

/* bottom nav */
#navbar {
    height: 70px;
    padding: 7px 20px;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 20px -15px black;
    background-color: #efdeef;
    z-index: 100;
    border-radius: 0 0 15px 15px;
}

#navbar .logo-container {
    flex: 1;
    height: 100%;
}

#navbar .logo {
    height: 100%;
    display: inline-flex;
    align-items: center;

}

#navbar .nav-btns {
    flex: 1;
    justify-content: flex-end;
}

#navbar .logo img {
    height: 100%;
}

/* search bar */
/* Modern Search Bar Styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    flex: 2;
    margin: 0 auto;
}

.search-bar {
    width: 100%;
    height: 48px;
    padding: 0 50px 0 20px;
    border: 2px solid #ffffff;
    border-radius: 24px;
    background: #f5e8f5;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-bar:focus {
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.15);
}

.search-bar::placeholder {
    color: #797a7c;
    font-weight: 400;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
}

.search-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.98);
}

/* Search suggestions dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-suggestions.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-icon {
    margin-right: 12px;
    color: #9aa0a6;
    font-size: 14px;
}

.suggestion-text {
    color: #333;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        margin: 0 10px;
    }

    .search-bar {
        height: 44px;
        font-size: 14px;
        padding: 0 45px 0 16px;
    }

    .search-btn {
        width: 28px;
        height: 28px;
        right: 8px;
        font-size: 12px;
    }
}

/* Animation for search bar appearance */
@keyframes searchBarSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-container {
    animation: searchBarSlideIn 0.4s ease-out;
}


.search-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* search bar */

body {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary)) no-repeat center center/cover;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

.break-link {
    word-wrap: break-word;
    /* Allow breaking long words */
    overflow-wrap: break-word;
    /* Alternative for compatibility */
    white-space: normal;
    /* Allow text to wrap */
    display: inline-block;
    /* Prevents breaking inside flex containers */
    max-width: 100%;
    /* Prevents overflowing */
}

.logo-sm {
    display: none;
}

.sign_up_btn {
    background-color: var(--primary);
    color: white;
    padding: 6px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid transparent;
    font-size: 14px;
}

.border-me {
    border-bottom: 1px solid #4d1e48;
    padding-bottom: 25px;
}

#premium_categories,
#categories {
    scroll-margin-top: 80px;
}

.login_btn {
    background-color: #fff;
    color: var(--primary);
    font-size: 14px;
    padding: 6px 20px;
    border: 1px solid var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: .4s;
    text-transform: uppercase;

}

.login_btn:hover {
    background-color: var(--primary);
    color: white;
}

.sign_up_btn:hover {
    color: white;
    background-color: #190b22;
}

#banners .banner-box {
    width: 100%;
    background-color: rgb(96 42 92);
    padding: 2px;
    border-radius: 6px;
    aspect-ratio: 10/3;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    height: 100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#compunity_post .swiper-slide {
    background: transparent !important;
}

#compunity_post .compunity_post_card {
    background: #ffeeff;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

#compunity_post .compunity_post_card .card-tag {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 1rem;
    display: inline-block;
    padding: 3px 6px;
    border-radius: 5px;
    color: #fff;
    background: #2f0a2fb8;
    border: 1px solid #eee;
}

#compunity_post .swiper-slide a {
    width: initial !important;
    height: initial !important;
}

.swiper-slide a {
    width: 100%;
    height: 100%;
}

.swiper-slide a img {
    display: block;
    width: 100%;
    /*border-radius: 10px;*/
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: rgb(0, 0, 0);
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    transition: 0.4s;
}

.feedback-swiper .swiper-pagination-bullet {
    background: #fff2fe;
}

.swiper-pagination-bullet-active {
    color: rgb(255, 255, 255);
    background: var(--primary);
    width: 25px;
}

#player {
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.play_btn:hover .circle {
    background: var(--primary);
}

.play_btn:hover .circle i {
    color: var(--light);
}

.play_btn .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: var(--light);
    border-radius: 50%;
    transition: .4s;
    cursor: pointer;
    animation: pulse-border 1500ms ease-out infinite;
}

.play_btn .circle i {
    color: var(--primary);
    font-size: 1rem;
    margin-left: 2px;
    margin-top: 1px;
}


.demo_video_card {
    position: relative;
    border-radius: 5px;
    border: 2px solid #2b0c27;
    box-shadow: 5px 5px 20px -10px #531153;
}

.demo_video_card .play_btn {
    position: absolute;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    bottom: 10px;
    background: transparent;
    color: white;
    border: none;
    outline: none;
    background: #2f062f96;
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 3px 6px;
}

.demo_video_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.668) 10%, rgba(95, 7, 95, 0.11) 80%);
}

#demo_videos .swiper-slide {
    border-radius: 10px;
    background: transparent;
    user-select: none;
}

.page-link {
    color: var(--primary);
}

.active>.page-link,
.page-link.active {
    background-color: var(--primary);
    border-color: #fff;
}

#demo_videos .swiper-slide a {
    width: initial;
    height: initial;
}

.demo_video_card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0px 0px 0px 0px #94198a;
    }

    100% {
        box-shadow: 0px 0px 7px 2px #77126e;
    }
}

.demo_video_swiper,
.mySwiper {
    border-radius: 5px;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    min-width: 300px;
    max-width: 950px;
    aspect-ratio: 16/9;
    background-color: rgb(49, 3, 51);
    z-index: -1;
    border-radius: 10px;
    overflow: hidden;
    transition: .4s;
    opacity: 0;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(20, 0, 22, 0.655);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: .4s;
}

.close_popup {
    width: 35px;
    border: none;
    outline: none;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: var(--primary);
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.overlay.active {
    opacity: 1;
    z-index: 100;
}

.popup.active {
    z-index: 1000;
    opacity: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    text-transform: uppercase;
    font-weight: 500;
    color: #3b0436;
}

.login-container {
    display: flex;
    align-items: center;
}

.login-container .img,
.login-container .form-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container .img img {
    width: 80%;
}

.login-container .form-box {
    width: 40%;
    min-width: 260px;
    max-width: 500px;
    background-color: white;
    border-radius: 15px;
    padding: 50px 25px;
}

.text-upper {
    text-transform: uppercase;
}

.highlight {
    background: var(--primary);
    border-radius: 5px;
    color: var(--white);
    padding: 2px 5px;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #4b0c46 !important;
    border-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: #621c5d;
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.text-primary:hover {
    color: #621c5d;
}

.text-primary {
    color: var(--primary) !important;
}

.login-heading {
    line-height: 1.4;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.form-label {
    margin-bottom: .3rem;
}

.loader-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 8px;
    background: rgb(151, 80, 177);
    z-index: 99999;
    width: 0;
    transition: width 0.2s linear;
}

.loader-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgb(255, 219, 255);
    width: 0;
    animation: loader-animation 4s 3s ease-in-out infinite;
}

@keyframes loader-animation {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.text-muted-1 {
    color: rgb(198, 198, 198);
    font-size: 14px;
}

.footer-link a {
    color: rgb(202, 202, 202) !important;
}

.footer-link a:hover {
    color: rgb(244, 244, 244) !important;

}

footer {
    background-color: #19011c;
}

footer.border-top {
    border-color: #65145d !important;
}

.social-links .social-link {
    background-color: #3b0436;
    border-radius: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: .5s;
}

.social-links .social-link i {
    transition: .4s;
}

.social-links .social-link:hover i {
    transform: scale(1.08);
}

.social-links .social-link:hover {
    border: 1px solid rgb(229, 220, 230);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.profile_btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.profile_btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 3px 3px 15px -7px black;
}

.profile_btn .drop_down {
    position: absolute;
    right: 0;
    width: 250px;
    border-radius: 10px;
    list-style-type: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 10px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    transition: .4s;
}

.profile_btn:hover .drop_down {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.drop_down li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2e062e;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.drop_down li .icon {
    margin-right: 10px;
    font-size: 18px;
    color: #2e062e;
}

.drop_down li .text {
    font-size: 16px;
    font-weight: 500;
}

.drop_down li a.disabled {
    background-color: #e4e4e4;
    color: #2e062e;
}

.drop_down li a.disabled:hover {
    background-color: #e4e4e4;
    color: #2e062e;
}

.drop_down li a:hover {
    background-color: #fef4ff;
    color: #2e062e;
}

.drop_down li a:hover .icon {
    color: #2e062e;
}

.text-light-1 {
    color: #cacaca;
}

.card-me {
    background: #fff0fe;
}

/* Popup background */
#installPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 9999;
}

.popup-container {
    background: #ffeffe;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin-top: 5px;
}

/* Buttons */
#installButton {
    margin-right: 10px;
}

#dismissButton {
    background-color: #666;
    color: #fff;
}

.heading img {
    height: 30px;
}

.heading {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 12px;
}

.px-2-me {
    padding-left: .8rem !important;
    padding-right: .8rem !important;
}

.heading h1 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: bold;
    color: var(--light);
    margin-bottom: 0;
}

.category_list {
    overflow-x: hidden;
}

#category_list .card-me {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    /* Ensure all cards have equal height */
    border: 1px solid #620d62;
    box-shadow: 5px 5px 30px -10px #200322;

}

#category_list .card-me .img .ratting-display {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    padding: 3px 5px;
    border-radius: 0 0 0 5px;
    color: white;
    font-size: 12px;
    z-index: 1;
}

.ratting-display:hover {
    color: initial;
}

.ratting-display {
    cursor: pointer;
    font-size: 12px;
}

.ratting-display .ratting_num {
    font-weight: bold;
}

.ratting-display .ratting {
    background: var(--primary);
    padding: 3px 5px;
    border-radius: 5px;
    color: white;
}

#category_list .card-me .img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

#category_list .card-me:hover .img img {
    transform: scale(1.1);
}

#category_list .card-me .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#category_list .card-me .details {
    /* background: #f2e1f2; */
    background: #250528;
    color: black;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    /* Ensures the details take up the remaining height */
}

#category_list .card-me .details .title {
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 1.1;
    font-weight: bold;
    color: var(--light);
}

#category_list .card-me .details .description * {
    margin: 0 !important;
}

#category_list .card-me .details .description {
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    flex-grow: 1;
    /* Allows description to grow and fill space */
    color: #cacaca;
}

#category_list .card-me .details .price {
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 1.2;
}

#category_list .card-me .details .price .discounted {
    font-size: 18px;
    font-weight: bold;
    color: #da76d1;
}

#category_list .card-me .details .price .mrp {
    text-decoration: line-through;
}

#category_list .card-me .details .info {
    font-size: 12px;
    display: flex;
    column-gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    color: #e4e4e4;
}

#category_list .card-me .details .info i {
    color: #e4e4e4;
}

#video_screen {
    aspect-ratio: 16/9;
    width: 100%;
    background: white;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

#video_screen .top_bar {
    width: 100%;
}

#video_screen .video_area {
    display: flex;
    flex: 1;
    height: 100%;
}

#video_screen .video_area .current_video {
    flex: 1;
    overflow: auto;
}

#video_screen .video_area .video_list {
    width: 350px;
    overflow: auto;
    padding: 8px;
    padding-bottom: 50px;
    background: #3b0436;
}

.video_item:first-child {
    margin-top: 0 !important;
}

.video_item {
    display: flex;
    gap: 7px;
    margin-top: 5px;
    padding: 8px;
    border-radius: 10px;
    background-color: #e7d4ea;
    align-items: center;
}

.list-only .video_item:hover {
    background-color: #e7d4ea !important;
}

.video_item:hover {
    background: white;
}

.video_item.active {
    background: white;
}

.video_item .img {
    width: 100px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    flex: 1;
}

.video_item .img .duration {
    position: absolute;
    bottom: 1px;
    right: 3px;
    font-weight: bold;
    background: #0c0c0ca1;
    border-radius: 4px;
    padding: 2px 4px;
    color: white;
    font-size: 8px;
}

.video_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_item .title {
    color: black;
    font-weight: 500;
    font-size: 12px;
    flex: 3;
}

.video_item .title:hover {
    color: black;
}

#shareBtn {
    font-size: 12px;
}

.category_preview {
    border: none;
}

.category_preview .img {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border: 1px solid white;
}

.category_preview .img::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s;
    /*background: radial-gradient(#3506334d, #000000);*/
}

.category_preview .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category_preview .img:hover .play_btn {
    opacity: 1;
    visibility: visible;
}

.category_preview .img:hover::before {
    background: radial-gradient(#3506334d, #000000);
}

.category_preview .img .play_btn {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-weight: bold;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.discounted {
    font-size: 22px;
    font-weight: bold;
    color: #28a745;
    /* Green color to indicate discounted price */
    margin-right: 5px;
}

.mrp {
    font-size: 16px;
    color: #cdcdcd;
    text-decoration: line-through;
}

.days-left {
    font-weight: bold;
    color: #2e062e;
}

.list-icon {
    display: initial;
}

#playlist_btn {
    display: none;
}

.text-sm {
    font-size: 12px;
}

.coundown i {
    color: var(--primary);
}

.coundown {
    border-radius: 5px 5px 0 0;
}

.payment-card {
    border-radius: 5px 0 5px 5px;
}

.payment-method {
    cursor: pointer;
    border: 2px solid transparent;
}

.payment-method.active {
    border-color: var(--primary) !important;
}

.payment-method img {
    max-width: 40px;
}

.payment-label {
    font-size: 15px;
    line-height: 1.1;
    text-transform: capitalize;
    margin-top: 5px;
    margin-bottom: 0;
}

.qr-code {
    display: inline-block;
}

#description {
    font-size: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#description.hidden::-webkit-scrollbar {
    width: 0 !important;
}

#description.hidden {
    max-height: 500px;
    overflow: auto;
    padding: .5rem;
}


/* Optional: Smooth rotation for icon */
#description-toggle i {
    transition: transform 0.3s ease;
}

#description-toggle i.fa-square-caret-up {
    transform: rotate(180deg);
}

.fev_btn:hover {
    cursor: pointer;
    transform: scale(1.08);
}

.cart_btn:hover {
    cursor: pointer;
    transform: scale(1.08);
}

.fev_btn {
    width: 35px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #2d072ec4;
    z-index: 10;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px 0 0 0;
}

.cart_btn {
    width: 35px;
    padding: 5px;
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #2d072ec4;
    z-index: 10;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px 0 0 5px;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
}

/* Hide the default checkbox */
.toggle-checkbox {
    display: none;
}

/* The label acts as the custom switch */
.toggle-label {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* The circle inside the switch */
.toggle-label::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    top: 2.5px;
    left: 3px;
    transition: transform 0.3s;
}

/* Checked state */
.toggle-checkbox:checked+.toggle-label {
    background-color: #3b0436;
}

.toggle-checkbox:checked+.toggle-label::before {
    transform: translateX(25px);
}

/* Text next to the toggle */
.toggle-text {
    font-size: 16px;
    color: #333;
}

.blog-img {
    width: 100%;
    aspect-ratio: 16/9;
}

.blog-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.form-select:focus {
    box-shadow: none !important;
}

/* Container to hold the heart and button */
.heart-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
}

/* Font Awesome heart icon styling */
#heart {
    font-size: 100px;
    color: var(--primary);
    transition: color 1s ease;
    margin-bottom: 20px;
    position: relative;
}

#heart span {
    position: absolute;
    top: 48%;
    left: 52%;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: bold;
    transform: translate(-50%, -50%);
}

#heart.filled span {
    color: #fff;
}

/* Button styling */
.fill-love-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
}

/* Animation for filling the heart with love */
@keyframes fillHeart {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.filled {
    animation: fillHeart 1s forwards;
}

.options {
    max-width: 100vw;
    overflow: hidden;
}

.options .swiper-wrapper {
    justify-content: center;
    /* gap: 30px; */
}

.options .swiper-container {
    width: 100%;
}

.options .swiper-slide {
    display: flex;
    justify-content: center;
    background: transparent;
    width: auto;
    margin-right: 25px;
}

.option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.option .label {
    color: #e7cfe6;
    font-size: .8rem;
    line-height: 1;
}

.option .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 5px 4px #240322;
    /* animation: glow 1.5s infinite alternate; */
}

.option .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_card img {
    width: 100%;
    aspect-ratio: 16/16;
    object-fit: cover;
}

.service_card:hover {
    color: black;
}

.service_card {
    background: #fffbf4;
    color: black;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.service_card .details {
    padding: 8px;
}

.service_card .details .title {
    font-size: .9rem;
    margin-bottom: 8px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
}

.service_card .details .description {
    margin-bottom: 0px;
}

.service-option {
    background: #3b0436;
    border-radius: 5px;
    padding: 2px 5px;
    color: white;
    font-size: 12px;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;

}

.service_card .details .price {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    line-height: 1.2;
}

.service_card .details .price .discounted {
    font-size: 25px;
    font-weight: bold;
    color: #3b0436;
}

.service_card .details .price .mrp {
    text-decoration: line-through;
}

.text-white {
    color: #ffefd1 !important;
}

.selected_img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 8px;
}

.center-error {
    position: absolute;
    width: 80%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: bold;
    background: white;
    padding: 10px;
    border-radius: 10px;
    z-index: 1000000;
}

#subscriptionTabs {
    border: none;
    gap: 10px;
}

.nav-tabs .nav-link {
    color: white;
    border: 1px solid white;
}

.nav-tabs .nav-link.active {
    color: #000000;
    background-color: #ffffff;
}

.nav-tabs .nav-link:hover {
    color: #000000;
    background-color: #cdcdcd;
}

.cart-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f1f3f4;
    border-radius: 10px;
    gap: 1.5rem;
}

.cart-title {
    font-weight: bold;
    margin-bottom: 18px;
    color: var(--primary);
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
    text-align: left;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.item-price {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 5px;
    background: white;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.quantity-number {
    margin: 0 15px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    border: none;
    background: none;
    color: #ff4444;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
}

.remove-btn:hover {
    background: #ffebee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

.total-row {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #eee;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    margin-top: 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
}

.active-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: #b01aa5;
    border: 2px solid white;
    border-radius: 50%;
}

.active-status.right {
    left: initial;
    right: 2px;
    top: 2px;
}

.chat_btn,
.cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Chat button specific styles */
.chat_btn {
    width: 38px;
    height: 38px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.chat a {
    text-decoration: underline;
    text-overflow: wrap;
}

.chat_btn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    color: white;
}

.chat_btn .icon {
    font-size: 21px;
}

/* Cart button specific styles */
.cart-btn {
    width: 38px;
    height: 38px;
    background-color: #7f2878;
    color: white;
    border-radius: 50%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cart-btn .count {
    position: absolute;
    top: -3px;
    right: -3px;
    font-size: 12px;
    background: #cd0048;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.cart-btn:hover {
    background-color: #7f2878;
    transform: scale(1.1);
    color: white;
}

.cart-btn i {
    font-size: 18px;
}

/* Custom checkbox styling */
.form-control-check {
    /* Hide the default checkbox appearance */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Set dimensions */
    width: 20px;
    height: 20px;

    /* Border styling */
    border: 2px solid #3b0436;
    border-radius: 3px;
    outline: none;

    /* Position for the checkmark */
    position: relative;
    cursor: pointer;
}

/* Style for the checked state */
.form-control-check:checked {
    background-color: #3b0436;
}

/* Create a checkmark using ::after pseudo-element */
.form-control-check:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Feedback Section */
.feedback-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--plyr-color-main));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #dedede;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Swiper Container */
.feedback-swiper {
    padding: 20px 0 60px 0;
    overflow: hidden;
}

.feedback-swiper .swiper-slide {
    background: none;
}

/* Feedback Cards */
.feedback-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(59, 4, 54, 0.1);
    transition: all 0.3s ease;
    height: auto;
    position: relative;
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-right: 15px;
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.feedback-date {
    font-size: 0.9rem;
    color: #888;
    text-align: left;
}

.star-rating {
    display: flex;
    gap: 3px;
    margin: 15px 0;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.feedback-message {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    position: relative;
}

.feedback-message::before {
    content: '"';
    font-size: 3rem;
    color: var(--plyr-color-main);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

/* Give Feedback Button */
.feedback-btn-container {
    text-align: center;
    margin-top: 40px;
}

.give-feedback-btn {
    background: linear-gradient(135deg, var(--primary), var(--plyr-color-main));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 4, 54, 0.3);
}

.give-feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 4, 54, 0.4);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--plyr-color-main);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.feedback-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plyr-color-main);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--plyr-color-main));
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 4, 54, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* custom select */
.custom-select {
    position: relative;
    min-width: 200px;
}

.select-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.select-wrapper:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem .8rem;
    color: white;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    font-size: .8rem;
}

.select-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    fill: white;
    opacity: 0.8;
}

.custom-select.active .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.custom-select.active .select-options {
    opacity: 1;
    visibility: visible;
}

.select-option {
    padding: .5rem .6rem;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: .8rem;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
}

.select-option.selected {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border-radius: 8px;
}

/* For light background variant */
.custom-select.light .select-wrapper {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.custom-select.light .select-wrapper:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.custom-select.light .select-trigger {
    color: #2d3748;
}

.custom-select.light .select-arrow {
    fill: #4a5568;
}

.loading-spinner {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.card-me {
    transition: transform 0.2s ease-in-out;
}

#loading-trigger {
    min-height: 100px;
}

/* Smooth transitions for filter changes */
.col-lg-2 {
    transition: opacity 0.3s ease-in-out;
}

#filter-loading-overlay {
    animation: filterLoadingFadeIn 0.2s ease-in;
}

@keyframes filterLoadingFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.category_list {
    min-height: 300px;
}




    


.community-slider .swiper-slide {
    background: transparent !important;
}

.comunity-notification {
    position: relative;
    background-color: #25042333;
    border: 1px solid #96338e;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comunity-notification .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.notification-text .icon {
    /*color: #f39909;*/
    color: #ff50f2;
    font-size: 18px;
}

.comunity-notification .close-btn:hover {
    background-color: #7c1c75;
    color: #ffffff;
}

.notification-text {
    margin: 0 30px 0px 0;
    color: #fff;
    line-height: 1.5;
}

.read-more {
    text-decoration: none;
    font-weight: 500;
    display: block;
    font-size: 14px;
    width: 60% !important;
    margin: auto;
    text-align: center;
    border: 1px solid #c719b9;
    color: white;
    border-radius: 25px;
    padding: 9px;
    background: #7c1c75;
}

.read-more:hover {
    color: white;
    border: 1px solid transparent;
    background: #721c6c;
}

.comunity-notification .para p {
    margin-bottom: 0px;
}

.comunity-notification .para {
    color: white;
    font-size: .8rem;
    margin-left: 27px;
}

.comunity-notification .heading {
    color: #ff50f2;
    font-weight: bold;
}

.community-slider .swiper-wrapper {
    display: flex;
}

.payment-card .video_item .details {
    width: 85%;
}

.payment-card .video_item .img {
    aspect-ratio: 1/1;
}

.payment-card .video_item:hover {
    background-color: #e7d4ea;
}

/* Pre-set the slide widths that Swiper will apply */
.demo_video_swiper .swiper-slide {
    /* Default: 2 slides per view */
    width: calc(50% - 2.5px) !important;
    margin-right: 5px !important;
}

.loading-spinner .loading-label {
    color: var(--light);
}

.spinner-border {
    color: #da43cd;
}
.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
    background-color: #00b3ff;
}

.plyr__menu__container .plyr__control--quality {
    font-weight: 500;
}
/* Tablet: 3 slides per view */
@media (min-width: 768px) {
    .demo_video_swiper .swiper-slide {
        width: calc(33.333% - 3.33px) !important;
    }
}

/* Desktop: 4 slides per view */
@media (min-width: 1024px) {
    .demo_video_swiper .swiper-slide {
        width: calc(25% - 3.75px) !important;
    }
}

/* Remove margin from last slide */
.demo_video_swiper .swiper-slide:last-child {
    margin-right: 0 !important;
}


@media (min-width: 576px) {
    .community-slider[data-slide-count="1"] .swiper-wrapper {
        justify-content: center;
    }
}

@media (min-width: 992px) {

    .community-slider[data-slide-count="1"] .swiper-wrapper,
    .community-slider[data-slide-count="2"] .swiper-wrapper {
        justify-content: center;
    }
}