/* Главная */
.listings-wrapper {
	margin-top: 0px;
	margin-bottom: 50px;
}

/* VIP Listings Section */
.vip-listings-section {
	margin-bottom: 40px;
}

.vip-listings-header {
	align-items: center;
	margin-bottom: 10px;
}

.vip-listings-title {
	font-size: clamp(20px, 3vw, 21px);
	font-weight: 700;
	color: var(--text-color);
	margin: 0;
}

.vip-listings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.vip-listings-grid .listing-item a {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.vip-listings-grid .listing-img {
	width: 100%;
	height: 140px;
	padding: 10px;
	border-radius: 15px;
}

.vip-listings-grid .listing-details {
	padding: 0 10px 10px;
}

.vip-listings-grid .listing-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.vip-listings-grid .listing-icons {
	display: flex;
	gap: 2px;
	font-size: 14px;
	color: var(--secondary-color);
}

.listing-icons i {
	padding: 4px 6px; 
	border-radius: 4px;
	line-height: 1; 
	background: #f44336;
	color:#ffffff;
	font-size: 11px;
}

.listing-icons i.bi-fire {
	background-color: var(--fire-color); 
	color: #fff;
	padding: 4px 6px;
	font-size: 11px;
}

.listing-icons i.bi-trophy {
	background-color: var(--top-color); 
	color:#ffffff;
	padding: 4px 6px;
	font-size: 11px;
}

.listing-icons i.bi-rocket {
	background-color: var(--turbo-color); 
	color: #fff; 
	padding: 4px 6px;
	font-size: 11px;
}

.vip-listings-grid .listing-icons i.bi-trophy {
	background-color: var(--vip-color); 
	color: var(--text-color); 
	padding: 4px 6px;
	font-size: 11px;
}

/* Listings Section */
.listings-section {
	margin-bottom: 50px;
}

.listings-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 26px;
}

.listings-title {
	font-size: clamp(20px, 3vw, 21px);
	font-weight: 700;
	color: var(--text-color);
	margin: 0;
}

.view-toggle {
	display: flex;
	gap: 10px;
}

.view-btn {
	background-color: #ffffff00;
	border: 0;
	padding: 0;
	font-size: 16px;
	color: var(--muted-color);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.view-btn.active,
.view-btn:hover {
	color: var(--kontrast-color);
}

.view-btn i {
	font-size: 18px;
}

/* Listing Item Base Styles */
.listing-item {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
}

.listing-item.standard {
	background-color: #fcfff8;
}

.listing-item.standard .listing-footer {
	background-color: #e3efd4; 
	color: var(--text-color); 
}

.listing-item.top {
	background-color: #ffffff;
}

.listing-item.top .listing-footer {
	background-color: #f5f5f5; 
	color: var(--text-color); 
}

.listing-item.premium {
    background-color: #f9f5ec;
}
.listing-item.premium .listing-footer {
    background-color: #ede5d5;
    color: var(--text-color);
}

.listing-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.listing-item a {
	text-decoration: none;
}

.listing-img {
	object-fit: cover;
	border-radius: 8px;
}

.listing-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--kontrast-color);
	margin: 7px 0 7px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 44ch;
}

.listing-description {
	font-size: 13px;
	color: var(--text-color);
	margin: 0 0 10px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 75ch;
}
.listing-descriptions {
	font-size: 13px;
	color: var(--text-color);
	margin: 0 0 10px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 75ch;
}

.listing-price {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-color);
}

.listing-price::after {
	content: " ₸";
}

.listing-footer {
	background-color: #f5f5f5;
	padding: 8px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--muted-color);
}

.listing-footer .views i,
.listing-footer .date i {
	margin-right: 4px;
	color: var(--kontrast-color);
}

