/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* ヘッダー */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #6fb92c 0%, #4a7c1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-description p {
    margin-bottom: 0.5rem;
}

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

.hero-collage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    padding: 25px;
}

.collage-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: cover;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInFloatUp 1.5s ease-out forwards;
}

.collage-image:hover {
    transform: scale(1.05);
}

.collage-image:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    animation: fadeInFloatUp 1.5s ease-out 1.2s forwards, tileFloatUp 8s ease-in-out 2.7s infinite;
}

.collage-image:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    animation: fadeInFloatUp 1.5s ease-out 1.4s forwards, tileFloatUp 10s ease-in-out 2.9s infinite;
}

.collage-image:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    animation: fadeInFloatUp 1.5s ease-out 1.6s forwards, tileFloatUp 12s ease-in-out 3.1s infinite;
}

.collage-image:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    animation: fadeInFloatUp 1.5s ease-out 1.8s forwards, tileFloatUp 9s ease-in-out 3.3s infinite;
}

.collage-image:nth-child(5) {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
    animation: fadeInFloatUp 1.5s ease-out 2.0s forwards, tileFloatUp 11s ease-in-out 3.5s infinite;
}

.collage-image:nth-child(6) {
    grid-column: 6 / 7;
    grid-row: 1 / 2;
    animation: fadeInFloatUp 1.5s ease-out 2.2s forwards, tileFloatUp 13s ease-in-out 3.7s infinite;
}

.collage-image:nth-child(7) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    animation: fadeInFloatUp 1.5s ease-out 2.4s forwards, tileFloatUp 7s ease-in-out 3.9s infinite;
}

.collage-image:nth-child(8) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    animation: fadeInFloatUp 1.5s ease-out 2.6s forwards, tileFloatUp 14s ease-in-out 4.1s infinite;
}

.collage-image:nth-child(9) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    animation: fadeInFloatUp 1.5s ease-out 2.8s forwards, tileFloatUp 6s ease-in-out 4.3s infinite;
}

.collage-image:nth-child(10) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    animation: fadeInFloatUp 1.5s ease-out 3.0s forwards, tileFloatUp 15s ease-in-out 4.5s infinite;
}

.collage-image:nth-child(11) {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
    animation: fadeInFloatUp 1.5s ease-out 3.2s forwards, tileFloatUp 8.5s ease-in-out 4.7s infinite;
}

.collage-image:nth-child(12) {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
    animation: fadeInFloatUp 1.5s ease-out 3.4s forwards, tileFloatUp 12.5s ease-in-out 4.9s infinite;
}

.collage-image:nth-child(13) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    animation: fadeInFloatUp 1.5s ease-out 3.6s forwards, tileFloatUp 7.5s ease-in-out 5.1s infinite;
}

.collage-image:nth-child(14) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    animation: fadeInFloatUp 1.5s ease-out 3.8s forwards, tileFloatUp 13.5s ease-in-out 5.3s infinite;
}

.collage-image:nth-child(15) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    animation: fadeInFloatUp 1.5s ease-out 4.0s forwards, tileFloatUp 9.5s ease-in-out 5.5s infinite;
}

.collage-image:nth-child(16) {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
    animation: fadeInFloatUp 1.5s ease-out 4.2s forwards, tileFloatUp 11.5s ease-in-out 5.7s infinite;
}

.collage-image:nth-child(17) {
    grid-column: 5 / 6;
    grid-row: 3 / 4;
    animation: fadeInFloatUp 1.5s ease-out 4.4s forwards, tileFloatUp 6.5s ease-in-out 5.9s infinite;
}

.collage-image:nth-child(18) {
    grid-column: 6 / 7;
    grid-row: 3 / 4;
    animation: fadeInFloatUp 1.5s ease-out 4.6s forwards, tileFloatUp 14.5s ease-in-out 6.1s infinite;
}

.collage-image:nth-child(19) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    animation: fadeInFloatUp 1.5s ease-out 4.8s forwards, tileFloatUp 8.8s ease-in-out 6.3s infinite;
}

.collage-image:nth-child(20) {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    animation: fadeInFloatUp 1.5s ease-out 5.0s forwards, tileFloatUp 12.8s ease-in-out 6.5s infinite;
}

.collage-image:nth-child(21) {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
    animation: fadeInFloatUp 1.5s ease-out 5.2s forwards, tileFloatUp 7.8s ease-in-out 6.7s infinite;
}

.collage-image:nth-child(22) {
    grid-column: 4 / 5;
    grid-row: 4 / 5;
    animation: fadeInFloatUp 1.5s ease-out 5.4s forwards, tileFloatUp 13.8s ease-in-out 6.9s infinite;
}

.collage-image:nth-child(23) {
    grid-column: 5 / 6;
    grid-row: 4 / 5;
    animation: fadeInFloatUp 1.5s ease-out 5.6s forwards, tileFloatUp 9.8s ease-in-out 7.1s infinite;
}

