/**
 * Stylesheet for the "Landing Locali" page template
 *
 * @package Pornomondo
 */

#pm-template-locali-wrapper {
    --pm-loc-primary: #e6005c;
    --pm-loc-secondary: #9c27b0;
    --pm-loc-dark: #0f172a;
    --pm-loc-gray: #64748b;
    --pm-loc-light: #f8fafc;
    --pm-loc-border: #f1f5f9;
}

/* 1. Hero Section */
#pm-template-locali-wrapper .pm-venue-hero {
    position: relative;
    padding: 120px 0;
    margin-bottom: 0;
    background: url('https://pornomondo.com/wp-content/uploads/2026/06/bg-night-club.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: visible;
    z-index: 10;
}

#pm-template-locali-wrapper .pm-venue-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.45), rgba(15, 23, 42, 0.85));
    z-index: 1;
}

#pm-template-locali-wrapper .pm-venue-hero-content {
    position: relative;
    z-index: 2;
}

#pm-template-locali-wrapper .pm-venue-hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    margin-top: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

#pm-template-locali-wrapper .pm-venue-hero h1 span {
    color: var(--pm-loc-primary);
}

#pm-template-locali-wrapper .pm-venue-hero-subtitle {
    font-size: 1.25rem; /* ~20px */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
    margin-bottom: 35px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

#pm-template-locali-wrapper .pm-venue-search-form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    overflow: visible !important;
}

#pm-template-locali-wrapper .pm-search-field-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5px;
    overflow: visible !important;
}

#pm-template-locali-wrapper .pm-search-field-wrap:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

#pm-template-locali-wrapper .pm-search-field-wrap .dashicons {
    position: absolute;
    left: 20px;
    color: var(--pm-loc-primary);
    font-size: 20px;
    width: 20px;
    height: 20px;
    z-index: 5;
    pointer-events: none;
}

#pm-template-locali-wrapper .pm-venue-search-input {
    background: transparent !important;
    border: none !important;
    padding: 15px 15px 15px 50px !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    outline: none !important;
    width: 100% !important;
    box-shadow: none !important;
}

#pm-template-locali-wrapper .pm-venue-search-input::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
    opacity: 1 !important;
}

#pm-template-locali-wrapper .pm-venue-search-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}
#pm-template-locali-wrapper .pm-venue-search-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}
#pm-template-locali-wrapper .pm-venue-search-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

#pm-template-locali-wrapper .pm-venue-search-btn {
    background: var(--pm-loc-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 35px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

#pm-template-locali-wrapper .pm-venue-search-btn:hover {
    background: #fff;
    color: var(--pm-loc-primary);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(230,0,92,0.4);
}

/* Unified Centered Section Headers */
#pm-template-locali-wrapper .pm-section-header {
    text-align: center;
    margin-bottom: 40px;
}

#pm-template-locali-wrapper .pm-section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--pm-loc-dark);
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

#pm-template-locali-wrapper .pm-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--pm-loc-primary);
    border-radius: 2px;
}

#pm-template-locali-wrapper .pm-section-header p {
    color: var(--pm-loc-gray);
    font-size: 1.05rem;
    margin-top: 5px;
    margin-bottom: 0;
}

#pm-template-locali-wrapper .pm-section-header .pm-section-subtitle {
    color: var(--pm-loc-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* 2. Category Selector */
#pm-template-locali-wrapper .pm-venue-category-selector {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--pm-loc-border);
}

#pm-template-locali-wrapper .pm-cat-badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 1024px) {
    #pm-template-locali-wrapper .pm-cat-badges-container {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Category badge card styles */
#pm-template-locali-wrapper .pm-venue-cat-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 160px;
    border-radius: 16px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
}

#pm-template-locali-wrapper .pm-venue-cat-badge:hover {
    transform: translateY(-5px);
    border-color: var(--pm-loc-primary);
    box-shadow: 0 12px 25px rgba(230, 0, 92, 0.3);
}

/* Image background */
#pm-template-locali-wrapper .pm-cat-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

#pm-template-locali-wrapper .pm-venue-cat-badge:hover .pm-cat-bg-img {
    transform: scale(1.1);
}

/* Dark gradient overlay */
#pm-template-locali-wrapper .pm-cat-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

