/* Enhanced Poland.css - Modern responsive design */

/* Modern color palette and animations */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --animation-speed: 0.3s;
}

/* Global animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateX(-10px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Stats Section */
.hero-stats {
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-stats .row {
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    color: white;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-title-custom {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.section-container {
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-container:nth-child(even) {
    animation-delay: 0.2s;
}

/* Filters Container */
.filters-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--animation-speed) ease;
}

.filters-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Map Styling */
#map {
    height: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--primary-gradient) border-box;
    overflow: hidden;
}

/* Location Cards */
.location-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all var(--animation-speed) ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--animation-speed) ease;
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.location-card-recom {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all var(--animation-speed) ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.location-card-recom:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

/* Image Styling */
.location-image {
    height: 220px;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.location-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.location-card:hover .location-image::before {
    transform: translateX(100%);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--animation-speed) ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

/* Category Icons for Location Cards */
.location-card .category-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6c757d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all var(--animation-speed) ease;
    z-index: 2;
}

.location-card:hover .category-icon {
    background: var(--primary-gradient);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

/* Content Styling */
.location-content {
    padding: 2rem 1.5rem;
}

.location-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    line-height: 1.3;
}

.location-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-meta i {
    opacity: 0.7;
}

.location-description {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Buttons */
.view-details-btn {
    width: 100%;
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--animation-speed) ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--animation-speed) ease;
    background: transparent;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

/* Event Cards */
.event-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all var(--animation-speed) ease;
    overflow: hidden;
    background: white;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.event-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform var(--animation-speed) ease;
}

.event-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
    display: none;
}

.empty-state.d-block {
    display: block !important;
    animation: fadeInUp 0.6s ease-out;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.5;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loader */
#loader {
    display: none;
    padding: 3rem;
    text-align: center;
}

#loader.d-flex {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/* Page Title Section */
.page-title-section {
    padding: 8rem 0 4rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.page-title-section .container {
    position: relative;
    z-index: 1;
}

.page-title-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-title-section .lead {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Additional smooth animations */
.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Form enhancements */
.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all var(--animation-speed) ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-1px);
}

/* Alert enhancements */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.alert-success {
    background: var(--success-gradient);
    color: white;
}

.alert-danger {
    background: var(--secondary-gradient);
    color: white;
}

.alert-info {
    background: var(--dark-gradient);
    color: white;
}

/* Card enhancements */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all var(--animation-speed) ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
    border: none;
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

/* Animation delays for staggered effects */
.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }
.location-card:nth-child(5) { animation-delay: 0.5s; }
.location-card:nth-child(6) { animation-delay: 0.6s; }

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.3s; }
.event-card:nth-child(3) { animation-delay: 0.5s; }

/* ===== MODERN CATEGORIES FILTER ===== */
.categories-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
}

.categories-header h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.category-search-container {
    position: relative;
    margin-bottom: 1.25rem;
}

.category-search-container input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: #fafafa;
    font-family: inherit;
}

.category-search-container input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
    background: #ffffff;
}

.category-search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.1rem;
}

.categories-list {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.category-item {
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    animation: slideIn 0.3s ease forwards;
}

.category-item:hover {
    background: #f7fafc;
    border-color: #e2e8f0;
    transform: translateX(2px);
}

.category-item:last-child {
    margin-bottom: 0;
}

/* Checkbox version for category filtering */
.category-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.category-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: #667eea;
    flex-shrink: 0;
}

.category-label-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    min-width: 0;
}

.category-text {
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
    font-weight: 500;
    color: #2d3748;
    font-size: 0.95rem;
}

.categories-list .category-icon {
    margin-right: 0.75rem;
    color: #667eea;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    position: static;
    transform: none;
}

.category-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
}