.collage-image:nth-child(24) {
    grid-column: 6 / 7;
    grid-row: 4 / 5;
    animation: fadeInFloatUp 1.5s ease-out 5.8s forwards, tileFloatUp 11.8s ease-in-out 7.3s infinite;
}

.hero-element:nth-child(2) {
    animation-delay: 2s;
}

.hero-element:nth-child(3) {
    animation-delay: 4s;
}

.hero-element:nth-child(4) {
    animation-delay: 6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInFloatUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tileFloatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6fb92c, #4a7c1a);
    border-radius: 2px;
}

/* 出店者セクション */
.creators-section {
    padding: 80px 0;
    background: white;
}

/* フィルターセクション */
.filter-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #6fb92c;
    color: #6fb92c;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #6fb92c;
    border-color: #6fb92c;
    color: white;
    box-shadow: 0 4px 15px rgba(111, 185, 44, 0.3);
}

/* 検索セクション */
.search-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.search-btn {
    padding: 1rem 2rem;
    background: #6fb92c;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #5a7c1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 185, 44, 0.3);
}

/* 出店者グリッド */
.creators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.creator-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.creator-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.creator-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-info {
    padding: 1.5rem;
}

.creator-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.creator-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.creator-details {
    margin-bottom: 1rem;
}

.creator-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.category-tag {
    background: #f0f8f0;
    color: #6fb92c;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #d4e6d4;
    font-weight: 500;
}

.creator-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.location-icon {
    font-size: 1rem;
}

.location-text {
    font-weight: 500;
}

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

.booth-number {
    background: linear-gradient(90deg, #6fb92c, #4a7c1a);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.day-badge {
    background: #f8f9fa;
    color: #666;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
}

.creator-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #6fb92c;
    color: white;
    border-color: #6fb92c;
}

.checklist-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.checklist-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.page-btn:hover:not(:disabled) {
    background: #6fb92c;
    color: white;
    border-color: #6fb92c;
}

.page-btn.active {
    background: #6fb92c;
    color: white;
    border-color: #6fb92c;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

/* チェックリストセクション */
.checklist-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8f0 0%, #e0f0e0 100%);
}

.checklist-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.checklist-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.checklist-info p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.checklist-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.checklist-btn:first-child {
    background: #6fb92c;
    color: white;
}

.checklist-btn.secondary {
    background: white;
    color: #6fb92c;
    border: 2px solid #6fb92c;
}

.checklist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #333;
}

.modal-body {
    padding: 2rem;
}

/* 作品詳細モーダル */
.item-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.item-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.item-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.item-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.item-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checklist-add-btn {
    width: 100%;
    padding: 1rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checklist-add-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.check-icon {
    font-size: 1.2rem;
}

/* 画像スライダーのスタイル */
.image-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

.slider-btn {
    background: rgba(111, 185, 44, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(111, 185, 44, 1);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #6fb92c;
    transform: scale(1.2);
}

.dot:hover {
    background: #6fb92c;
}

/* モーダル追加情報のスタイル */
.modal-additional-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.modal-categories h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 600;
}

.categories-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-category-tag {
    background: #f0f8f0;
    color: #6fb92c;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #d4e6d4;
    font-weight: 500;
}

.modal-location-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.location-item,
.event-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.location-icon,
.event-icon {
    font-size: 1.1rem;
}

.location-text,
.event-text {
    font-weight: 500;
}

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

.modal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #f0f8f0;
    color: #6fb92c;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #d4e6d4;
}

.modal-link:hover {
    background: #6fb92c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 185, 44, 0.3);
}

.website-link {
    color: #28a745;
}

.website-link:hover {
    background: #28a745;
}

.instagram-link {
    color: #e4405f;
}

.instagram-link:hover {
    background: #e4405f;
}

/* Instagramアイコンのスタイル */
.modal-social-links {
    margin-top: 1rem;
}

.instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.instagram-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.instagram-icon svg {
    width: 24px;
    height: 24px;
}

/* チェックリストアイテム */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: #f8f9fa;
}

.checklist-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.checklist-item-info {
    flex: 1;
}

.checklist-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.checklist-item-creator {
    font-size: 0.9rem;
    color: #666;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
}

.empty-checklist {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.empty-checklist p {
    margin-bottom: 0.5rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
        padding: 15px;
    }

    .collage-image {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

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

    .filter-buttons {
        justify-content: center;
    }

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

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .item-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

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

    .modal-location-info {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-links {
        flex-direction: column;
    }

    .creator-categories {
        justify-content: center;
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 3px;
        padding: 15px;
        justify-content: center;
        align-content: center;
    }

    .collage-image {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        width: 150px;
        height: 150px;
        max-width: 150px;
        max-height: 150px;
    }

    .filter-section {
        padding: 1.5rem;
    }

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

    .creator-card {
        margin: 0 10px;
    }

    .creators-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}