/* ============================================
   CLEAN CSS RESET & BASE
   ============================================ */

:root {
    --primary-blue: #1a5f7a;
    --secondary-blue: #2d8faa;
    --accent-gold: #d4a762;
    --dark-blue: #0a2e3d;
    --light-blue: #e6f2f7;
    --sand-color: #f4e9d8;
    --sea-green: #57cc99;
    --wave-blue: #87ceeb;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-color: #333333;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    overflow-anchor: none;
}

body {
    font-family: 'Vazirmatn', 'Noto Naskh Arabic', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    direction: rtl;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Naskh Arabic', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-blue);
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--dark-blue);
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--secondary-blue);
    margin-bottom: 0;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-navigation .nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    color: var(--dark-gray);
}

.main-navigation .nav-menu li a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.main-navigation .nav-menu li.current-menu-item a {
    background-color: var(--primary-blue);
    color: var(--white);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-wrapper {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.search-toggle:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    display: none;
    z-index: 1001;
    margin-top: 10px;
}

.search-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.search-form {
    display: flex;
    margin-bottom: 15px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.9rem;
}

.search-form button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background-color: var(--secondary-blue);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px) brightness(0.8);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 46, 61, 0.8) 0%, rgba(26, 95, 122, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    text-align: right;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #fff;
    text-shadow: 
        0 0 5px #FFD700,
        0 0 10px #FFD700,
        0 0 15px #FFD700,
        0 0 20px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff;
    }
    to {
        text-shadow: 
            0 0 10px #FFD700,
            0 0 20px #FFD700,
            0 0 30px #FFD700;
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(50%) translateY(0);
    }
    40% {
        transform: translateX(50%) translateY(-10px);
    }
    60% {
        transform: translateX(50%) translateY(-5px);
    }
}

/* ============================================
   ABOUT NEIGHBORHOOD SECTION
   ============================================ */

.about-neighborhood {
    padding: 80px 0 100px;
    background-color: var(--light-blue);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: 500px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    height: 100%;
}

.about-content .section-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 15px;
}

.about-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-blue);
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    text-align: justify;
}

.about-gallery {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
    min-height: 500px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   QUICK ACCESS SECTION
   ============================================ */

.quick-access-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-blue);
}

.section-header p {
    color: var(--secondary-blue);
    font-size: 1.1rem;
    margin-top: 15px;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.access-card {
    background-color: var(--light-blue);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

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

.access-card.cultural { border-top: 4px solid #8B4513; }
.access-card.history { border-top: 4px solid #1a5f7a; }
.access-card.news { border-top: 4px solid #2E8B57; }
.access-card.gallery { border-top: 4px solid #9370DB; }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.access-card.cultural .card-icon { color: #8B4513; }
.access-card.history .card-icon { color: #1a5f7a; }
.access-card.news .card-icon { color: #2E8B57; }
.access-card.gallery .card-icon { color: #9370DB; }

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-hover {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 20px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: var(--transition);
}

.access-card:hover .card-hover {
    transform: translateY(0);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: 30px 0;
    background-color: var(--light-blue);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--secondary-blue);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--dark-blue);
}

.blog-excerpt {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-read-more:hover {
    color: var(--secondary-blue);
    gap: 12px;
}

.archive-container {
    text-align: center;
    margin-top: 40px;
}

.archive-container .btn.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 8px;
    background-color: transparent;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.archive-container .btn.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.blog-card.coming-soon {
    opacity: 0.7;
    filter: grayscale(20%);
}

.blog-card.coming-soon:hover {
    opacity: 0.9;
    transform: translateY(-5px);
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.location-card {
    display: grid;
    grid-template-columns: 300px 1fr;    
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.location-image {
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.location-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.location-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.location-year {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.location-description {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-details {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--secondary-blue);
}

.location-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.location-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 60px;
    align-items: stretch;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.static-location-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
}

.static-location-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(26, 95, 122, 0.1), transparent);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding-top: 80px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.contact-info {
    padding: 0;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.footer-logo .logo-text h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.footer-logo .logo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: justify;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-details i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
    padding-right: 10px;
}

.footer-column ul li a i {
    color: var(--accent-gold);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    transform: translateX(-5px);
    color: var(--white);
}

.social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.instagram:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(224, 58, 98, 0.3);
}

.social-link.whatsapp {
    background-color: #25D366;
}

.social-link.whatsapp:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    width: 24px;
}

.social-link span {
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-pages-menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.footer-pages-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.footer-pages-menu li a:hover {
    color: var(--accent-gold);
}

.footer-pages-menu li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-pages-menu li a:hover::after {
    width: 100%;
    left: 0;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.copyright-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-5px);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--light-gray);
    background-color: var(--light-blue);
}

.mobile-logo .logo-wrapper {
    gap: 10px;
}

.mobile-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.mobile-logo h2 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.mobile-logo p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    flex: 1;
    padding: 20px 0;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition);
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.mobile-nav-menu li a i {
    width: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid var(--light-gray);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-btn.telegram {
    background-color: #0088cc;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CATEGORY PAGE STYLES
   ============================================ */

.category-page-wrapper {
    background-color: var(--light-blue);
}

.category-page-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 60px;
    margin-bottom: 60px;
}

.category-page-header .header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.category-page-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.blog-main-content {
    padding-bottom: 80px;
}

.blog-grid-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-articles-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-article-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-article-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image-side {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.article-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-article-item:hover .article-image-side img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid var(--primary-blue);
}

.article-content-side {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--secondary-blue);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--dark-blue);
}

.article-excerpt {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.article-excerpt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}

.article-read-more:hover {
    color: var(--secondary-blue);
    gap: 12px;
}

.no-content-message {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.no-content-icon {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.no-content-message h2 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.no-content-message p {
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
    padding: 20px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.pagination a {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.pagination a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.pagination .current {
    background-color: var(--primary-blue);
    color: var(--white);
}

.pagination .prev,
.pagination .next {
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ============================================
   SINGLE POST PAGE
   ============================================ */

.single-post {
    padding: 40px 0 60px;
    background-color: #fafafa;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.post-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.post-main-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.post-intro-image {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.post-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.post-intro-image:hover img {
    transform: scale(1.03);
}

.post-header {
    padding: 40px 60px 30px;
}

.post-title {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
}

.post-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue));
    border-radius: 2px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 25px 60px;
    background-color: rgba(26, 95, 122, 0.03);
    border-top: 1px solid rgba(26, 95, 122, 0.05);
    border-bottom: 1px solid rgba(26, 95, 122, 0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    color: var(--secondary-blue);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
}

.meta-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.post-content {
    padding: 40px 60px;
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.post-content p {
    margin-bottom: 1.8rem;
    text-align: justify;
    position: relative;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 12px;
}

.post-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--primary-blue);
}

.post-content blockquote {
    border-right: 4px solid var(--accent-gold);
    padding: 30px 40px;
    margin: 3rem 0;
    background: linear-gradient(135deg, rgba(212, 167, 98, 0.05), rgba(26, 95, 122, 0.05));
    border-radius: 15px;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-blue);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.post-content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(26, 95, 122, 0.1);
    font-family: Georgia, serif;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.contact-info-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(26, 95, 122, 0.1);
    border: 1px solid rgba(26, 95, 122, 0.08);
    overflow: hidden;
    margin: 30px 60px;
    position: relative;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.contact-header {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary-blue), #2d8faa);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-header i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-content {
    padding: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contact-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(26, 95, 122, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.contact-icon.telegram {
    background: linear-gradient(135deg, #0088CC, #24A1DE);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #34B7F1, #009688);
}

.contact-icon.globe {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contact-icon.map {
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-blue);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-value {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    word-break: break-word;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(26, 95, 122, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(-5px);
}

.contact-item-wide {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed rgba(26, 95, 122, 0.2);
}

.event-info-card {
    background: linear-gradient(135deg, #fff9f0, #fff5e6);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(212, 167, 98, 0.15);
    border: 1px solid rgba(212, 167, 98, 0.1);
    overflow: hidden;
    margin: 30px 60px;
    position: relative;
}

.event-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #e6b450);
}

.event-header {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--accent-gold), #e6b450);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-header i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
}

.event-header h3 {
    margin: 0;
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
}

.event-content {
    padding: 40px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.event-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(212, 167, 98, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-gold), #e6b450);
}

.event-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 167, 98, 0.2);
}

.event-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-blue);
    background: rgba(212, 167, 98, 0.15);
    flex-shrink: 0;
}

.event-details {
    flex: 1;
}

.event-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-blue);
    margin-bottom: 5px;
    font-weight: 500;
}

.event-value {
    display: block;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
}

.event-item-wide {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(212, 167, 98, 0.05), rgba(212, 167, 98, 0.1));
    border: 2px dashed rgba(212, 167, 98, 0.3);
}

.gallery-section {
    margin: 30px 60px;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(26, 95, 122, 0.1);
}

.gallery-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--dark-blue);
    font-size: 1.4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 95, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.tags-section {
    padding: 40px 60px;
    border-top: 1px solid rgba(26, 95, 122, 0.05);
}

.tags-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.tags-header i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.tags-header h3 {
    margin: 0;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tags-list a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--primary-blue);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 122, 0.1);
}