#pm-template-locali-wrapper .pm-venue-cat-badge:hover .pm-cat-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, rgba(15, 23, 42, 0.2) 100%);
}

/* Fallback Icon */
#pm-template-locali-wrapper .pm-cat-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    z-index: 3;
    transition: transform 0.3s ease;
}

#pm-template-locali-wrapper .pm-venue-cat-badge:hover .pm-cat-icon {
    transform: scale(1.15) rotate(4deg);
}

/* Content Container */
#pm-template-locali-wrapper .pm-cat-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

#pm-template-locali-wrapper .pm-cat-name-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#pm-template-locali-wrapper .pm-cat-count-badge {
    font-size: 0.8rem;
    background: rgba(230, 0, 92, 0.2);
    border: 1px solid rgba(230, 0, 92, 0.4);
    color: #ff80b3;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#pm-template-locali-wrapper .pm-venue-cat-badge:hover .pm-cat-count-badge {
    background: var(--pm-loc-primary);
    color: #ffffff;
    border-color: var(--pm-loc-primary);
    box-shadow: 0 2px 8px rgba(230, 0, 92, 0.4);
}

/* No background image cards (specific gradient) */
#pm-template-locali-wrapper .no-bg-image {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

#pm-template-locali-wrapper .pm-cat-view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

#pm-template-locali-wrapper .pm-view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--pm-loc-primary), var(--pm-loc-secondary));
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(230, 0, 92, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#pm-template-locali-wrapper .pm-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 0, 92, 0.45);
    background: linear-gradient(135deg, var(--pm-loc-secondary), var(--pm-loc-primary));
}

/* 3. Regions & Cities List */
#pm-template-locali-wrapper .pm-venue-regions-section {
    padding: 60px 0;
    background: #fafafa;
    border-bottom: 1px solid var(--pm-loc-border);
}

/* Cities Section Title */
#pm-template-locali-wrapper .pm-cities-section-title {
    text-align: center;
    margin: 45px 0 25px 0;
}

#pm-template-locali-wrapper .pm-cities-section-title h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pm-loc-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

#pm-template-locali-wrapper .pm-regions-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

#pm-template-locali-wrapper .pm-regions-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#pm-template-locali-wrapper .pm-regions-slider::-webkit-scrollbar {
    display: none;
}

#pm-template-locali-wrapper .pm-region-card {
    flex: 0 0 170px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

#pm-template-locali-wrapper .pm-region-card-img-wrapper {
    position: relative;
    width: 170px;
    height: 210px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#pm-template-locali-wrapper .pm-region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#pm-template-locali-wrapper .pm-region-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
}

#pm-template-locali-wrapper .pm-region-card h4 {
    text-align: center;
    margin: 15px 0 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pm-loc-dark);
}

#pm-template-locali-wrapper .pm-region-card:hover .pm-region-card-img-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230,0,92,0.25);
}

#pm-template-locali-wrapper .pm-region-card:hover img {
    transform: scale(1.08);
}

/* Slider navigation arrows */
#pm-template-locali-wrapper .pm-slider-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

#pm-template-locali-wrapper .pm-slider-arrow.prev {
    left: 10px;
}

#pm-template-locali-wrapper .pm-slider-arrow.next {
    right: 10px;
}

#pm-template-locali-wrapper .pm-regions-slider-wrapper .pm-slider-arrow {
    top: 105px;
    transform: translateY(-50%);
}

#pm-template-locali-wrapper .pm-slider-arrow:hover {
    background: var(--pm-loc-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

#pm-template-locali-wrapper .pm-slider-arrow:hover .dashicons {
    color: #fff;
}

#pm-template-locali-wrapper .pm-slider-arrow .dashicons {
    color: var(--pm-loc-dark);
    font-size: 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* Cities Multi-column Grid */
#pm-template-locali-wrapper .pm-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#pm-template-locali-wrapper .pm-region-cities-group {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    border: 1px solid var(--pm-loc-border);
}

#pm-template-locali-wrapper .pm-region-cities-group h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pm-loc-dark);
    border-bottom: 2px solid var(--pm-loc-primary);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#pm-template-locali-wrapper .pm-region-count {
    font-size: 0.8rem;
    background: #ffe4e6;
    color: var(--pm-loc-primary);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 800;
}