.category-count {
    background: #edf2f7;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

/* Selected state for checkbox version */
.category-checkbox input[type="checkbox"]:checked ~ .category-label-content .category-text {
    color: #667eea;
    font-weight: 600;
}

.category-checkbox input[type="checkbox"]:checked ~ .category-label-content .category-count {
    background: #667eea;
    color: white;
}

/* Link version for category navigation */
.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.category-link:hover {
    text-decoration: none;
    color: #667eea;
    background: #f0f4ff;
}

.category-link-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
}

.category-link:hover .category-count {
    background: #667eea;
    color: white;
}

/* Mobile toggle button */
.mobile-filter-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    border: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-filter-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.mobile-filter-toggle i {
    font-size: 1.4rem;
}

/* Desktop layout */
.desktop-grid-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1039;
    backdrop-filter: blur(4px);
}
/* Responsive Design */
@media (max-width: 1200px) {
    .hero-stats {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title-custom {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .desktop-grid-layout {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-stats .row {
        margin: 0 -10px;
    }
    
    .hero-stats .col-md-3,
    .hero-stats .col-6 {
        padding: 0 10px;
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .section-title-custom {
        font-size: 2rem;
    }
    
    .page-title-section {
        padding: 6rem 0 3rem;
    }
    
    .page-title-section h1 {
        font-size: 3rem;
    }
    
    .page-title-section .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        padding: 1.5rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .section-title-custom {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-container {
        margin-bottom: 3rem;
    }
    
    .filters-container {
        padding: 1.5rem;
    }
    
    #map {
        height: 400px;
    }
    
    .location-image {
        height: 180px;
    }
    
    .location-content {
        padding: 1.5rem 1.25rem;
    }
    
    .page-title-section {
        padding: 4rem 0 2rem;
        background-attachment: scroll;
    }
    
    .page-title-section h1 {
        font-size: 2.5rem;
    }
    
    .page-title-section .lead {
        font-size: 1.2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Mobile categories filter */
    .desktop-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        z-index: 1050;
        margin: 0;
        border-radius: 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transition: left 0.35s ease;
        padding-top: 2rem;
    }
    
    .categories-container.active {
        left: 0;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .categories-header {
        padding: 0 1.5rem 1rem 1.5rem;
        margin: -2rem -1.5rem 1.5rem -1.5rem;
        background: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title-custom {
        font-size: 1.6rem;
    }
    
    .page-title-section h1 {
        font-size: 2rem;
    }
    
    .page-title-section .lead {
        font-size: 1.1rem;
    }
    
    .location-image {
        height: 160px;
    }
    
    .location-content {
        padding: 1.25rem 1rem;
    }
    
    .location-title {
        font-size: 1.1rem;
    }
    
    .d-grid.gap-3.d-sm-flex {
        gap: 1rem !important;
    }
    
    .d-grid.gap-3.d-sm-flex .btn {
        margin-bottom: 0.5rem;
    }
}

/* Scrollbar styling */
.categories-list::-webkit-scrollbar {
    width: 6px;
}

.categories-list::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 3px;
}

.categories-list::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.categories-list::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Staggered animations for category items */
.category-item:nth-child(1) { animation-delay: 0.05s; }
.category-item:nth-child(2) { animation-delay: 0.1s; }
.category-item:nth-child(3) { animation-delay: 0.15s; }
.category-item:nth-child(4) { animation-delay: 0.2s; }
.category-item:nth-child(5) { animation-delay: 0.25s; }

/* START: კატეგორიების სიის ხატულისა და ტექსტის გასწორება */
.categories-list .category-link .category-icon {
    position: static;
    transform: none;
}

.categories-list .category-name {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* END: კატეგორიების სიის ხატულისა და ტექსტის გასწორება */

/* START: რეკომენდებული ლოკაციის ბარათზე ::after ფსევდო-ელემენტის გაუქმება */
.location-card-recom::after {
    content: none !important;
}
/* END: რეკომენდებული ლოკაციის ბარათზე ::after ფსევდო-ელემენტის გაუქმება */

/* START: "View All Events" ღილაკის სტილი */
.btn-view-all-events {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all-events:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}
/* END: "View All Events" ღილაკის სტილი */