/* ============================================
   요리 정보 페이지 스타일 (Main Theme Aligned)
   완전히 재설계된 버전
   ============================================ */

/* ========== Variables (Main Theme Alignment) ========== */
:root {
    --primary-color: #C4563D;
    --primary-dark: #9B4530;
    --secondary-color: #315E49;
    --accent-color: #D4A43E;
    --text-primary: #FFFFFF;
    --text-secondary: #D4C9BC;
    --bg-light: #262019;
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 16px 48px rgba(196, 86, 61, 0.35);
}

/* ========== Hero Section (메인 페이지 스타일 반영) ========== */
.recipes-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(196, 86, 61, 0.15) 0%, 
        rgba(49, 94, 73, 0.12) 50%,
        rgba(212, 164, 62, 0.1) 100%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(196, 86, 61, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(49, 94, 73, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(212, 164, 62, 0.15) 0%, transparent 60%);
    animation: patternFloat 25s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.02);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.98);
    }
    75% {
        transform: translate(20px, 20px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, rgba(196, 86, 61, 0.25) 0%, rgba(196, 86, 61, 0.15) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(196, 86, 61, 0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(196, 86, 61, 0.25);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    color: #D4A43E;
    font-size: 1.1rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

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

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C4563D 0%, #315E49 60%, #D4A43E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both, gradientFlow 3s ease-in-out infinite;
    letter-spacing: -1px;
    line-height: 1.2;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

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

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    letter-spacing: -0.3px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 3rem;
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-description strong {
    color: #D4A43E;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3.5rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(196, 86, 61, 0.6);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 48px rgba(196, 86, 61, 0.35);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 86, 61, 0.4), rgba(196, 86, 61, 0.2));
    border-radius: 16px;
    font-size: 1.75rem;
    color: #C4563D;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 86, 61, 0.2);
}

.stat-item:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(196, 86, 61, 0.4);
}

.stat-info {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(196, 86, 61, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.4rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* ========== Category Section (개선된 디자인) ========== */
.category-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(196, 86, 61, 0.05) 100%);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 86, 61, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

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

.category-card.active {
    background: rgba(196, 86, 61, 0.25);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(196, 86, 61, 0.3);
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-card:hover .category-icon {
    transform: rotate(-10deg) scale(1.1);
    background: rgba(196, 86, 61, 0.3);
}

.category-card.active .category-icon {
    background: var(--primary-color);
    color: #fff;
}

/* 카테고리별 아이콘 색상 */
.korean-icon { color: #315E49; }
.western-icon { color: #C4563D; }
.chinese-icon { color: #FF4757; }
.japanese-icon { color: #FFA502; }
.baking-icon { color: #D4A43E; }
.pastry-icon { color: #A29BFE; }
.coffee-icon { color: #8B4513; }
.program-icon { color: #3498DB; }
.ingredients-icon { color: #2ECC71; }
.health-icon { color: #E74C3C; }
.business-icon { color: #9B59B6; }

.category-info {
    flex: 1;
}

.category-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.category-count {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.category-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 86, 61, 0.2);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

/* ========== Filter Section (개선된 디자인) ========== */
.filter-section {
    padding: 3rem 0;
}

.filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.filter-left {
    flex: 1;
    min-width: 300px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 3.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(196, 86, 61, 0.3);
    border-radius: 16px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(196, 86, 61, 0.1);
    background: var(--bg-light);
}

.search-clear {
    position: absolute;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-clear:hover {
    background: var(--secondary-color);
    color: #fff;
}

.filter-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-label i {
    color: var(--primary-color);
}

.filter-select {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(196, 86, 61, 0.3);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(196, 86, 61, 0.1);
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(196, 86, 61, 0.1);
    border-radius: 12px;
}

.active-filters-label {
    font-weight: 600;
    color: var(--primary-color);
}

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

.filter-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag i {
    cursor: pointer;
}

.clear-all-filters {
    padding: 0.6rem 1.2rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-all-filters:hover {
    background: #ff5689;
    transform: scale(1.05);
}

/* ========== Content Section (개선된 디자인) ========== */
.content-section {
    padding: 4rem 0 6rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.content-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.content-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.content-count span {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 900;
}

/* ========== Info Cards Grid (완전히 새로운 디자인) ========== */
.info-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card-enhanced {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(196, 86, 61, 0.2);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    animation: cardFadeIn 0.6s ease both;
}

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

.info-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-color);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(196, 86, 61, 0.2), rgba(49, 94, 73, 0.2));
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.info-card-enhanced:hover .card-overlay {
    opacity: 1;
}

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

.tag-item {
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.badge {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-category {
    padding: 0.8rem 1.4rem;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.badge-type {
    display: none !important;
}

.badge-difficulty {
    background: rgba(255, 255, 255, 0.95);
}

.badge-difficulty.beginner { color: #10B981; }
.badge-difficulty.intermediate { color: #F59E0B; }
.badge-difficulty.advanced { color: #EF4444; }

.card-content {
    padding: 2.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-meta-item i {
    color: var(--primary-color);
}

.card-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-summary {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(196, 86, 61, 0.1);
}

.card-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat i {
    color: var(--primary-color);
}

.stat strong {
    color: var(--text-primary);
    font-weight: 700;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* ========== Loading & Empty State ========== */
.loading-container {
    text-align: center;
    padding: 4rem 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(196, 86, 61, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.empty-state {
    text-align: center;
    padding: 6rem 0;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(196, 86, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ========== Load More Button ========== */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

.btn-load-more {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    background: rgba(196, 86, 61, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-load-more:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(196, 86, 61, 0.3);
}

.btn-text {
    font-size: 1.1rem;
}

.btn-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ========== Scroll to Top Button ========== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(196, 86, 61, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1.2rem 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .info-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .recipes-hero {
        min-height: 500px;
        padding: 140px 0 80px;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-container {
        flex-direction: column;
    }
    
    .filter-left,
    .filter-right {
        width: 100%;
    }
    
    .info-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.2rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
}