#pm-template-locali-wrapper .pm-region-cities-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#pm-template-locali-wrapper .pm-region-cities-group ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

#pm-template-locali-wrapper .pm-region-cities-group ul li a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

#pm-template-locali-wrapper .pm-region-cities-group ul li a:hover {
    color: var(--pm-loc-primary);
}

#pm-template-locali-wrapper .pm-city-count {
    font-size: 0.75rem;
    background: #e0f2fe;
    color: #0284c7;
    padding: 1px 7px;
    border-radius: 20px;
    font-weight: 700;
}

/* 4. New Venues Grid & Premium Cards */
#pm-template-locali-wrapper .pm-venue-latest-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--pm-loc-border);
}

#pm-template-locali-wrapper .pm-latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

@media (min-width: 1024px) {
    #pm-template-locali-wrapper .pm-latest-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

/* Premium Card Layout and Formatting */
#pm-template-locali-wrapper .pm-venue-card-premium {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 320px; /* Uniform height for grid card */
}

#pm-template-locali-wrapper .pm-venue-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(230, 0, 92, 0.18);
    border-color: rgba(230, 0, 92, 0.35);
}

#pm-template-locali-wrapper .pm-venue-card-link-wrapper {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

#pm-template-locali-wrapper .pm-venue-card-media-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

#pm-template-locali-wrapper .pm-venue-img-hover {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#pm-template-locali-wrapper .pm-venue-card-premium:hover .pm-venue-img-hover {
    transform: scale(1.08);
}

#pm-template-locali-wrapper .pm-venue-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    color: #64748b;
}

#pm-template-locali-wrapper .pm-venue-img-placeholder .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
}

#pm-template-locali-wrapper .pm-venue-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

#pm-template-locali-wrapper .pm-venue-card-premium:hover .pm-venue-card-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.2) 100%);
}

#pm-template-locali-wrapper .pm-venue-card-content-overlay {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    padding: 24px;
    z-index: 3;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

#pm-template-locali-wrapper .pm-venue-card-meta-row {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

#pm-template-locali-wrapper .pm-venue-card-category-badge {
    background: var(--pm-loc-primary);
    color: #fff;
    max-width: 58%;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(230, 0, 92, 0.3);
}

#pm-template-locali-wrapper .pm-venue-card-rating-badge {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: #f59e0b;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex: 0 0 auto;
}

#pm-template-locali-wrapper .pm-venue-card-rating-badge .pm-card-reviews-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 2px;
}

#pm-template-locali-wrapper .pm-venue-card-rating-badge .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

#pm-template-locali-wrapper .pm-venue-card-title-text {
    margin: auto 0 0;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

#pm-template-locali-wrapper .pm-venue-card-location-text {
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

#pm-template-locali-wrapper .pm-venue-card-location-text .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--pm-loc-primary);
}

#pm-template-locali-wrapper .pm-venue-card-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

#pm-template-locali-wrapper .pm-venue-card-meta-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

#pm-template-locali-wrapper .pm-card-meta-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
}

#pm-template-locali-wrapper .pm-card-meta-detail .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

#pm-template-locali-wrapper .pm-card-meta-detail:hover {
    background: var(--pm-loc-primary);
    border-color: var(--pm-loc-primary);
    transform: scale(1.1);
}

#pm-template-locali-wrapper .pm-venue-card-price-text {
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255, 215, 0, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
}

/* 5. Favorites Section Carousel */
#pm-template-locali-wrapper .pm-venue-favorites-section {
    padding: 60px 0;
    background: #fafafa;
    border-bottom: 1px solid var(--pm-loc-border);
}

#pm-template-locali-wrapper .pm-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

#pm-template-locali-wrapper .pm-carousel-wrapper .pm-slider-arrow {
    top: 50%;
    transform: translateY(-50%);
}

#pm-template-locali-wrapper .pm-carousel-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 25px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#pm-template-locali-wrapper .pm-carousel-scroll::-webkit-scrollbar {
    display: none;
}

#pm-template-locali-wrapper .pm-carousel-scroll .pm-venue-card-premium {
    flex: 0 0 290px;
    width: 290px;
    height: 320px;
}

#pm-template-locali-wrapper .pm-carousel-card {
    flex: 0 0 290px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

