@charset "utf-8";
/*-------------------------------------------------------*/
/* 국밥맛집 스킨 스타일
/*-------------------------------------------------------*/

.gukbap-store-widget {
    padding: 0;
}

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

.store-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.store-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #dc3545;
}

.store-link {
    display: block;
    padding: 15px;
    text-decoration: none;
}

.store-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.new-dot {
    width: 6px;
    height: 6px;
    background: #dc3545;
    border-radius: 50%;
    flex-shrink: 0;
}

.store-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #888;
}

.store-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.store-stat i {
    font-size: 11px;
}

.store-stat .fa-heart {
    color: #dc3545;
}

.store-stat .fa-comment {
    color: #6c757d;
}

.store-stat .fa-eye {
    color: #adb5bd;
}

.store-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaa;
    padding-top: 6px;
    border-top: 1px solid #eee;
}

.store-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.store-empty i {
    font-size: 36px;
    color: #ccc;
    margin-bottom: 10px;
}

.store-empty p {
    margin: 0 0 15px;
    color: #888;
}

.btn-add-store {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-add-store:hover {
    background: #c82333;
    color: #fff;
}

.store-tip {
    margin-top: 15px;
    padding: 10px 15px;
    background: #fff3cd;
    border-radius: 8px;
    font-size: 12px;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-tip i {
    color: #ffc107;
}

.store-tip strong {
    color: #dc3545;
}

/* 반응형 */
@media (max-width: 991px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
}

/* 다크모드 */
@media (prefers-color-scheme: dark) {
    .store-card {
        background: #2a2a2a;
        border-color: #3a3a3a;
    }

    .store-card:hover {
        border-color: #dc3545;
    }

    .store-name {
        color: #e0e0e0;
    }

    .store-info {
        border-top-color: #3a3a3a;
    }

    .store-empty {
        background: #2a2a2a;
        border-color: #3a3a3a;
    }

    .store-tip {
        background: #3d3d00;
        color: #ffc107;
    }
}
