* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1e293b;
    --border: #e5e7eb;
    --success: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: var(--shadow) !important;
    z-index: 1000 !important;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.logo i {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #10b981;
    /* emerald accent */
}

.nav-link.active {
    color: #10b981;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}
/* Trending Photo Spots */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.trending-card a { text-decoration: none; color: inherit; }
.trending-card {
    position: relative;
    display: flex;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.15s ease;
    height: var(--card-height, 12rem);
}
.trending-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.img-wrapper {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.trending-card:hover .img-wrapper img { transform: scale(1.05); }
.action-buttons {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 10;
}
.action-btn {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border-radius: 0.5rem;
    padding: 0.3rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.action-btn:hover { transform: scale(1.1); }
.content {
    flex: 1;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    color: #111827;
}
.content .location {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

/* Trending Card Footer stats */
.card-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem; /* space between icon and number */
}


.card-footer {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 1.5rem 1.5rem;
}

.card-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.more-link {
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: color 0.3s;
}
.more-link:hover { color: #059669; }

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-outline {
    border: 2px solid #10b981;
    color: #10b981;
    background: transparent;
}

.btn-outline:hover {
    background: #10b981;
    color: white;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    /* emerald-700 */
}

/* Герой секция */
.hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.search-box {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 60px;
    min-height: 80px;
    width: 100%;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    width: 95%;
    color: var(--text-primary);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .search-box {
        border-radius: 30px;
        padding: 20px;
        justify-content: center;
    }
}

.search-input {
    border: none !important;
    background: transparent !important;
    font-size: 1.1rem;
    color: var(--text-primary) !important;
    width: 100%;
    outline: none !important;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    flex-shrink: 0;
    white-space: nowrap;
}

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

/* Секции */
.section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Трендовые фотозоны */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.spot-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.spot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%);
    z-index: 10;
}

.spot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.spot-card:hover .spot-image {
    transform: scale(1.1);
}

.spot-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    transition: transform 0.6s ease;
    object-fit: cover;
}

.spot-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem 2rem;
    /* Increased padding */
    color: white;
    z-index: 20;
}

.spot-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.spot-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.spot-stats {
    padding: 1.5rem;
}

.spot-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.spot-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--secondary);
}

.spot-reviews {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spot-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Карта */
.map-section {
    background: var(--bg-secondary);
}

.map-container {
    height: 500px;
    background: var(--bg-primary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

#yandex-map {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Подборки */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collection-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.collection-images {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    height: 250px;
}

.collection-main {
    grid-row: 1 / -1;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
}

.collection-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.collection-secondary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
}

.collection-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.collection-secondary:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.collection-secondary:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.collection-secondary:nth-child(5) {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.collection-content {
    padding: 1.5rem;
}

.collection-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.collection-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.collection-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Футер */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease;
}

.social-link:hover {
    background: var(--primary);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .nav-actions {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .search-box {
        flex-direction: column;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .spots-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .collections {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collection-images {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .article-hero h1 {
        font-size: 2.5rem !important;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .map-container {
        height: 400px;
    }
}

/* Стили для мастер-классов */
.workshop-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
}

.workshop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.workshop-badge.online {
    background: var(--success);
}

.workshop-level {
    background: var(--bg-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.workshop-level.beginner {
    background: #d1fae5;
    color: #065f46;
}

.workshop-level.intermediate {
    background: #fef3c7;
    color: #92400e;
}

.workshop-level.advanced {
    background: #fee2e2;
    color: #991b1b;
}

/* Стили для автодополнения */
.search-form {
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    flex: 2;
    /* Увеличиваем ширину поля поиска */
    min-width: 220px;
}

/* Центрирование текста в полях ввода */
.search-input {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 56px;
    border: none;
    padding: 0 16px;
    font-size: 1rem;
    outline: none;
    border-radius: 8px;
    background: var(--bg-secondary);
    line-height: 1.5;
    width: 100%;
}

.search-input[type="text"] {
    flex: 1;
}

.search-input[type="text"]::placeholder {
    color: var(--text-secondary);
}

.search-select {
    min-width: 180px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    flex: 0.8;
    /* Уменьшаем ширину селекта */
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
}

.autocomplete-suggestion {
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.selected {
    background-color: var(--bg-secondary);
}

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

.suggestion-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 1rem;
}

.suggestion-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.suggestion-type {
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    align-self: flex-start;
    margin-top: 4px;
}

.autocomplete-loading {
    padding: 20px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

.autocomplete-empty {
    padding: 20px;
    color: var(--text-secondary);
    text-align: center;
}

.autocomplete-error {
    padding: 20px;
    color: #ef4444;
    text-align: center;
    font-size: 0.9rem;
}

.search-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--success);
    color: white;
    border-radius: var(--radius);
    text-align: center;
}

/* Улучшенные стили для поисковой формы */
/* Removed duplicate search-box */

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 56px;
    min-width: 140px;
    justify-content: center;
    white-space: nowrap;
    font-size: 1rem;
    flex: 0.6;
    /* Уменьшаем ширину кнопки */
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.search-btn:active {
    transform: translateY(0);
}

/* Адаптивность для поисковой формы */
@media (max-width: 1024px) {
    .search-box {
        max-width: 700px;
    }

    .search-input-wrapper {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 16px;
        max-width: 500px;
    }

    .search-input {
        min-height: 52px;
        width: 100%;
    }

    .search-input-wrapper {
        width: 100%;
        min-width: auto;
        flex: none;
    }

    .search-btn {
        width: 100%;
        height: 52px;
        min-width: auto;
        flex: none;
    }

    .search-select {
        width: 100%;
        min-width: auto;
        flex: none;
    }
}

@media (max-width: 480px) {
    .search-box {
        max-width: 100%;
        padding: 12px;
    }

    .autocomplete-suggestions {
        max-height: 300px;
    }
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    background: white;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
}

.filter-select:focus {
    border-color: var(--primary);
}

.spot-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .filters-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ---------- Premium Slideshow Styles ---------- */
.slideshow-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--bg-primary);
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10;
}
.nav-arrow.left { left: 1rem; }
.nav-arrow.right { right: 1rem; }
.nav-arrow:hover { background: rgba(0, 0, 0, 0.6); }

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}
.slideshow-overlay:hover .close-btn { opacity: 1; }

.slide-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    z-index: 10;
}

.action-buttons-fixed {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
/* End of Premium Slideshow Styles */
.no-collections {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-collections i {
    margin-bottom: 1rem;
    color: var(--border);
}

.no-collections h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

color: #1f2937;
/* gray-800 */
font-weight: 500;
text-decoration: none;
transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
    /* blue-600 */
}

.nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

.burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .burger-btn {
        display: none;
    }
}