/* Grid View */
.listings-grid.grid-view {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.listings-grid .grid-view .listing-item .vip {
	background-color: var(--text-color);
}

.listings-grid.grid-view .listing-item a {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.listings-grid.grid-view .listing-img {
	width: 100%;
	height: 140px;
	padding: 5px;
	border-radius: 15px;
}

.listings-grid.grid-view .listing-details {
	padding: 0 10px 10px;
}

.listings-grid.grid-view .listing-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.listings-grid.grid-view .listing-icons {
	display: flex;
	gap: 2px;
	font-size: 14px;
	color: var(--secondary-color);
}

/* List View */
.listings-grid.list-view {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.listings-grid.list-view .listing-item {
	display: flex;
	flex-direction: row;
	padding: 0;
}

.listings-grid.list-view .listing-link {
	display: flex;
	flex-direction: row;
	padding: 0;
	width: 100%;
}

.listings-grid.list-view .listing-img {
	width: 200px;
	height: 100%;
	padding: 10px;
	border-radius: 15px;
}

.listings-grid.list-view .listing-details {
	flex: 1;
	padding: 10px;
	display: flex;
	flex-direction: column;
}

.listings-grid.list-view .listing-meta {
	margin-top: auto;
	margin-bottom: 0;
	display: flex;
}
.listings-grid.list-view .listing-price {
   font-size: 15px;
   font-weight: 700;
   color: var(--text-color);
   margin-right: 30px;
}
.listings-grid.list-view .listing-icons {
   color: var(--secondary-color);
}

.listings-grid.list-view .listing-footer {
	margin-top: 10px;
}

/* Hot Listings Section */
.hot-listings-section {
	margin-bottom: 50px;
}

.hot-listings-header {
	margin-bottom: 10px;
}

.hot-listings-title{
	font-size: clamp(19px, 2.5vw, 20px);
	font-weight: 700;
	color: var(--text-color);
	margin: 0;
}

.hot-listing-title{
	font-size: 16px;
	font-weight: 700;
	color: var(--kontrast-color);
	margin: 0 0 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 40ch;
}

.hot-listing-description{
	font-size: 13px;
	color: var(--text-color);
	margin: 0 0 10px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 100ch;
}

.hot-listings {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hot-listing-item {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	overflow: hidden;
	display: flex;
}

.hot-listing-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hot-listing-link {
	display: flex;
	text-decoration: none;
	width: 100%;
}

.hot-listing-img {
	width: 120px;
	height: 100%;
	object-fit: cover;
	padding: 10px;
	border-radius: 15px;
}

.hot-listing-details {
	flex: 1;
	padding: 10px;
	display: flex;
	flex-direction: column;
}

.hot-listing-meta {
	display:flex;
	justify-content: space-between;
	margin-top: auto;
}
.views {
	font-size:11px;
	color: var(--text-color);
}

.hot-listing-price {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-color);
}

.hot-listing-price::after {
	content: " ₸";
}

/* Media Queries */
@media (max-width: 1200px) {
	.listings-grid.grid-view {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.listings-grid.grid-view {
		grid-template-columns: repeat(2, 1fr);
	}
	.vip-listings-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hot-listings-section {
		margin-top: 40px;
	}
	.listings-grid.list-view .listing-img {
		width: 150px;
	}
}

@media (max-width: 768px) {
	.listings-grid.grid-view {
		grid-template-columns: repeat(2, 1fr);
	}
	.vip-listings-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.listings-grid.list-view .listing-item {
		flex-direction: column;
	}
	.listings-grid.list-view .listing-img {
		width: 100%;
		height: 160px;
	}
	.hot-listing-item {
		flex-direction: column;
	}
	.hot-listing-link {
		flex-direction: column;
	}
	.hot-listing-img {
		width: 100%;
		height: 140px;
		padding: 10px;
	}
	.hot-listing-details {
		padding: 0 10px 10px;
	}
}

@media (max-width: 576px) {
	.listings-grid.grid-view {
		grid-template-columns: repeat(1, 1fr);
	}
	.vip-listings-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.search-container {
		margin: 0px 0 15px;
	}
	.mobile-menu__container {
		padding: 10px 0;
	}
	.mobile-menu__item {
		font-size: 12px;
	}
	.mobile-menu__item i {
		font-size: 20px;
	}
}

@media (max-width: 991px) {
	.navbar-toggler {
		display: none;
	}
	.navbar-collapse {
		display: none !important;
	}
	.mobile-nav {
		flex-grow: 1;
		justify-content: flex-end;
	}
	.form-select {
		width: auto;
		border: 1px solid var(--border-color);
		border-radius: 6px;
		background-color: #fff;
		color: var(--text-color);
		font-size: 14px;
		padding: 8px;
	}
	.language-link {
		white-space: nowrap;
		padding: 8px 12px;
		border: 1px solid var(--border-color);
		border-radius: 6px;
		background-color: #fff;
		font-size: 14px;
		color: var(--muted-color);
	}
	.mobile-menu {
		display: block;
	}
}

@media (min-width: 992px) {
	.mobile-nav {
		display: none !important;
	}
	.mobile-menu {
		display: none !important;
	}
}
.tippy-box[data-theme~='white-tooltip'] {
	background-color: white;
	color: var(--text-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 14px;
	padding: 10px;
	max-width: 220px;
}
.tippy-box[data-theme~='hot-tooltip'] {
	background-color: #f44336;
	color: var(--textwhite-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 14px;
	padding: 10px;
	max-width: 220px;
}

.tippy-box[data-theme~='top-tooltip'] {
	background-color: var(--top-color);
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 14px;
	padding: 10px;
	max-width: 220px;
}
.tippy-box[data-theme~='vip-tooltip'] {
	background-color: var(--vip-color);
	color: var(--text-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 14px;
	padding: 10px;
	max-width: 220px;
}



























 /* Стили страницы объявления */
/* Стили страницы объявления */
.product-gallery {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.swiper {
    width: 100%;
    border-radius: 8px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-thumbnails {
    height: 80px;
    margin-top: 10px;
}
.swiper-thumbnails .swiper-slide {
    width: 80px;
    height: 80px;
    opacity: 0.6;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.swiper-thumbnails .swiper-slide-thumb-active {
    opacity: 1;
    outline: 2px solid var(--kontrast-color);;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: opacity 0.3s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
}
.product-info {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.product-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.product-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
}
.share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.badge {
    font-size: 14px;
    padding: 6px 12px;
}
.product-details {
    background: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.product-description {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.product-spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}
.product-spec-item span:first-child {
    color: var(--textmini-color);
}
.product-spec-item span:last-child {
    font-weight: 500;
}
.seller-info {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.seller-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}
.seller-name {
    font-size: 18px;
    font-weight: 500;
}
.seller-contact {
    margin-top: 10px;
}
.seller-btn {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.seller-info-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--textmini-color);
    font-size: 14px;
}
.online-indicator {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
}
.btn-outline-primary {
    color: var(--kontrast-color);
	border: 1px solid var(--kontrast-color);
}
.btn-outline-primary:hover {
    background-color: var(--kontrast-color);
    color: white;
	border: 1px solid var(--kontrast-color);
}
.similar-products {
    margin-top: 40px;
}
.similar-product-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.similar-product-img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}
.similar-product-info {
    padding: 15px;
}
.similar-product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-color);
}
.similar-product-price {
    font-size: 18px;
    font-weight: bold;
    color: var(--kontrast-color);;
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FFA41B;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
}
.safety-tips {
    background-color: #f8f9ff;
    border: 1px solid #e0e5ff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}
.safety-tips h4 {
    color: var(--kontrast-color);;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.safety-tips ul {
    margin-bottom: 0;
    padding-left: 20px;
}
.safety-tips li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
}
.share-btn:hover {
    opacity: 0.9;
    color: white;
}
.share-btn.facebook {
    background-color: #3b5998;
}
.share-btn.telegram {
    background-color: #0088cc;
}
.share-btn.vk {
    background-color: #4C75A3;
}
.share-btn.whatsapp {
    background-color: #25D366;
}

/* Адаптивность для product-info */
@media (max-width: 576px) {
    .product-header .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-header .text-muted {
        margin-top: 5px;
    }
    .product-price {
        font-size: 20px;
    }
    .badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    .share-buttons {
        gap: 8px;
    }
    .share-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Адаптивность для галереи */
@media (max-width: 992px) {
    .swiper-thumbnails {
        height: 60px;
    }
    .swiper-thumbnails .swiper-slide {
        width: 60px;
        height: 60px;
    }
    .product-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .swiper-thumbnails {
        height: 50px;
    }
    .swiper-thumbnails .swiper-slide {
        width: 50px;
        height: 50px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* Новые стили для кнопки показать телефон */
.seller-phone-show {
    background-color: var(--kontrast-color); !important;
    color: white !important;
    border-color: var(--kontrast-color); !important;
}

/* Стили для номера телефона после показа */
.seller-phone-hidden {
    background-color: white !important;
    color: var(--kontrast-color); !important;
    font-weight: bold !important;
    border: 1px solid var(--kontrast-color); !important;
}

.seller-phone-hidden .bi-telephone {
    color: var(--kontrast-color); !important;
    font-weight: bold !important;
}

.seller-phone-hidden .phone-number {
    color: var(--kontrast-color); !important;
    font-weight: bold !important;
}

/* Скрытие номера телефона на десктопе */
@media (min-width: 992px) {
    .seller-phone-hidden {
        display: none;
    }
    .seller-phone-show {
        display: inline-block;
    }
}



/* Стили для модального окна жалобы */
.report-modal .modal-content {
    border-radius: 8px;
}
.report-modal .modal-header {
    border-bottom: none;
}
.report-modal .modal-title {
    font-size: 18px;
    color: var(--text-color);
}
.report-modal .modal-body {
    padding: 20px;
}
.report-modal textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
}
.report-modal .btn-primary {
    background-color: var(--kontrast-color);;
    border-color: var(--kontrast-color);;
}
.report-modal .btn-primary:hover {
    background-color: #3f5ab8;
}

/* Стили для кнопки поделиться */
.share-modal .modal-body {
    display: flex;
    gap: 15px;
    justify-content: center;
}
		
		
		
		
		
		
		
		
		
		
		

/* Личный кабинет */
        .profile-sidebar {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .profile-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .profile-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 15px;
            overflow: hidden;
            border: 3px solid #f0f0f0;
        }
        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .profile-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .profile-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 14px;
            color: #28a745;
        }
        .online-indicator {
            width: 8px;
            height: 8px;
            background-color: #28a745;
            border-radius: 50%;
        }
        .profile-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .profile-menu li {
            margin-bottom: 3px;
        }
        .profile-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            text-decoration: none;
            color: #555;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .profile-menu a:hover {
            background-color: rgba(82, 110, 211, 0.1);
            color: var(--kontrasthover-color);
        }
        .profile-menu a.active {
            background-color: var(--kontrast-color);;
            color: white;
        }
        .profile-menu i {
            font-size: 18px;
        }
        .profile-menu .badge {
            margin-left: auto;
        }
        .profile-stats {
            margin-top: 20px;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        .stats-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #555;
        }
        .stats-item .stats-icon {
            width: 32px;
            height: 32px;
            background-color: rgba(82, 110, 211, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--kontrast-color);;
        }
        .stats-item .stats-value {
            font-weight: 600;
            font-size: 16px;
        }
        .stats-item .stats-label {
            color: var(--textmini-color);
            font-size: 13px;
        }
        
        /* Контент кабинета */
        .dashboard-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
			padding: 20px 0px 20px 0px;
        }
        .dashboard-card-header h2 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }
		.dashboard-card h2 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }
        .quick-action-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            text-decoration: none;
            color: var(--text-color);
            transition: all 0.3s;
        }
        .quick-action-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .quick-action-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(82, 110, 211, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: var(--kontrast-color);;
            font-size: 24px;
        }
        .quick-action-title {
            font-size: 14px;
            font-weight: 500;
        }
        .dashboard-ads {
            display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 16px; 
        }
        .ad-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
        }
        .ad-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .ad-img {
            height: 150px;
            width: 100%;
            object-fit: cover;
        }
        .ad-info {
            padding: 15px;
        }
        .ad-title {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
        }
        .ad-price {
            font-size: 18px;
            font-weight: 600;
            color: var(--kontrast-color);;
            margin-bottom: 8px;
        }
        .ad-meta {
            display: flex;
            justify-content: space-between;
            color: var(--textmini-color);
            font-size: 12px;
        }
        .ad-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            gap: 5px;
			z-index: 99;
        }
        .ad-controls {
            padding: 10px 2px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
			justify-content:center;
        }
        .ad-control-btn {
            padding: 5px 10px;
            font-size: 12px;
            color: #555;
            background-color: #f5f5f5;
			text-decoration: none;
            border: none;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .ad-control-btn:hover {
            background-color: #e5e5e5;
        }
       
        .stats-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .stats-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: white;
            font-size: 24px;
        }
        .stats-card-icon.blue {
            background-color: var(--kontrast-color);;
        }
        .stats-card-icon.green {
            background-color: #28a745;
        }
        .stats-card-icon.orange {
            background-color: #fd7e14;
        }
        .stats-card-value {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .stats-card-label {
            color: var(--textmini-color);
            font-size: 14px;
        }
        .activity-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
			padding: 10px;
        }
        .activity-list:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0px;
            width: 2px;
            background-color: #eee;
        }
        .activity-item {
            padding: 15px 15px 15px 40px;
            position: relative;
        }
        .activity-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--kontrast-color);;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 15px;
            z-index: 1;
        }
        .activity-time {
            color: var(--textmini-color);
            font-size: 12px;
            margin-bottom: 5px;
        }
        .activity-text {
            color: var(--text-color);
            font-size: 14px;
        }
        
        @media (max-width: 992px) {
            .header-nav {
                margin-top: 15px;
                gap: 10px;
            }
            .header-nav a {
                display: block;
                margin-bottom: 10px;
                padding: 5px 0;
            }
            .dashboard-ads {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .dashboard-ads {
                grid-template-columns: 1fr;
            }
        }
		
		
		

/* Ads */
.ads-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.ads-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.ads-filter-select {
	width:100%;
    border-color: var(--kontrast-color);
    box-shadow: 0 0 0 0.2rem rgba(2, 40, 44, 0.25);
    outline: none;
	margin-right:15px;
}
.add-ad-btn {
    white-space: nowrap;
}
.ads-filter .btn {
	font-size: 12px;
	padding: 5px 6px;
	border-radius: 6px;
	border: 1px solid var(--kontrast-color);
}
.ads-filter .btn.active {
	background-color: var(--kontrast-color);
	color: white;
	border-color: var(--kontrast-color);
}
.btn.focus, .btn:focus {
    box-shadow: var(--kontrastshadow-color)!important;
    outline: 0px;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--textwhite-color)!important;
    background-color: var(--kontrast-color)!important;
}
.add-ad-btn {
	font-size: 13px;
	padding: 8px 16px;
	border-radius: 6px;
	background-color: var(--kontrast-color);
	color: white;
	text-decoration:auto;
}
.add-ad-btn:hover {
	background-color: var(--kontrasthover-color);
	text-decoration:auto;
}
.add-ad-btns {
	font-size: 13px;
	padding: 8px 16px;
	border-radius: 6px;
	background-color: var(--kontrast-color);
	color: white;
	text-decoration:auto;
}
.add-ad-btns:hover {
	background-color: var(--kontrasthover-color);
	text-decoration:auto;
}
.ads-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ad-item {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.2s;
}
.ad-item:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ad-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.ad-content {
	padding: 15px;
}
.ad-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	text-decoration: none;
	display: block;
}
.ad-title:hover {
	color: var(--kontrast-color);
}
.ad-price {
	font-size: 15px;
	font-weight: 600;
	color: var(--kontrast-color);
	margin-bottom: 8px;
}
.ad-status {
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 12px;
	font-weight: 500;
	margin-bottom: 8px;
	display: inline-block;
}
.ad-status.active {
	background-color: #e6f4ea;
	color: #28a745;
}
.ad-status.pending {
	background-color: #fff3cd;
	color: #856404;
}
.ad-status.archived {
	background-color: #f8d7da;
	color: #dc3545;
}
.ad-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ad-actions .btn {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 6px;
}
.empty-ads {
	text-align: center;
	padding: 40px;
	color: #777;
}
.empty-ads i {
	font-size: 40px;
	margin-bottom: 20px;
	color: var(--kontrast-color);
}
.empty-ads p {
	font-size: 14px;
	margin-bottom: 20px;
}
.empty-ads .btn {
	font-size: 13px;
	padding: 8px 16px;
	border-radius: 6px;
	background-color: var(--kontrast-color);
	color: white;
}
/* Benefits */
.benefits-section {
	margin-top: 30px;
}
.benefits-title {
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 16px;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.benefit-item {
	text-align: center;
}
.benefit-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(82, 110, 211, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	color: var(--kontrast-color);
	font-size: 24px;
}
.benefit-title {
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}
.benefit-description {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

@media (max-width: 992px) {
	.ads-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ads-controls {
		flex-direction: column;
		align-items: flex-start;
	}
	.add-ad-btn{
		margin-top:15px;
		width:100%;
		text-align: center;
	}
}
@media (max-width: 768px) {
	.ads-grid {
		grid-template-columns: 1fr;
	}
	.benefits-grid {
		grid-template-columns: 1fr;
	}
	.ad-actions {
		flex-direction: column;
	}
	.ad-actions .btn {
		width: 100%;
	}
		.ads-controls {
		display:flex;
	}
}		
@media (max-width: 768px) {
	
}

/* VIP Section */
.vip-section {
  margin-top: 30px;
  margin-bottom: 40px;
}

.vip-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.vip-header h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  margin: 0;
}

.vip-count {
  background-color: #eee;
  color: var(--textmini-color);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 5px;
  margin-left: 10px;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.vip-item {
  position: relative; /* Anchor for overlay positioning */
}

.vip-item a {
  display: block;
  position: relative;
  text-decoration: none;
}

.vip-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.3s ease; /* Smooth fade for hover */
}



.check-tag {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: rgba(255, 215, 0, 0.8);
  color: var(--text-color);
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}

.vip-price {
  position: absolute;
  right: 5px;
  bottom: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}

.city-price {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}

/* Overlay Styles */
.vip-overlay {
  position: absolute;
  width: 165%;
  height: 155px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center overlay by default */
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 20; /* Above vip-item and other elements */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Shadow for depth */
}

.vip-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.vip-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0 0 0 / 73%);
  padding: 3px 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.vip-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0 0 0 / 73%);
  padding: 3px 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vip-overlay-title {
  color: white;
  font-size: clamp(11px, 1.8vw, 12px);
  font-weight: 400;
  display: block;
  text-align: left;
}

