h1, h2, h3 {
    line-height: 1.3
}

h1 {
    font-size: clamp(24px, 4vw, 42px) !important;
    font-weight: 700 !important;
    color: white;
}

h2 {
    font-size: clamp(22px, 4vw, 35px);
    font-weight: 600;
    text-align: center;
    color: white;
}

h3 {
    font-size: clamp(20px, 3vw, 25px) !important;
    font-weight: 600;
    margin: 25px 0
}

p {
    font-size: clamp(15px, 2.5vw, 18px);
    color: white;
    
    margin-bottom: 1rem
}


ol, ul {
    padding-left: 1.2rem
}

ul > li {
    font-size: clamp(16px, 3vw, 18px) !important;
    font-weight: 400;
    padding: 0
}

ol:not(.breadcrumb) li {
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 600;
    margin: 15px 0;
    padding: 0;
    list-style-type: none
}

.tag-search-section {
    background: #fff
}

.tag-search-section h2 {
    font-weight: 600;
    color: #111
}

.tags-wrapper {
    max-width: 100%;
    padding: 0 1rem
}

.tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.tag:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.tag-blue {
    background: #eaf2ff;
    color: #3b82f6
}

.tag-purple {
    background: #f1eaff;
    color: #7c3aed
}

.tag-pink {
    background: #ffe9f1;
    color: #ec4899
}

.tag-orange {
    background: #fff1e6;
    color: #f97316
}

.tag-yellow {
    background: #fff7d6;
    color: #ca8a04
}

.tag-indigo {
    background: #eef2ff;
    color: #6366f1
}

.price-table {
    width: 100%;
    overflow-x: auto;
    padding: 10px
}

.price-table table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 12px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.price-table table thead {
    background: linear-gradient(to right, #ff867a, #ff4b68)
}

.price-table table thead th {
    padding: 16px;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #fff;
    border-right: 1px solid #000
}

.price-table table thead th:last-child {
    border-right: none
}

.price-table table tbody tr {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative
}

.price-table table tbody tr:hover {
    background: linear-gradient(to right, #ff867a, #ff4b68);
    color: #fff;
    -webkit-transform: scale(1.01);
    transform: scale(1.01)
}

.price-table table tbody tr:hover td {
    color: #fff
}

.price-table table tbody tr:not(:last-child) {
    border-bottom: 1px solid #000
}

.price-table table tbody tr td {
    padding: 14px 16px;
    font-size: 17px;
    border-right: 1px solid #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.price-table table tbody tr td:last-child {
    border-right: none
}

.price-table table tbody tr td:nth-child(2) {
    font-weight: 600
}

@media (max-width: 768px) {
    .price-table table {
        min-width: 100%;
        border-radius: 0
    }

    .price-table table thead {
        display: none
    }

    .price-table table tbody tr {
        display: block;
        margin-bottom: 18px;
        border: 2px solid #ff4b68;
        border-radius: 10px;
        overflow: hidden
    }

    .price-table table tbody tr:hover {
        -webkit-transform: none;
        transform: none
    }

    .price-table table tbody tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 12px 14px;
        border: none;
        border-bottom: 1px solid #000
    }

    .price-table table tbody tr td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #ff4b68
    }

    .price-table table tbody tr td:last-child {
        border-bottom: none
    }
}

a {
    text-decoration: none !important
}

@media (max-width: 576px) {
    body {
        font-size: 14px
    }

    ol, ul {
        padding-left: 1rem
    }
}

.main {
}

.main .popular-locations ul {
    list-style: none;
    padding-left: 0;
    margin: 0
}

.main .popular-locations a {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease
}

.main .popular-locations a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #ff867a;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.main .popular-locations a:hover {
    color: #ff867a
}

.main {
}

@media (max-width: 768px) {
    .main .popular-locations {
        text-align: center
    }

    .main .popular-locations ul {
        margin-bottom: 20px
    }

    .main .popular-locations a {
        padding-left: 16px;
        font-size: 15px
    }

    .main .popular-locations a:before {
        width: 7px;
        height: 7px
    }
}

.main .available-girls {
    width: 100%
}