#pm-template-locali-wrapper .pm-carousel-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

#pm-template-locali-wrapper .pm-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

#pm-template-locali-wrapper .pm-carousel-card-img-wrap {
    position: relative;
    height: 195px;
    overflow: hidden;
    background: #1a1a1a;
}

#pm-template-locali-wrapper .pm-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#pm-template-locali-wrapper .pm-carousel-card:hover .pm-carousel-img {
    transform: scale(1.06);
}

#pm-template-locali-wrapper .pm-carousel-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

#pm-template-locali-wrapper .pm-carousel-img-placeholder .dashicons {
    font-size: 40px;
    color: #cbd5e1;
}

#pm-template-locali-wrapper .pm-premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: linear-gradient(135deg, #e6005c, #ff3385);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(230,0,92,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#pm-template-locali-wrapper .pm-carousel-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#pm-template-locali-wrapper .pm-carousel-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

#pm-template-locali-wrapper .pm-carousel-cat-badge {
    background: #fff0f6;
    border: 1px solid #ffdeeb;
    color: #e6005c;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

#pm-template-locali-wrapper .pm-carousel-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pm-loc-dark);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

#pm-template-locali-wrapper .pm-carousel-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

#pm-template-locali-wrapper .pm-carousel-stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
}

#pm-template-locali-wrapper .pm-carousel-stars .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

#pm-template-locali-wrapper .pm-carousel-reviews-text {
    font-size: 0.8rem;
    color: var(--pm-loc-gray);
    font-weight: 700;
}

#pm-template-locali-wrapper .pm-carousel-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--pm-loc-gray);
    font-weight: 600;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

#pm-template-locali-wrapper .pm-carousel-location .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #94a3b8;
}

/* 6. Blog Section */
#pm-template-locali-wrapper .pm-venue-blog-section {
    padding: 60px 0;
    background: #fff;
}

#pm-template-locali-wrapper .pm-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

#pm-template-locali-wrapper .pm-blog-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#pm-template-locali-wrapper .pm-blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

#pm-template-locali-wrapper .pm-blog-card-img-wrap {
    height: 190px;
    overflow: hidden;
    background: #e2e8f0;
    position: relative;
}

#pm-template-locali-wrapper .pm-blog-img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#pm-template-locali-wrapper .pm-blog-card:hover .pm-blog-img-hover {
    transform: scale(1.06);
}

#pm-template-locali-wrapper .pm-blog-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pm-loc-primary), var(--pm-loc-secondary));
    color: #fff;
}

#pm-template-locali-wrapper .pm-blog-img-placeholder .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
}

#pm-template-locali-wrapper .pm-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#pm-template-locali-wrapper .pm-blog-card-date {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
}

#pm-template-locali-wrapper .pm-blog-card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pm-loc-dark);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#pm-template-locali-wrapper .pm-blog-card-excerpt {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 7. Responsive Styles */
@media (max-width: 991px) {
    #pm-template-locali-wrapper .pm-venue-search-form {
        flex-direction: column;
        border-radius: 24px;
        padding: 15px;
        gap: 12px;
    }
    #pm-template-locali-wrapper .pm-search-field-wrap:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 12px;
    }
    #pm-template-locali-wrapper .pm-venue-search-btn {
        width: 100%;
        padding: 14px 0;
    }
}

/* Autocomplete search dropdown */
#pm-template-locali-wrapper .pm-autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
}

#pm-template-locali-wrapper .pm-autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: #fff !important;
    text-decoration: none !important;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#pm-template-locali-wrapper .pm-autocomplete-item:last-child {
    border-bottom: none;
}

#pm-template-locali-wrapper .pm-autocomplete-item:hover {
    background: rgba(230, 0, 92, 0.2);
}

#pm-template-locali-wrapper .pm-autocomplete-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #1e293b;
    flex-shrink: 0;
}

#pm-template-locali-wrapper .pm-autocomplete-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

#pm-template-locali-wrapper .pm-autocomplete-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

#pm-template-locali-wrapper .pm-autocomplete-meta {
    font-size: 0.75rem;
    color: #cbd5e1;
}

#pm-template-locali-wrapper .pm-autocomplete-no-results {
    padding: 15px;
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}