.tags-list a:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
}

/* ============================================
   COMMENTS SECTION
   ============================================ */

.comments-section {
    margin-top: 60px;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.comments-title {
    color: var(--dark-blue);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-blue);
    font-size: 1.5rem;
}

.comments-list {
    margin-bottom: 40px;
}

.comment-item {
    padding: 25px;
    margin-bottom: 25px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius);
    border-right: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.comment-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

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

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.comment-info {
    flex: 1;
}

.comment-author {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.comment-meta {
    font-size: 0.9rem;
    color: var(--secondary-blue);
}

.comment-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-content {
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.comment-reply {
    text-align: left;
}

.comment-reply a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.comment-reply a:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
}

.comment-children {
    margin-top: 25px;
    margin-right: 40px;
    padding-right: 20px;
    border-right: 2px solid var(--medium-gray);
}

.comments-pagination {
    margin: 40px 0;
    text-align: center;
}

.comments-pagination a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.comments-pagination a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.comments-pagination .current {
    background-color: var(--primary-blue);
    color: var(--white);
}

.comment-form {
    margin-top: 50px;
    padding: 40px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius);
}

.form-title {
    color: var(--dark-blue);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-blue);
    font-size: 1.5rem;
}

.logged-in {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.logged-in a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
}

.logged-in a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    color: var(--dark-gray);
    background-color: var(--white);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: left;
}

.form-submit button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit button:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.comment-closed {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--dark-gray);
}

/* ============================================
   PAGE STYLES
   ============================================ */

.single-page {
    padding: 40px 0;
}

.page-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-blue);
    text-align: center;
}

.page-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    line-height: 1.8;
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

.suru-sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.suru-widget {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 95, 122, 0.08);
    transition: all 0.3s ease;
}

.suru-widget:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.suru-widget-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-blue);
    font-size: 1.15rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.suru-widget-icon {
    color: var(--primary-blue);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    background-color: var(--light-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suru-widget-text {
    flex: 1;
}

.suru-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.suru-category-item {
    margin-bottom: 10px;
}

.suru-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.suru-category-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateX(-5px);
    border-color: var(--primary-blue);
}

.suru-category-link:hover .suru-category-icon {
    color: var(--white);
}

.suru-category-icon {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.suru-category-name {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
}

.suru-category-count {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.suru-category-link:hover .suru-category-count {
    background-color: rgba(255, 255, 255, 0.9);
}

.suru-recent-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suru-recent-post {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 122, 0.1);
    height: 85px;
}

.suru-recent-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 95, 122, 0.2);
}

.suru-recent-post-link {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    align-items: center;
}

.suru-post-thumb {
    width: 75px;
    height: 61px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-blue);
    flex-shrink: 0;
}

.suru-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.suru-recent-post:hover .suru-post-image {
    transform: scale(1.08);
}

.suru-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.suru-post-title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-blue);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 36px;
    transition: color 0.3s ease;
}

.suru-recent-post:hover .suru-post-title {
    color: var(--primary-blue);
}

.suru-post-meta {
    display: flex;
    align-items: center;
}

.suru-post-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--secondary-blue);
    font-weight: 500;
}

.suru-post-date i {
    color: var(--primary-blue);
    font-size: 0.7rem;
}

.suru-popular-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suru-popular-post {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 167, 98, 0.15);
    position: relative;
    height: 85px;
}

.suru-popular-post::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-gold), #e6b450);
    z-index: 1;
}

.suru-popular-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 167, 98, 0.15);
    border-color: rgba(212, 167, 98, 0.3);
}

.suru-popular-post-link {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.suru-popular-thumb {
    position: relative;
    width: 75px;
    height: 61px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-blue);
}

.suru-popular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.suru-popular-post:hover .suru-popular-image {
    transform: scale(1.08);
}

.suru-popular-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.suru-popular-title {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark-blue);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 36px;
    transition: color 0.3s ease;
}

.suru-popular-post:hover .suru-popular-title {
    color: var(--primary-blue);
}

.suru-popular-meta {
    display: flex;
    align-items: center;
}

.suru-popular-views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--dark-blue);
    background-color: rgba(212, 167, 98, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.suru-popular-post:hover .suru-popular-views {
    background-color: rgba(212, 167, 98, 0.2);
}

.suru-popular-views i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.suru-recent-comments {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suru-comment-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    border: 1px solid rgba(26, 95, 122, 0.1);
    transition: all 0.3s ease;
}

.suru-comment-item:hover {
    transform: translateX(-3px);
    border-color: rgba(26, 95, 122, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.suru-comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.suru-comment-avatar {
    color: var(--primary-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.suru-comment-author-info {
    flex: 1;
}

.suru-comment-author-name {
    font-size: 0.85rem;
    color: var(--dark-blue);
    font-weight: 700;
    display: block;
}

.suru-comment-excerpt {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin-bottom: 10px;
    padding-right: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 36px;
}

.suru-comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(26, 95, 122, 0.08);
}

.suru-comment-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--secondary-blue);
    font-weight: 500;
}

.suru-comment-date i {
    font-size: 0.7rem;
}

.suru-comment-link {
    color: var(--primary-blue);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: rgba(26, 95, 122, 0.05);
    display: flex;
    align-items: center;
    gap: 5px;
}

.suru-comment-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.suru-comment-link i {
    font-size: 0.7rem;
}

.suru-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suru-tag-item {
    display: inline-block;
    padding: 7px 14px;
    background: linear-gradient(135deg, var(--light-blue), #e6f2f7);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(26, 95, 122, 0.1);
}

.suru-tag-item:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.2);
}

.suru-no-posts,
.suru-no-comments {
    text-align: center;
    padding: 25px 20px;
}

.suru-no-content {
    color: var(--secondary-blue);
    font-size: 0.85rem;
    background-color: var(--light-blue);
    border-radius: var(--border-radius-sm);
    border: 1px dashed rgba(26, 95, 122, 0.2);
    padding: 20px;
    font-weight: 500;
}

.suru-no-content i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-blue);
}

.suru-no-content p {
    margin: 0;
}

/* ============================================
   MINIMAL PAGES STYLES
   ============================================ */

.minimal-page-wrapper {
    background-color: var(--light-blue);
    min-height: 100vh;
}

.minimal-page-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.minimal-page-header.search-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.minimal-page-header .header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.minimal-page-header h1 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.search-form-inline {
    max-width: 500px;
    margin: 30px auto 0;
}

.search-form-inline .form-group {
    position: relative;
    display: flex;
}

.search-form-inline .search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
}

.search-form-inline .search-input:focus {
    outline: none;
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.search-form-inline .search-submit {
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    border: none;
    padding: 0 25px;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.search-form-inline .search-submit:hover {
    background-color: var(--white);
}

.minimal-main-content {
    padding-bottom: 60px;
}

.minimal-layout {
    max-width: 800px;
    margin: 0 auto;
}

.minimal-articles-list {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.minimal-list-container {
    padding: 20px;
}

.minimal-list-item {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
    align-items: center;
}

.minimal-list-item:last-child {
    border-bottom: none;
}

.minimal-list-item:hover {
    background-color: var(--light-blue);
    transform: translateX(-5px);
    border-radius: var(--border-radius-sm);
}

.item-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.minimal-list-item:hover .item-number {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.item-title a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--transition);
}

.item-title a:hover {
    color: var(--primary-blue);
}

mark {
    background-color: var(--accent-gold);
    color: var(--dark-blue);
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.item-excerpt {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.item-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--secondary-blue);
}

.item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.item-meta i {
    font-size: 0.9rem;
}

.item-action .read-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.item-action .read-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.no-content-message.minimal,
.no-content-message.search {
    text-align: center;
    padding: 60px 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.no-content-message.search {
    padding: 50px 30px;
}

.suggestions {
    text-align: right;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-blue);
    border-radius: var(--border-radius-sm);
}

.suggestions p {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.suggestions ul {
    list-style: none;
    padding-right: 20px;
}

.suggestions li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 15px;
}

.suggestions li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    right: 0;
}

.minimal-pagination {
    margin-top: 40px;
    text-align: center;
}

.page-nav-minimal {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.page-nav-minimal a,
.page-nav-minimal span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--light-gray);
}

.page-nav-minimal a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.page-nav-minimal .current {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.page-nav-minimal .prev,
.page-nav-minimal .next {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}

.page-nav-minimal .prev:hover,
.page-nav-minimal .next:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.search-tip {
    margin-top: 15px;
    padding: 12px 15px;
    background-color: rgba(212, 167, 98, 0.1);
    border: 1px solid rgba(212, 167, 98, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.search-tip i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.search-tip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-blue);
    line-height: 1.5;
}

.search-tip strong {
    color: var(--primary-blue);
}

.location-details-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(26, 95, 122, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-details-list li::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
    opacity: 0.7;
}

.location-details-list li:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 20px rgba(26, 95, 122, 0.12);
    border-color: rgba(26, 95, 122, 0.15);
}