.vip-overlay-views {
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.vip-overlay-views i {
  margin-right: 6px;
}

.vip-overlay-price {
  color: white;
  font-size: 13px;
  font-weight: 500;
}

/* Hover Effect */
.vip-item a:hover .vip-overlay {
  opacity: 1;
  visibility: visible;
}

.vip-item a:hover .vip-img,
.vip-item a:hover .vip-tag,
.vip-item a:hover .vip-price,
.vip-item a:hover .city-price,
.vip-item a:hover .check-tag {
  opacity: 0; /* Hide original elements during hover */
}

.card {
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	border: none;
	margin-bottom: 20px;
	background-color: #fff;
}
.register-card, .services-card {
	padding: 20px;
}
.register-card h4, .services-card h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
}
.register-card p, .services-card p {
	color: #757575;
	font-size: 14px;
	margin-bottom: 15px;
}
.register-button {
	background-color: var(--kontrast-color);;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 8px 15px;
	font-size: 14px;
}
.services-button {
	border: 1px solid var(--kontrast-color);;
	background-color: transparent;
	color: var(--kontrast-color);;
	border-radius: 4px;
	padding: 8px 15px;
	font-size: 14px;
}

/* Стили формы фильтра в категориях */
.search-form { background: #fff; padding: 0px 15px 10px 15px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); margin-bottom: 20px; }
.offcanvas-header { background: #f8f9fa; }
.offcanvas-body { padding: 3px; }
.filter-btn-mobile { margin-bottom: 20px; }
@media (max-width: 768px) {
	.fiter_mob{
		font-size:14px;
	}
}

 /* Стили для формы */
    .search-form {
        padding: 20px;
        border-radius: 10px;
    }

    /* Кастомные поля с плавающими лейблами */
    .form-custom {
        position: relative;
        width: 100%;
    }

    .form-custom input,
    .form-custom select {
        height: calc(2.5rem + 2px);
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        border: 1px solid #ced4da;
        width: 100%;
        transition: border-color 0.2s ease-in-out;
    }

    .form-custom input:focus,
    .form-custom select:focus {
        border-color: var(--kontrast-color);;
        box-shadow: 0 0 0 0.2rem rgba(2, 40, 44, 0.25);
        outline: none;
    }

    .form-custom label {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.9rem;
        color: #6c757d;
        background: #fff;
        padding: 0 0.25rem;
        transition: all 0.2s ease-in-out;
        pointer-events: none;
    }

    .form-custom input:focus ~ label,
    .form-custom input:not(:placeholder-shown) ~ label,
    .form-custom select:focus ~ label,
    .form-custom select:not([value=""]) ~ label {
        top: 0;
        transform: translateY(-50%) scale(0.85);
        color: var(--kontrast-color);;
    }

    /* Стили для селектов */
    .form-select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
        background-position: right 0.75rem center;
        background-size: 16px 12px;
        padding-right: 2rem;
    }

    /* Поля для цены */
    .price-range {
        gap: 0.5rem;
    }

    .price-range input {
        width: 100%;
    }

    .price-range span {
        font-size: 0.9rem;
        color: #333;
    }

    /* Кнопка отправки */
    .filter-submit {
        background-color: var(--kontrast-color, var(--kontrast-color););
        border-color: var(--kontrast-color, var(--kontrast-color););
        height: 36px;
        font-size: 0.9rem;
        border-radius: 8px;
        padding: 0 1.5rem;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .filter-submit:hover {
        background-color: var(--kontrasthover-color, #064f56);
        border-color: var(--kontrasthover-color, #064f56);
        transform: translateY(-2px);
    }

    .filter-submit i {
        font-size: 1rem;
    }

    /* Стили для Offcanvas */
    .offcanvas-header {
        background: var(--kontrast-color);
        color: #ffffff;
    }
	
	 .offcanvas-headers {
	   display: flex;
       justify-content: space-between; 
        background: #ffffff ;
        color: var(--kontrast-color);
		padding: 10px 10px 0px 10px;
        height: 50px;
    }

    .offcanvas-body {
        padding: 0px;
    }

    .filter-btn-mobile {
        margin-bottom: 20px;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .search-form-desktop {
            display: none;
        }
        .filter-btn-mobile {
            display: block !important;
        }
    }

    @media (min-width: 769px) {
        .filter-btn-mobile {
            display: none;
        }
    }
	
	
	
	
	
	
	
	
	
@media (max-width: 768px) {
	.search-form-desktop { display: none; }
	.filter-btn-mobile { display: block !important; }
}
@media (min-width: 769px) {
	.filter-btn-mobile { display: none; }
}
/* Стили формы фильтра в категориях */
		
/* Adjust overlay for rightmost items */
@media (min-width: 993px) {
  .vip-grid .vip-item:nth-child(5n) .vip-overlay {
    left: auto;
    right: 0;
    transform: translate(0, -50%); /* Align right edge, keep vertical centering */
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .vip-grid .vip-item:nth-child(3n) .vip-overlay {
    left: auto;
    right: 0;
    transform: translate(0, -50%); /* Align right edge, keep vertical centering */
  }
}

@media (max-width: 768px) {
  .vip-grid .vip-item:nth-child(2n) .vip-overlay {
    left: auto;
    right: 0;
    transform: translate(0, -50%); /* Align right edge, keep vertical centering */
  }
.vip-item a:hover .vip-img,
.vip-item a:hover .vip-tag,
.vip-item a:hover .vip-price,
.vip-item a:hover .city-price,
.vip-item a:hover .check-tag {
  opacity: 1; /* Hide original elements during hover */
}
}

/* Platform Description */
.platform-title {
  text-align: center;
  margin: 40px 0 15px;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 900;
  color: var(--text-color);
}

.platform-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--textmini-color);
  margin-bottom: 25px;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.category-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgb(0 28 34 / 54%)
}

.category-icon {
  width: 40px;
  height: 40px;
  background-color: #e0f1ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
  color: var(--kontrast-color, var(--kontrast-color););
}

.category-name {
  font-size: clamp(13px, 2vw, 14px);
  font-weight: bold;
  margin-bottom: 5px;
}

.category-count {
  font-size: 12px;
  color: var(--textmini-color);
}

/* New Listings */
.new-section {
  margin-top: 25px;
  margin-bottom: 20px;
}

.new-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.new-header h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  margin: 0;
}

.new-header a {
  text-decoration: none;
}

.new-count {
  background-color: #eee;
  color: var(--textmini-color);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 5px;
  margin-left: 10px;
}

.new-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.new-item a {
  display: block;
  position: relative;
  text-decoration: none;
}

.new-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.vip-tag {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background-color: var(--fire-color);
    color: #373838;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 2px 0px 5px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.new-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background-color: var(--new-color);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 5px 0px 5px;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.new-price {
  position: absolute;
  right: 5px;
  bottom: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 2px;
}

.new-details {
  padding: 6px 5px;
}

.new-title {
  font-size: clamp(12px, 1.3vw, 13px);
  font-weight: bold;
  color: var(--text-color);
  margin: 0 0 8px;
  line-height: 1.4;
}


.balance-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.balance-info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.balance-icon {
	width: 32px;
	height: 32px;
	background-color: rgba(82, 110, 211, 0.1);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--kontrast-color);;
}
.balance-value {
	font-weight: 600;
	font-size: 16px;
}
.balance-label {
	color: #777;
	font-size: 13px;
}
.btn-top-up {
	background-color: var(--kontrast-color);
	color: white;
	padding: 6px 12px;
	border-radius: 4px;
	border: none;
	font-size: 14px;
	transition: all 0.2s;
	text-decoration:auto;
}
.btn-top-up:hover {
	background-color: var(--kontrasthover-color);
}



/* About Section */
.desc-section {
  margin-bottom: 40px;
}

.modal-custom-width {
  max-width: 620px;
  width: 100%;
}

/* Media Queries for Content */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .new-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vip-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  .new-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .new-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .new-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .new-details {
    padding: 6px 0px 0px 2px;
  }
  .vip-overlay {
    width: 130%; /* Slightly smaller increase for small screens */
    height: 156px; /* 120px * 1.3 */
  }
  .vip-overlay-title {
    font-size: clamp(12px, 1.5vw, 14px); /* Smaller font for small screens */
  }
  .vip-overlay-views,
  .vip-overlay-price {
    font-size: 12px; /* Adjust font size for small screens */
  }
  .vip-overlay-top,
  .vip-overlay-bottom {
    padding: 6px 10px; /* Slightly less padding */
  }
  .profile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: #555;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 15px;
}
.form-select {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 0rem;
	        width: 100%;
}
}