.main .available-girls .girl-card {
    background-color: rgba(246, 246, 246, 0.9647058824);
    border-radius: 14px;
    overflow: hidden;
    margin: 20px 0
}

.main .available-girls .girl-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px
}

.main .available-girls .girl-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #222
}

.main .available-girls .girl-card ul {
    padding: 0;
    margin: 0
}

.main .available-girls .girl-card ul li {
    list-style: none;
    font-size: 15px
}

.main .available-girls .girl-card ul li strong {
    font-weight: 600
}

.main .available-girls .girl-card__image {
    padding: 20px
}

.main .available-girls .girl-card__image img {
    border-radius: 12px;
    max-height: 280px;
    -o-object-fit: cover;
    object-fit: cover
}

.main .available-girls .girl-card__content {
    padding: 24px
}

@media (max-width: 767px) {
    .main .available-girls .girl-card {
        text-align: center
    }

    .main .available-girls .girl-card__image {
        padding-bottom: 0
    }

    .main .available-girls .girl-card__image img {
        max-height: 220px
    }

    .main .available-girls .girl-card__content {
        padding: 20px
    }
}

.main {
}


.main {
}

.main .blog-card {
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.main .blog-card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08)
}

.main .blog-card img {
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0;
    margin: 0
}

.main .blog-card .card-body {
    padding-left: 16px;
  	padding-right: 16px;
  	padding-top: 0;
  	padding-bottom: 0;
}

.main .blog-card .card-body .badge {
    background: linear-gradient(to right, #ff867a, #ff4b68) !important;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block
}

.main .blog-card .card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3
}

.main .blog-card .card-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0
}

.main .blog-card .card-footer {
    padding: 12px 16px;
    font-size: 13px;
    color: #777
}

.main {
}

.main .sidebar {
    position: sticky;
    top: 20px
}

.main .sidebar-box {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden
}

.main .sidebar-box .sidebar-title {
    background: linear-gradient(to right, #ff867a, #ff4b68) !important;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 10px
}

.main .sidebar-box ul {
    padding: 0;
    margin: 0
}

.main .sidebar-box ul li {
    list-style: none;
}

.main .sidebar-box ul li:last-child {
    border-bottom: none
}

.main .sidebar-box ul li a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    background: #f9f9f9;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.main .sidebar-box ul li a:hover {
    background: linear-gradient(to right, #ff867a, #ff4b68);
    color: #ffffff !important
}

.main {
}

@media (max-width: 991px) {
    .main .sidebar {
        position: static;
        margin-top: 30px
    }

    .main .blog-card img {
        height: 180px
    }
}

@media (max-width: 575px) {
    .main .blog-listing h1 {
        font-size: 28px
    }

    .main .blog-card img {
        height: 160px
    }

    .main .blog-card .card-body h3 {
        font-size: 16px
    }
}

.main .single-post p {
    font-size: 15px;
    line-height: 1.7;
    color: white
}


.main .single-post ul li {
    font-size: 15px;
    margin-bottom: 6px
}

.main .single-post a {
    color: #ff4b68;
    text-decoration: none
}

.main .single-post a:hover {
    text-decoration: underline
}

.main {
}

.main .social-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px
}

.main .social-share .share {
    font-size: 16px;
    color: white;
    padding: 8px 23px;
    border: 1px solid #007bff;
    background-color: #007bff;
    color: #333
}

.main {
}

.main .sidebar .sidebar-box {
    border: 1px solid #ddd;
    margin-bottom: 20px
}

.main .sidebar .sidebar-box h4 {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    margin: 10px
}

.main .sidebar .sidebar-box ul {
    list-style: none;
}

.main .sidebar .sidebar-box ul li {
    margin-bottom: 6px;
  	padding-left: 10px;
}

.main .sidebar .sidebar-box ul li a {
    font-size: 14px;
    color: #333
}

.main .sidebar .sidebar-box ul li a:hover {
    color: #ff4b68
}

.main {
}

.main .post-meta .tag {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 10px;
    font-size: 13px
}

.category-filter-list {
    max-height: 250px;
    overflow-y: auto;
}

/* Optional: style the scrollbar */
.category-filter-list::-webkit-scrollbar {
    width: 4px;
}

.category-filter-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-filter-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.category-filter-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}