.location-details-list li:hover::before {
    opacity: 1;
    width: 5px;
}

.location-details-list li i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.location-details-list li:hover i {
    color: var(--secondary-blue);
    transform: scale(1.1);
}

.location-details-list li span {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    font-weight: 500;
}

/* ============================================
   CATEGORY EVENTS STYLES
   ============================================ */

.suru-events-page {
    background-color: #f8fafc;
    min-height: 100vh;
    font-family: 'Vazirmatn', 'Noto Naskh Arabic', sans-serif;
}

.suru-events-header {
    background: linear-gradient(135deg, #1a5f7a, #2d8faa);
    color: #ffffff;
    padding: 60px 0 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.suru-events-header-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.suru-events-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.suru-events-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.suru-events-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.suru-events-breadcrumb a:hover {
    color: #d4a762;
}

.suru-events-breadcrumb i {
    margin: 0 8px;
    font-size: 0.8rem;
}

.suru-events-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.suru-events-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.suru-events-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

.suru-events-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 20px;
}

.suru-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.suru-event-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.suru-event-card-border {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #1a5f7a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suru-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #1a5f7a;
}

.suru-event-card:hover .suru-event-card-border {
    opacity: 1;
}

.suru-event-timebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 15px;
    background: linear-gradient(135deg, #e6f2f7, #d1e7f0);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(26, 95, 122, 0.1);
}

.suru-event-date {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 5px;
    line-height: 1.3;
}

.suru-event-clock {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d8faa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.suru-event-clock i {
    font-size: 0.9rem;
}

.suru-event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.suru-event-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.suru-event-state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suru-event-status-upcoming {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #ffffff;
    border: 1px solid #2E7D32;
}

.suru-event-status-ongoing {
    background: linear-gradient(135deg, #8BC34A, #689F38);
    color: #ffffff;
    border: 2px solid #FF5722;
    position: relative;
    animation: suru-pulse 1.5s infinite;
}

@keyframes suru-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.suru-event-status-ongoing::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border-radius: 23px;
    border: 1px solid #FF5722;
    animation: suru-border-pulse 2s infinite;
}

@keyframes suru-border-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.suru-event-status-past {
    background: linear-gradient(135deg, #9E9E9E, #616161);
    color: #ffffff;
    border: 1px solid #757575;
    opacity: 0.8;
}

.suru-event-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a2e3d;
    margin-bottom: 12px;
    line-height: 1.4;
}

.suru-event-heading a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.suru-event-heading a:hover {
    color: #1a5f7a;
}

.suru-event-place {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #343a40;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border-right: 3px solid #1a5f7a;
}

.suru-event-place i {
    color: #1a5f7a;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.suru-event-address {
    flex: 1;
}

.suru-event-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    gap: 15px;
}

.suru-event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1a5f7a;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #1a5f7a;
    width: 100%;
    text-align: center;
}

.suru-event-button:hover {
    background: #ffffff;
    color: #1a5f7a;
    transform: translateX(-3px);
}

.suru-event-state-small {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suru-event-state-small.suru-event-status-upcoming {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.suru-event-state-small.suru-event-status-ongoing {
    background: #FFF3E0;
    color: #EF6C00;
    border: 1px solid #FFCC80;
    animation: suru-text-pulse 1.5s infinite;
}

@keyframes suru-text-pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.suru-event-state-small.suru-event-status-past {
    background: #F5F5F5;
    color: #757575;
    border: 1px solid #E0E0E0;
}

.suru-events-empty {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.suru-events-empty-icon {
    font-size: 3.5rem;
    color: #e9ecef;
    margin-bottom: 20px;
}

.suru-events-empty h3 {
    color: #0a2e3d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.suru-events-empty p {
    color: #343a40;
    margin-bottom: 25px;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.suru-events-pages {
    margin-top: 40px;
    text-align: center;
}

.suru-pagination-events {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.suru-pagination-events a,
.suru-pagination-events span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #1a5f7a;
    border: 1px solid #e9ecef;
}

.suru-pagination-events a:hover {
    background-color: #1a5f7a;
    color: #ffffff;
    border-color: #1a5f7a;
    transform: translateY(-2px);
}

.suru-pagination-events .suru-current {
    background-color: #1a5f7a;
    color: #ffffff;
    border-color: #1a5f7a;
}

.suru-events-filter {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.suru-filter-title {
    font-size: 1.1rem;
    color: #0a2e3d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suru-filter-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.suru-filter-btn {
    padding: 8px 20px;
    background: #e6f2f7;
    color: #1a5f7a;
    border: 1px solid rgba(26, 95, 122, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suru-filter-btn:hover,
.suru-filter-btn.suru-active {
    background: #1a5f7a;
    color: #ffffff;
    border-color: #1a5f7a;
}

.suru-events-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.suru-events-btn:hover {
    background-color: #2d8faa;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ============================================
   GALLERY CATEGORY PAGE
   ============================================ */

.gallery-category-page {
    min-height: 100vh;
    background-color: #f8fafc;
}

.gallery-category-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.gallery-category-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #4169E1;
}

.gallery-header-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gallery-category-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-category-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-category-breadcrumb a:hover {
    color: var(--accent-gold);
}

.gallery-category-breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.gallery-category-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-category-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-category-container {
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-category-item {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.gallery-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.gallery-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-category-item:hover::before {
    opacity: 0.3;
}

.gallery-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.gallery-category-item:hover .gallery-category-image {
    transform: scale(1.05);
}

.gallery-post-info {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 20px 15px 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    border-radius: 0 0 10px 10px;
}

.gallery-category-item:hover .gallery-post-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-post-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    opacity: 0.7;
    z-index: -1;
    border-radius: 0 0 10px 10px;
}

.gallery-post-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    position: relative;
    z-index: 3;
}

.gallery-post-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-post-date::before {
    content: '';
    font-size: 0.8rem;
}

.gallery-category-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 60px auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.gallery-empty-icon {
    font-size: 3.5rem;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.gallery-category-empty h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.gallery-category-empty p {
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.gallery-category-pagination {
    margin-top: 50px;
    text-align: center;
}

.gallery-category-page-nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-category-page-nav a,
.gallery-category-page-nav span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--light-gray);
}

.gallery-category-page-nav a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.gallery-category-page-nav .current {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.gallery-category-page-nav .prev,
.gallery-category-page-nav .next {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    border-color: var(--light-blue);
}

.gallery-category-page-nav .prev:hover,
.gallery-category-page-nav .next:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.gallery-category-loading {
    display: none;
    text-align: center;
    padding: 40px;
    color: var(--primary-blue);
    font-size: 1rem;
}

.gallery-category-loading.active {
    display: block;
}

.gallery-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.gallery-back-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-category-item::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 8px 0 0;
    z-index: 1;
}

.gallery-category-item:hover::after {
    opacity: 1;
}

@keyframes galleryItemAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-category-item {
    animation: galleryItemAppear 0.5s ease-out forwards;
    opacity: 0;
}

.gallery-category-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-category-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-category-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-category-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-category-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-category-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-category-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-category-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-category-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-category-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-category-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-category-item:nth-child(12) { animation-delay: 1.2s; }

.gallery-category-item .gallery-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 95, 122, 0.1), rgba(212, 167, 98, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: 1;
}

.gallery-category-item:hover .gallery-image-overlay {
    opacity: 1;
}

/* ============================================
   UNIFIED CATEGORY BANNER STYLES
   ============================================ */

.category-page-header,
.suru-events-header,
.gallery-category-header,
.stores-page-header {
    padding: 80px 0 60px !important;
    margin-bottom: 60px !important;
    min-height: 280px !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.category-page-header h1,
.suru-events-title,
.gallery-category-title,
.stores-page-header h1 {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: var(--white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.category-description,
.suru-events-description,
.gallery-category-description,
.stores-page-header .category-description {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    opacity: 0.9 !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.breadcrumb,
.suru-events-breadcrumb,
.gallery-category-breadcrumb,
.stores-page-header .breadcrumb {
    margin-bottom: 20px !important;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.breadcrumb a,
.suru-events-breadcrumb a,
.gallery-category-breadcrumb a,
.stores-page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
}

.breadcrumb a:hover,
.suru-events-breadcrumb a:hover,
.gallery-category-breadcrumb a:hover,
.stores-page-header .breadcrumb a:hover {
    color: var(--accent-gold) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.breadcrumb i,
.suru-events-breadcrumb i,
.gallery-category-breadcrumb i,
.stores-page-header .breadcrumb i {
    font-size: 0.8rem !important;
    opacity: 0.7 !important;
}

.category-page-header,
.suru-events-header,
.gallery-category-header,
.stores-page-header {
    background: linear-gradient(135deg, 
        rgba(26, 95, 122, 0.95) 0%, 
        rgba(45, 143, 170, 0.9) 50%, 
        rgba(26, 95, 122, 0.85) 100%) !important;
}

.category-page-header::before,
.suru-events-header::before,
.gallery-category-header::before,
.stores-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.category-page-header .header-content,
.suru-events-header-inner,
.gallery-header-inner,
.stores-page-header .header-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    text-align: center !important;
    width: 100% !important;
}

.category-page-header .header-content,
.suru-events-header-inner,
.gallery-header-inner,
.stores-page-header .header-content {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.suru-events-header-bg {
    opacity: 0.3 !important;
}

.stores-page-header {
    background: linear-gradient(135deg, 
        rgba(46, 139, 87, 0.95) 0%, 
        rgba(60, 179, 113, 0.9) 50%, 
        rgba(46, 139, 87, 0.85) 100%) !important;
}

.gallery-category-header::before {
    opacity: 0.2 !important;
}

/* ============================================
   EVENTS SIDEBAR
   ============================================ */

.events-sidebar-wrapper {
    width: 100%;
    margin-bottom: 25px;
}

.events-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.events-sidebar-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.events-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1a5f7a, #2d8faa);
    color: white;
    border-bottom: 3px solid #d4a762;
}

.events-header-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.events-card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    flex: 1;
    color: #fff;
}

.events-list-container {
    padding: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.event-list-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.event-list-item:hover {
    transform: translateX(-5px);
    border-color: #1a5f7a;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.15);
}

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

.event-item-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    padding: 12px;
    gap: 12px;
    align-items: flex-start;
}

.event-image-box {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #e9ecef;
}

.event-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-list-item:hover .event-thumbnail {
    transform: scale(1.1);
}

.event-status-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    z-index: 2;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.event-content-box {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-item-title {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0a2e3d;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 38px;
    transition: color 0.3s ease;
}

.event-list-item:hover .event-item-title {
    color: #1a5f7a;
}

.event-date-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #2d8faa;
    font-weight: 600;
}

.event-date-info i {
    font-size: 0.7rem;
    color: #1a5f7a;
}

.event-publish-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #6c757d;
}

.event-publish-info i {
    font-size: 0.65rem;
    color: #6c757d;
}

.events-empty-message {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.empty-icon {
    font-size: 2.5rem;
    color: #adb5bd;
    margin-bottom: 10px;
}

.empty-text {
    margin: 0 0 15px 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.empty-link {
    display: inline-block;
    padding: 8px 16px;
    background: #1a5f7a;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-link:hover {
    background: #2d8faa;
    transform: translateY(-2px);
}

.events-view-all {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    background: #f8fafc;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    background: #ffffff;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #1a5f7a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.2);
}

.view-all-btn i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i:last-child {
    transform: translateX(-3px);
}

.events-list-container::-webkit-scrollbar {
    width: 6px;
}

.events-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.events-list-container::-webkit-scrollbar-thumb {
    background: #1a5f7a;
    border-radius: 3px;
}

.events-list-container::-webkit-scrollbar-thumb:hover {
    background: #2d8faa;
}

.event-list-item[data-status="ongoing"] {
    border-right: 3px solid #FF5722;
    animation: pulseOngoing 2s infinite;
}

@keyframes pulseOngoing {
    0% {
        box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
    }
    50% {
        box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    }
    100% {
        box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
    }
}

/* ============================================
   MARKETPLACE STYLES
   ============================================ */

.market-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 30px;
}

.market-main-content {
    width: 100%;
}

.market-sidebar {
    width: 100%;
}

.market-contact-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.market-contact-header {
    padding: 25px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    text-align: center;
}

.market-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.market-contact-header h3 {
    margin: 0 0 5px 0;
    color: white;
    font-size: 1.3rem;
}

.market-contact-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.market-contact-body {
    padding: 25px;
}

.market-contact-section {
    margin-bottom: 25px;
}

.market-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px 0;
    color: #2E8B57;
    font-size: 1.1rem;
}

.market-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.market-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.market-contact-item:hover {
    transform: translateX(-3px);
    border-color: #2E8B57;
    box-shadow: 0 3px 10px rgba(46, 139, 87, 0.1);
}

.market-contact-item .market-contact-icon {
    width: 40px;
    height: 40px;
    background: #2E8B57;
    color: white;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
}

.market-contact-details {
    flex: 1;
    min-width: 0;
}

.market-contact-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.market-contact-value {
    display: block;
    color: #343a40;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.market-contact-value:hover {
    color: #2E8B57;
}

.market-address {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
}

.market-contact-action {
    width: 36px;
    height: 36px;
    background: #2E8B57;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.market-contact-action:hover {
    background: #3CB371;
    transform: scale(1.1);
}

.market-social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.market-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
}

.market-instagram {
    background: linear-gradient(45deg, #405de6, #833ab4);
}

.market-telegram {
    background: #0088cc;
}

.market-whatsapp {
    background: #25D366;
}

.market-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.market-social-link i {
    font-size: 1.2rem;
}

.market-website-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #2E8B57;
    border-radius: 8px;
    color: #2E8B57;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.market-website-link:hover {
    background: #2E8B57;
    color: white;
    transform: translateX(-5px);
}

.market-quick-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.market-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.market-call-btn {
    background: #2E8B57;
}

.market-whatsapp-btn {
    background: #25D366;
}

.market-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.market-contact-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

.market-contact-footer i {
    color: #2E8B57;
    margin-left: 5px;
}

.market-extra-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.market-extra-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.market-extra-header i {
    color: #2E8B57;
    font-size: 1.2rem;
}

.market-extra-header h3 {
    margin: 0;
    color: #343a40;
    font-size: 1.1rem;
}

.market-extra-content {
    padding: 20px;
    color: #495057;
    line-height: 1.6;
    font-size: 0.95rem;
}

.market-gallery-section {
    margin-top: 30px;
}

.market-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.market-gallery-modal .modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.market-gallery-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
}

.market-gallery-modal .modal-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.market-gallery-modal .modal-close {
    position: absolute;
    top: -40px;
    left: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

.market-gallery-modal .modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10001;
}

.market-gallery-modal .modal-prev,
.market-gallery-modal .modal-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.market-gallery-modal .modal-prev:hover,
.market-gallery-modal .modal-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* ============================================
   GALLERY POST STYLES
   ============================================ */

.gallery-post .post-content {
    margin-bottom: 40px;
}

.gallery-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.gallery-header {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gallery-title-container i {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.gallery-title-container h3 {
    margin: 0;
    color: var(--dark-blue);
    font-size: 1.5rem;
}

.gallery-counter {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-top: 10px;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    background-color: #f0f0f0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 3px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.gallery-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    opacity: 0;
}

.gallery-thumbnail.loaded {
    opacity: 1;
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.05);
}

.thumbnail-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.overlay-content i {
    font-size: 1.5rem;
}

.image-number {
    font-size: 1rem;
    font-weight: 600;
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.gallery-modal .modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    max-width: 1200px;
    background: transparent;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.gallery-modal .modal-close {
    position: absolute;
    top: -50px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-modal .modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10001;
}

.gallery-modal .modal-prev,
.gallery-modal .modal-next {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-modal .modal-prev:hover,
.gallery-modal .modal-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.gallery-modal .modal-image-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-modal .modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-modal .image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
}

.gallery-modal .loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.gallery-modal .modal-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    backdrop-filter: blur(10px);
}

.gallery-modal .modal-caption {
    font-size: 1.1rem;
}

.gallery-modal .modal-actions {
    display: flex;
    gap: 10px;
}

.gallery-modal .action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-modal .action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ============================================
   STORES PAGE
   ============================================ */

.stores-page-wrapper {
    background-color: var(--light-blue);
    min-height: calc(100vh - 200px);
    padding-bottom: 80px;
}

.stores-page-header {
    background: linear-gradient(135deg, #2e8b57 0%, #3da769 50%, #2e8b57 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
}

.store-header-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.stores-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 0 40px;
    width: 100%;
}

.stores-breadcrumb {
    margin-bottom: 15px;
}

.stores-breadcrumb a,
.stores-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
}

.stores-breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.stores-breadcrumb i {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.7);
}

.stores-title {
    color: white;
    font-size: 2.8rem;
    margin: 10px 0 15px;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), 0 4px 8px rgba(0, 0, 0, 0.4);
    }
}

.stores-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.stores-main-content {
    background: var(--light-blue);
    padding: 40px 0;
    margin-top: 3rem !important;
}

.stores-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    position: relative;
}

.sidebar-filters {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    color: #2e8b57;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 18px;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #495057;
    width: 100%;
    font-family: 'Vazirmatn', 'Noto Naskh Arabic', sans-serif;
}

.filter-btn:hover {
    background: #e9ecef;
    border-color: #2e8b57;
    transform: translateX(-5px);
}

.filter-btn.active {
    background: #2e8b57;
    color: white;
    border-color: #2e8b57;
}

.filter-btn i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar-info {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-list li i {
    color: #2e8b57;
    margin-top: 2px;
}

.store-icon-bg {
    position: absolute;
    color: rgba(255, 255, 255, 0.25);
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
    will-change: transform, opacity;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) translateX(var(--move-x)) rotate(var(--rotate)) scale(var(--end-scale));
        opacity: 0;
    }
}

@keyframes floatWave {
    0% {
        transform: translateY(100vh) translateX(-50px) rotate(0deg) scale(0.7);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
        transform: translateY(70vh) translateX(30px) rotate(90deg) scale(0.9);
    }
    50% {
        opacity: 0.6;
        transform: translateY(40vh) translateX(-20px) rotate(180deg) scale(1.1);
    }
    80% {
        opacity: 0.4;
        transform: translateY(10vh) translateX(40px) rotate(270deg) scale(0.9);
    }
    100% {
        transform: translateY(-100px) translateX(-30px) rotate(360deg) scale(0.7);
        opacity: 0;
    }
}

@keyframes floatZigzag {
    0% {
        transform: translateY(100vh) translateX(-100px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    25% {
        opacity: 0.5;
        transform: translateY(75vh) translateX(80px) rotate(90deg) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(50vh) translateX(-60px) rotate(180deg) scale(1.2);
    }
    75% {
        opacity: 0.4;
        transform: translateY(25vh) translateX(40px) rotate(270deg) scale(1);
    }
    100% {
        transform: translateY(-100px) translateX(-20px) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes rotateInPlace {
    0% {
        transform: translateY(var(--start-y)) translateX(var(--start-x)) rotate(0deg) scale(var(--scale));
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
        transform: translateY(var(--start-y)) translateX(var(--start-x)) rotate(180deg) scale(var(--scale));
    }
    100% {
        transform: translateY(var(--start-y)) translateX(var(--start-x)) rotate(360deg) scale(var(--scale));
        opacity: 0.3;
    }
}

.stores-content {
    flex: 1;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.store-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.store-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.store-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--dark-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.store-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.store-title {
    margin-bottom: 15px;
    color: var(--dark-blue);
    line-height: 1.4;
    min-height: 48px;
}

.store-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-title a:hover {
    color: var(--primary-blue);
}

.store-info {
    margin-bottom: 15px;
    flex: 1;
}

.store-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.store-info-item i {
    color: var(--primary-blue);
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.store-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.store-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-action-btn.whatsapp {
    background: #25D366;
}

.store-action-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.store-action-btn.details {
    background: var(--primary-blue);
}

.store-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.no-stores-message {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-stores-message i {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.no-stores-message h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.no-stores-message p {
    color: var(--dark-gray);
}

.stores-page-wrapper {
    margin: 0;
    padding: 0;
}

.stores-main-content {
    padding-top: 0;
}

.stores-sidebar {
    display: block !important;
}

/* ============================================
   USER DROPDOWN
   ============================================ */

.user-wrapper {
    position: relative;
}

.user-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-toggle:hover {
    background-color: #f0f0f0;
    color: #0073aa;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.user-wrapper:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.user-info span {
    display: block;
    font-weight: 600;
    color: #333;
}

.user-info small {
    color: #777;
    font-size: 0.8rem;
}

.user-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-menu li {
    margin-bottom: 5px;
}

.user-menu a {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.user-menu a:hover {
    background-color: #f5f5f5;
    color: #0073aa;
}

.user-menu i {
    margin-left: 10px;
    width: 20px;
    text-align: center;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */

.error-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f2f7 100%);
    font-family: 'Vazirmatn', 'Noto Naskh Arabic', sans-serif;
}

.error-page-header {
    background: linear-gradient(135deg, 
        rgba(26, 95, 122, 0.95) 0%, 
        rgba(45, 143, 170, 0.9) 50%, 
        rgba(26, 95, 122, 0.85) 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.error-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.error-page-header .header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error-page-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.error-page-header .page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.error-page-header .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.error-page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.error-page-header .breadcrumb a:hover {
    color: #d4a762;
    background-color: rgba(255, 255, 255, 0.1);
}

.error-page-header .breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.error-main-content {
    padding-bottom: 80px;
}

.error-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.error-illustration {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.error-icon-animation {
    position: relative;
    margin: 0 auto 30px;
    width: 120px;
    height: 120px;
}

.error-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1a5f7a, #2d8faa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.error-animation-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
}

.error-animation-dots span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #d4a762;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.error-animation-dots span:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.error-animation-dots span:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.4s;
}

.error-animation-dots span:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.8s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.error-digit {
    font-size: 8rem;
    font-weight: 900;
    color: #0a2e3d;
    text-shadow: 3px 3px 0 rgba(26, 95, 122, 0.1);
    animation: digitGlow 2s ease-in-out infinite alternate;
}

.error-digit:nth-child(1) {
    animation-delay: 0s;
}

.zero-digit {
    color: #1a5f7a;
    position: relative;
    animation: zeroSpin 4s linear infinite;
}

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

@keyframes digitGlow {
    from {
        text-shadow: 3px 3px 0 rgba(26, 95, 122, 0.1),
                     0 0 20px rgba(26, 95, 122, 0.1);
    }
    to {
        text-shadow: 3px 3px 0 rgba(26, 95, 122, 0.1),
                     0 0 30px rgba(26, 95, 122, 0.3),
                     0 0 40px rgba(26, 95, 122, 0.2);
    }
}

.error-message {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.error-message h2 {
    font-size: 2rem;
    color: #0a2e3d;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.error-message h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a5f7a);
    border-radius: 2px;
}

.error-message p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.error-solutions {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.error-solutions h3 {
    color: #0a2e3d;
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.error-solutions h3 i {
    color: #d4a762;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.solution-card {
    background: #e6f2f7;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: #1a5f7a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ffffff;
}

.home-icon {
    background: linear-gradient(135deg, #1a5f7a, #2d8faa);
}

.nav-icon {
    background: linear-gradient(135deg, #d4a762, #e6b450);
}

.link-icon {
    background: linear-gradient(135deg, #57cc99, #45b7a1);
}

.solution-card h4 {
    color: #0a2e3d;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.solution-card p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.error-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    cursor: pointer;
    border: none;
    font-family: 'Vazirmatn', sans-serif;
}

.error-action-btn.btn-primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

.error-action-btn.btn-primary:hover {
    background-color: #2d8faa;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.error-action-btn.btn-outline {
    background-color: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
}

.error-action-btn.btn-outline:hover {
    background-color: #1a5f7a;
    color: #ffffff;
    transform: translateY(-3px);
}

.error-action-btn i {
    font-size: 1.1rem;
}

.quick-links-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.quick-links-section h3 {
    color: #0a2e3d;
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-links-section h3 i {
    color: #1a5f7a;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.quick-links-column h4 {
    color: #1a5f7a;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e6f2f7;
}

.quick-links-column h4 i {
    font-size: 1.1rem;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list li:last-child {
    margin-bottom: 0;
}

.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #e6f2f7;
    border-radius: 8px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links-list a:hover {
    background: #1a5f7a;
    color: #ffffff;
    transform: translateX(-5px);
    padding-right: 20px;
}

.quick-links-list a i {
    color: #1a5f7a;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.quick-links-list a:hover i {
    color: #ffffff;
}

.category-count {
    background: #ffffff;
    color: #1a5f7a;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: auto;
}

.quick-links-list a:hover .category-count {
    background: rgba(255, 255, 255, 0.9);
    color: #1a5f7a;
}

.error-illustration,
.error-message,
.error-solutions,
.quick-links-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.error-illustration {
    animation-delay: 0.1s;
}

.error-message {
    animation-delay: 0.3s;
}

.error-solutions {
    animation-delay: 0.5s;
}

.quick-links-section {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TYPOGRAPHY ENHANCEMENTS
   ============================================ */

ol {
    margin: 1.5rem 0;
    padding-right: 2.5rem;
    counter-reset: ordered-list;
    list-style: none;
}

ol > li {
    counter-increment: ordered-list;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
}

ol > li::before {
    content: counter(ordered-list);
    position: absolute;
    right: -2.5rem;
    top: 0.2rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

ol > li:hover::before {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

ol > li ol {
    margin: 1rem 0 1rem 2rem;
    counter-reset: ordered-sublist;
}

ol > li ol > li {
    counter-increment: ordered-sublist;
    margin-bottom: 0.8rem;
}

ol > li ol > li::before {
    content: counter(ordered-sublist, lower-alpha);
    background: linear-gradient(135deg, var(--secondary-blue), var(--wave-blue));
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.85rem;
}

ul {
    margin: 1.5rem 0;
    padding-right: 2.2rem;
    list-style: none;
}

ul > li {
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
    padding-right: 0.5rem;
}

ul > li::before {
    content: '';
    position: absolute;
    right: -2.2rem;
    top: 0.7rem;
    width: 0.8rem;
    height: 0.8rem;
    background: linear-gradient(135deg, var(--accent-gold), #e6b450);
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

ul > li:hover::before {
    transform: rotate(45deg) scale(1.2);
    background: linear-gradient(135deg, #e6b450, var(--accent-gold));
}

ul > li ul {
    margin: 1rem 0 1rem 1.5rem;
}

ul > li ul > li::before {
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    background: linear-gradient(135deg, var(--sea-green), #45b7a1);
    border-radius: 50%;
    transform: none;
}

ul > li ul > li:hover::before {
    transform: scale(1.2);
}

ul.contains-task-list {
    padding-right: 0;
    list-style: none;
}

ul.contains-task-list > li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--light-blue);
    border: 1px solid rgba(26, 95, 122, 0.1);
    transition: all 0.3s ease;
}

ul.contains-task-list > li:hover {
    background-color: rgba(26, 95, 122, 0.05);
    transform: translateX(-5px);
    border-color: rgba(26, 95, 122, 0.2);
}

ul.contains-task-list > li input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.2rem 0 0;
    cursor: pointer;
    accent-color: var(--primary-blue);
    flex-shrink: 0;
}

ul.contains-task-list > li.task-list-item-checked {
    background-color: rgba(46, 139, 87, 0.08);
    border-color: rgba(46, 139, 87, 0.2);
    color: var(--dark-gray);
    opacity: 0.9;
}

ul.contains-task-list > li.task-list-item-checked span {
    text-decoration: line-through;
    color: var(--secondary-blue);
}

pre, code {
    font-family: 'Vazir Code', 'Cascadia Code', 'Fira Code', 'Consolas', 'Monaco', monospace;
}

pre {
    background: linear-gradient(135deg, #0a2e3d, #1a5f7a);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

pre::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(90deg, 
        var(--accent-gold), 
        var(--sea-green), 
        var(--wave-blue));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

pre code {
    color: #e6f2f7;
    font-size: 0.95rem;
    line-height: 1.6;
    display: block;
    direction: ltr;
    text-align: left;
}

pre code .keyword { color: #ff79c6; }
pre code .string { color: #f1fa8c; }
pre code .comment { color: #6272a4; font-style: italic; }
pre code .function { color: #50fa7b; }
pre code .number { color: #bd93f9; }
pre code .operator { color: #ff79c6; }
pre code .punctuation { color: #8be9fd; }
pre code .class-name { color: #8be9fd; }
pre code .tag { color: #ff79c6; }
pre code .attr-name { color: #50fa7b; }
pre code .attr-value { color: #f1fa8c; }

:not(pre) > code {
    background: linear-gradient(135deg, 
        rgba(26, 95, 122, 0.1), 
        rgba(45, 143, 170, 0.08));
    color: var(--primary-blue);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(26, 95, 122, 0.2);
    white-space: nowrap;
}

:not(pre) > code:hover {
    background: linear-gradient(135deg, 
        rgba(26, 95, 122, 0.15), 
        rgba(45, 143, 170, 0.12));
    transform: translateY(-1px);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

thead th {
    color: var(--white);
    font-weight: 700;
    padding: 1rem 1.2rem;
    text-align: right;
    font-size: 0.95rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

thead th::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-gold), 
        transparent);
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

thead:hover th::after {
    transform: translateX(0);
}

tbody tr {
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

tbody tr:hover {
    background-color: var(--light-blue);
    transform: translateX(-3px);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody td {
    padding: 0.9rem 1.2rem;
    color: var(--dark-gray);
    border-left: 1px solid var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

tbody td:first-child {
    border-left: none;
}

table.align-right td {
    text-align: right;
}

table.align-center td {
    text-align: center;
}

table.align-left td {
    text-align: left;
}

tbody tr:nth-child(even) {
    background-color: rgba(230, 242, 247, 0.3);
}

tbody tr:nth-child(even):hover {
    background-color: rgba(230, 242, 247, 0.7);
}

hr {
    border: none;
    height: 2px;
    margin: 3rem 0;
    position: relative;
    overflow: visible;
}

hr::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-gold), 
        var(--primary-blue), 
        var(--accent-gold), 
        transparent);
    transform: translateY(-50%);
    animation: hrGlow 3s ease-in-out infinite;
}

@keyframes hrGlow {
    0%, 100% {
        opacity: 0.5;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(212, 167, 98, 0.5), 
            rgba(26, 95, 122, 0.5), 
            rgba(212, 167, 98, 0.5), 
            transparent);
    }
    50% {
        opacity: 1;
        background: linear-gradient(90deg, 
            transparent, 
            var(--accent-gold), 
            var(--primary-blue), 
            var(--accent-gold), 
            transparent);
    }
}

hr.dotted::before {
    background: repeating-linear-gradient(
        to left,
        var(--primary-blue) 0px,
        var(--primary-blue) 4px,
        transparent 4px,
        transparent 8px
    );
    height: 3px;
}

hr.dashed::before {
    background: repeating-linear-gradient(
        to left,
        var(--primary-blue) 0px,
        var(--primary-blue) 10px,
        transparent 10px,
        transparent 20px
    );
}

hr.wave::before {
    background: none;
    background-image: url("data:image/svg+xml,%3Csvg width='100%' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 Q50,0 100,10 T200,10' stroke='%231a5f7a' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    animation: waveMove 4s linear infinite;
}

@keyframes waveMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }
.animate-card:nth-child(5) { animation-delay: 0.5s; }

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

.suru-widget {
    animation: suruSlideInRight 0.5s ease-out forwards;
    opacity: 0;
}

.suru-widget:nth-child(1) { animation-delay: 0.1s; }
.suru-widget:nth-child(2) { animation-delay: 0.2s; }
.suru-widget:nth-child(3) { animation-delay: 0.3s; }
.suru-widget:nth-child(4) { animation-delay: 0.4s; }
.suru-widget:nth-child(5) { animation-delay: 0.5s; }

@keyframes suruShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary-blue);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .post-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-card {
        grid-template-columns: 1fr;
    }
    
    .location-image-section {
        grid-template-columns: 1fr;
    }
    
    .static-location-image {
        min-height: 300px;
        order: -1;
    }
    
    .blog-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-header,
    .post-intro-image,
    .post-meta,
    .post-content,
    .contact-info-card,
    .event-info-card,
    .gallery-section,
    .tags-section,
    .comments-section {
        margin: 0 40px !important;
        padding: 40px !important;
    }
    
    .post-title {
        font-size: 1.9rem;
    }
    
    .contact-grid,
    .event-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stores-layout {
        grid-template-columns: 280px 1fr;
        gap: 25px;
    }
    
    .stores-title {
        font-size: 2.4rem;
    }
    
    .stores-description {
        font-size: 1.2rem;
    }
    
    .suru-sidebar-container {
        gap: 20px;
    }
    
    .suru-widget {
        padding: 20px;
    }
    
    .suru-widget-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .category-page-header,
    .suru-events-header,
    .gallery-category-header,
    .stores-page-header {
        padding: 60px 0 40px !important;
        margin-bottom: 40px !important;
        min-height: 220px !important;
    }
    
    .category-page-header h1,
    .suru-events-title,
    .gallery-category-title,
    .stores-page-header h1 {
        font-size: 2rem !important;
    }
    
    .category-description,
    .suru-events-description,
    .gallery-category-description,
    .stores-page-header .category-description {
        font-size: 1rem !important;
    }
    
    .error-digit {
        font-size: 6rem;
    }
    
    .error-icon-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-action-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .market-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .market-social-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .quick-access-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .category-page-header {
        padding: 60px 0 40px;
    }
    
    .category-page-header h1 {
        font-size: 2rem;
    }
    
    .blog-article-item {
        grid-template-columns: 1fr;
    }
    
    .article-image-side {
        height: 200px;
    }
    
    .article-content-side {
        padding: 20px;
    }
    
    .article-meta {
        gap: 10px;
        font-size: 0.8rem;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
    
    .article-excerpt {
        max-height: 90px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination a,
    .pagination span {
        width: 100%;
        max-width: 300px;
    }
    
    .single-post {
        padding: 30px 0 40px;
    }
    
    .post-header,
    .post-intro-image,
    .post-meta,
    .post-content,
    .contact-info-card,
    .event-info-card,
    .gallery-section,
    .tags-section,
    .comments-section {
        margin: 0 20px !important;
        padding: 30px !important;
    }
    
    .post-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
    
    .post-intro-image img {
        height: 350px;
    }
    
    .post-content {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .meta-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .contact-grid,
    .event-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item,
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .contact-icon,
    .event-icon {
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .contact-header,
    .event-header {
        padding: 25px 30px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-header i,
    .event-header i {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .contact-header h3,
    .event-header h3 {
        font-size: 1.2rem;
    }
    
    .comments-section,
    .comment-form {
        padding: 25px;
    }
    
    .comment-header {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-children {
        margin-right: 20px;
        padding-right: 15px;
    }
    
    .comment-reply {
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo .logo-wrapper {
        gap: 12px;
    }
    
    .footer-logo .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer-pages-menu ul {
        gap: 15px;
        justify-content: center;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-link {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
    
    .suru-sidebar-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .suru-widget:nth-child(1),
    .suru-widget:nth-child(5) {
        grid-column: 1 / -1;
    }
    
    .suru-recent-post-link,
    .suru-popular-post-link {
        grid-template-columns: 65px 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    .suru-post-thumb,
    .suru-popular-thumb {
        width: 65px;
        height: 55px;
    }
    
    .suru-post-title,
    .suru-popular-title {
        font-size: 0.78rem;
        -webkit-line-clamp: 2;
        max-height: 34px;
    }
    
    .suru-post-date,
    .suru-comment-date,
    .suru-popular-views {
        font-size: 0.7rem;
    }
    
    .suru-popular-badge {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
        top: -5px;
        left: -5px;
    }
    
    .suru-category-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .suru-comment-item {
        padding: 12px;
    }
    
    .suru-comment-excerpt {
        font-size: 0.76rem;
    }
    
    .minimal-page-header {
        padding: 40px 0 30px;
    }
    
    .minimal-page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .minimal-list-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }
    
    .item-number {
        margin: 0 auto;
    }
    
    .item-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .item-action {
        display: none;
    }
    
    .item-title {
        font-size: 1.1rem;
    }
    
    .search-form-inline {
        margin: 20px auto 0;
    }
    
    .search-form-inline .search-input {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .search-tip {
        padding: 10px 12px;
    }
    
    .search-tip p {
        font-size: 0.85rem;
    }
    
    .suggestions {
        padding: 15px;
        margin: 20px 0;
    }
    
    .suggestions li {
        font-size: 0.9rem;
    }
    
    .location-details-list {
        gap: 12px;
    }
    
    .location-details-list li {
        padding: 15px;
        gap: 12px;
    }
    
    .location-details-list li i {
        font-size: 1.1rem;
    }
    
    .location-details-list li span {
        font-size: 0.95rem;
    }
    
    .suru-events-header {
        padding: 40px 0 30px;
    }
    
    .suru-events-title {
        font-size: 1.8rem;
    }
    
    .suru-events-description {
        font-size: 1rem;
    }
    
    .suru-events-main {
        padding: 0 15px 40px;
    }
    
    .suru-event-card {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .suru-event-timebox {
        flex-direction: row;
        justify-content: space-between;
        min-width: auto;
        padding: 12px 15px;
    }
    
    .suru-event-date {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .suru-event-clock {
        font-size: 0.9rem;
    }
    
    .suru-event-content {
        padding: 0;
    }
    
    .suru-event-heading {
        font-size: 1.2rem;
    }
    
    .suru-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .suru-event-place {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .suru-event-actions {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
    }
    
    .suru-event-button {
        width: auto;
        flex: 1;
        margin-right: 10px;
    }
    
    .suru-events-filter {
        padding: 15px;
    }
    
    .suru-filter-options {
        gap: 10px;
    }
    
    .suru-filter-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .gallery-category-header {
        padding: 60px 0 40px;
        margin-bottom: 40px;
    }
    
    .gallery-category-title {
        font-size: 2rem;
    }
    
    .gallery-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .gallery-category-item {
        border-radius: 8px;
    }
    
    .gallery-category-image {
        border-radius: 6px;
    }
    
    .gallery-post-info {
        padding: 15px 10px 10px;
        border-radius: 0 0 6px 6px;
    }
    
    .gallery-post-title {
        font-size: 0.8rem;
    }
    
    .gallery-post-date {
        font-size: 0.75rem;
    }
    
    .category-page-header,
    .suru-events-header,
    .gallery-category-header,
    .stores-page-header {
        padding: 50px 0 30px !important;
        margin-bottom: 30px !important;
        min-height: 180px !important;
    }
    
    .category-page-header h1,
    .suru-events-title,
    .gallery-category-title,
    .stores-page-header h1 {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
    }
    
    .category-description,
    .suru-events-description,
    .gallery-category-description,
    .stores-page-header .category-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .breadcrumb,
    .suru-events-breadcrumb,
    .gallery-category-breadcrumb,
    .stores-page-header .breadcrumb {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }
    
    .events-card-header {
        padding: 15px;
    }
    
    .events-card-title {
        font-size: 1rem;
    }
    
    .event-item-link {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-image-box {
        width: 100%;
        height: 120px;
    }
    
    .event-content-box {
        width: 100%;
    }
    
    .event-item-title {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .view-all-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .market-gallery-modal .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .market-gallery-modal .modal-nav {
        padding: 0 10px;
    }
    
    .market-gallery-modal .modal-prev,
    .market-gallery-modal .modal-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-title-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-section {
        padding: 25px;
        margin-top: 30px;
    }
    
    .gallery-modal .modal-nav {
        padding: 0 10px;
    }
    
    .gallery-modal .modal-prev,
    .gallery-modal .modal-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-modal .modal-close {
        top: -40px;
        left: 10px;
        font-size: 2rem;
    }
    
    .stores-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stores-page-header {
        min-height: 250px;
    }
    
    .stores-title {
        font-size: 2rem;
    }
    
    .stores-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .sidebar-filters {
        position: static;
    }
    
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .error-page-header h1 {
        font-size: 1.8rem;
    }
    
    .error-page-header .page-description {
        font-size: 1rem;
    }
    
    .error-digit {
        font-size: 4.5rem;
        gap: 10px;
    }
    
    .error-message h2 {
        font-size: 1.5rem;
    }
    
    .error-message p {
        font-size: 1rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .error-solutions,
    .quick-links-section {
        padding: 30px;
    }
    
    .solution-card {
        padding: 25px;
    }
    
    .user-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 15px 15px 0 0;
        transform: translateY(100%);
    }
    
    .user-wrapper:hover .user-dropdown {
        transform: translateY(0);
    }
    
    ol, ul {
        padding-right: 2rem;
    }
    
    ol > li::before {
        right: -2rem;
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.85rem;
    }
    
    blockquote {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    blockquote::before {
        font-size: 3rem;
        right: 1rem;
    }
    
    pre {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    pre code {
        font-size: 0.9rem;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
    
    thead th,
    tbody td {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    hr {
        margin: 2rem 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .access-card,
    .blog-card {
        padding: 20px;
    }
    
    .category-page-header {
        padding: 40px 0 30px;
    }
    
    .category-page-header h1 {
        font-size: 1.6rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .article-excerpt {
        max-height: 80px;
        font-size: 0.9rem;
    }
    
    .post-header,
    .post-intro-image,
    .post-meta,
    .post-content,
    .contact-info-card,
    .event-info-card,
    .gallery-section,
    .tags-section,
    .comments-section {
        margin: 0 15px !important;
        padding: 25px !important;
    }
    
    .post-title {
        font-size: 1.6rem;
    }
    
    .post-intro-image img {
        height: 250px;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .post-content blockquote {
        padding: 20px 25px;
        font-size: 1.1rem;
        margin: 2rem 0;
    }
    
    .contact-content,
    .event-content {
        padding: 25px;
    }
    
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .tags-list {
        justify-content: center;
    }
    
    .tags-list a {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .comments-section,
    .comment-form {
        padding: 20px;
    }
    
    .comment-item {
        padding: 20px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-submit button {
        width: 100%;
        justify-content: center;
    }
    
    .site-footer {
        padding-top: 60px;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .footer-logo .logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-pages-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-bottom {
        padding: 30px 0 20px;
    }
    
    .social-link {
        min-width: 100%;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .suru-sidebar-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .suru-widget {
        padding: 18px;
    }
    
    .suru-widget-title {
        font-size: 1rem;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }
    
    .suru-recent-post-link,
    .suru-popular-post-link {
        grid-template-columns: 60px 1fr;
        gap: 8px;
        padding: 8px;
    }
    
    .suru-post-thumb,
    .suru-popular-thumb {
        width: 60px;
        height: 50px;
    }
    
    .suru-post-title,
    .suru-popular-title {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        max-height: 32px;
        margin-bottom: 4px;
    }
    
    .suru-post-date,
    .suru-comment-date,
    .suru-popular-views {
        font-size: 0.68rem;
    }
    
    .suru-popular-badge {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
        top: -4px;
        left: -4px;
    }
    
    .suru-category-link {
        padding: 8px 10px;
        font-size: 0.82rem;
    }
    
    .suru-comment-item {
        padding: 10px;
    }
    
    .suru-comment-author-name {
        font-size: 0.82rem;
    }
    
    .suru-comment-excerpt {
        font-size: 0.74rem;
    }
    
    .suru-tag-cloud {
        gap: 6px;
    }
    
    .suru-tag-item {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .minimal-page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-description {
        font-size: 0.95rem;
    }
    
    .minimal-list-container {
        padding: 10px;
    }
    
    .item-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .no-content-message.minimal,
    .no-content-message.search {
        padding: 40px 20px;
    }
    
    .suggestions {
        padding: 15px;
        margin: 20px 0;
    }
    
    .suggestions ul {
        padding-right: 15px;
    }
    
    .location-details-list li {
        padding: 14px 12px;
        gap: 10px;
    }
    
    .location-details-list li i {
        font-size: 1rem;
        min-width: 20px;
    }
    
    .location-details-list li span {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .suru-events-title {
        font-size: 1.5rem;
    }
    
    .suru-event-timebox {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .suru-event-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .suru-event-button {
        width: 100%;
        margin-right: 0;
    }
    
    .suru-event-status-ongoing {
        animation: suru-pulse 2s infinite;
    }
    
    .gallery-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .gallery-category-title {
        font-size: 1.6rem;
    }
    
    .gallery-category-description {
        font-size: 0.95rem;
    }
    
    .gallery-category-container {
        padding: 0 15px 40px;
    }
    
    .gallery-category-item:hover {
        transform: translateY(-3px);
    }
    
    .category-page-header,
    .suru-events-header,
    .gallery-category-header,
    .stores-page-header {
        padding: 40px 0 25px !important;
        min-height: 150px !important;
    }
    
    .category-page-header h1,
    .suru-events-title,
    .gallery-category-title,
    .stores-page-header h1 {
        font-size: 1.3rem !important;
    }
    
    .category-description,
    .suru-events-description,
    .gallery-category-description,
    .stores-page-header .category-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .breadcrumb,
    .suru-events-breadcrumb,
    .gallery-category-breadcrumb,
    .stores-page-header .breadcrumb {
        font-size: 0.8rem !important;
        justify-content: center !important;
    }
    
    .event-list-item[data-status="ongoing"] {
        animation: pulseOngoing 2s infinite;
    }
    
    .market-contact-header {
        padding: 20px;
    }
    
    .market-contact-body {
        padding: 20px;
    }
    
    .market-social-links {
        grid-template-columns: 1fr;
    }
    
    .market-quick-actions {
        flex-direction: column;
    }
    
    .market-contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .market-contact-details {
        text-align: center;
    }
    
    .market-gallery-modal .modal-close {
        top: -30px;
        left: 10px;
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .gallery-section {
        padding: 20px;
        margin-top: 20px;
    }
    
    .gallery-title-container h3 {
        font-size: 1.3rem;
    }
    
    .gallery-counter {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .gallery-modal .modal-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .stores-page-header {
        min-height: 230px;
    }
    
    .stores-header-content {
        padding: 40px 0 30px;
    }
    
    .stores-title {
        font-size: 1.8rem;
        margin: 5px 0 10px;
    }
    
    .stores-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .sidebar-filters,
    .sidebar-info {
        padding: 20px;
    }
    
    .filter-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .store-image {
        height: 160px;
    }
    
    .error-page-header {
        padding: 40px 0 30px;
        margin-bottom: 30px;
    }
    
    .error-page-header h1 {
        font-size: 1.5rem;
    }
    
    .error-digit {
        font-size: 3.5rem;
    }
    
    .error-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .error-animation-dots {
        width: 120px;
        height: 120px;
    }
    
    .error-solutions,
    .quick-links-section {
        padding: 25px;
    }
    
    .quick-links-column h4 {
        font-size: 1.1rem;
    }
    
    .quick-links-list a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    ol > li::before {
        right: -1.8rem;
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.8rem;
    }
    
    ul > li::before {
        right: -1.8rem;
        width: 0.7rem;
        height: 0.7rem;
    }
    
    blockquote {
        padding: 1rem;
        border-width: 3px;
    }
    
    blockquote::before {
        font-size: 2.5rem;
        top: -0.3rem;
    }
}

@media print {
    ol, ul {
        page-break-inside: avoid;
    }
    
    blockquote {
        border: 1px solid #ddd;
        background: none;
        box-shadow: none;
    }
    
    pre {
        background: #f5f5f5 !important;
        color: #333 !important;
        border: 1px solid #ddd;
    }
    
    table {
        border: 1px solid #ddd;
    }
    
    hr {
        background: #ddd !important;
    }
    
    hr::before {
        display: none;
    }
}



































































/* ============================================
   TYPOGRAPHY ENHANCEMENTS
   ============================================ */

/* فقط برای محتوای اصلی پست‌ها و صفحات */
.post-content ol,
.page-content ol,
.article-content-side ol,
.comment-content ol {
    margin: 1.5rem 0;
    padding-right: 2.5rem;
    counter-reset: ordered-list;
    list-style: none;
}

.post-content ol > li,
.page-content ol > li,
.article-content-side ol > li,
.comment-content ol > li {
    counter-increment: ordered-list;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
    padding-right: 0.5rem;
}

.post-content ol > li::before,
.page-content ol > li::before,
.article-content-side ol > li::before,
.comment-content ol > li::before {
    content: counter(ordered-list);
    position: absolute;
    right: -2.5rem;
    top: 0.2rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', 'Noto Naskh Arabic', sans-serif;
}

.post-content ol > li:hover::before,
.page-content ol > li:hover::before,
.article-content-side ol > li:hover::before,
.comment-content ol > li:hover::before {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* لیست‌های نامرتب فقط در محتوای اصلی */
.post-content ul,
.page-content ul,
.article-content-side ul,
.comment-content ul {
    margin: 1.5rem 0;
    padding-right: 2.2rem;
    list-style: none;
}

.post-content ul > li,
.page-content ul > li,
.article-content-side ul > li,
.comment-content ul > li {
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
    padding-right: 0.5rem;
}

.post-content ul > li::before,
.page-content ul > li::before,
.article-content-side ul > li::before,
.comment-content ul > li::before {
    content: '';
    position: absolute;
    right: -2.2rem;
    top: 0.7rem;
    width: 0.8rem;
    height: 0.8rem;
    background: linear-gradient(135deg, var(--accent-gold), #e6b450);
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.post-content ul > li:hover::before,
.page-content ul > li:hover::before,
.article-content-side ul > li:hover::before,
.comment-content ul > li:hover::before {
    transform: rotate(45deg) scale(1.2);
    background: linear-gradient(135deg, #e6b450, var(--accent-gold));
}

/* ============================================
   ریست استایل‌ها برای منوها و فوتر
   ============================================ */

/* منوهای اصلی */
.main-navigation .nav-menu,
.mobile-nav-menu,
.footer-pages-menu ul,
.footer-column ul,
.user-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation .nav-menu li,
.mobile-nav-menu li,
.footer-pages-menu li,
.footer-column ul li,
.user-menu li {
    padding-right: 0 !important;
    margin-bottom: 0 !important;
}

.main-navigation .nav-menu li::before,
.mobile-nav-menu li::before,
.footer-pages-menu li::before,
.footer-column ul li::before,
.user-menu li::before {
    display: none !important;
}

/* سایدبار */
.suru-recent-comments,
.suru-categories-list,
.suru-recent-posts,
.suru-popular-posts {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.suru-comment-item::before,
.suru-category-item::before,
.suru-recent-post::before,
.suru-popular-post::before {
    display: none !important;
}

/* تگ ابری */
.suru-tag-cloud {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================
   TYPOGRAPHY ENHANCEMENTS - اعداد فارسی ترکیبی
   ============================================ */

/* تعریف استایل شمارنده فارسی */
@counter-style persian-numbers {
    system: numeric;
    symbols: '۰' '۱' '۲' '۳' '۴' '۵' '۶' '۷' '۸' '۹';
    suffix: '. ';
}

/* برای مرورگرهایی که از @counter-style پشتیبانی نمی‌کنند */
.post-content ol,
.page-content ol,
.article-content-side ol,
.comment-content ol {
    margin: 1.5rem 0;
    padding-right: 2.5rem;
    counter-reset: ordered-list;
    list-style: none;
}

.post-content ol > li,
.page-content ol > li,
.article-content-side ol > li,
.comment-content ol > li {
    counter-increment: ordered-list;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--dark-gray);
    padding-right: 0.5rem;
}

.post-content ol > li::before,
.page-content ol > li::before,
.article-content-side ol > li::before,
.comment-content ol > li::before {
    /* تابع تبدیل اعداد به فارسی */
    content: counter(ordered-list, persian);
    position: absolute;
    right: -2.5rem;
    top: 0.2rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', 'Noto Naskh Arabic', sans-serif;
    /* فعال کردن اعداد فارسی در فونت */
    font-feature-settings: "ss01" 1, "tnum" 0, "onum" 1;
    font-variant-numeric: ordinal;
    unicode-bidi: plaintext;
}

/* برای مرورگرهای قدیمی، از JavaScript استفاده می‌کنیم */
.post-content ol.farsi-numbers > li::before,
.page-content ol.farsi-numbers > li::before {
    /* این کلاس توسط JavaScript اضافه خواهد شد */
}